Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
insidegui committed Apr 19, 2015
0 parents commit 6277073
Show file tree
Hide file tree
Showing 46 changed files with 4,375 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.DS_Store
__MACOSX
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
*.xcworkspace
!default.xcworkspace
xcuserdata
profile
*.moved-aside
DerivedData
.idea/
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) 2015 Guilherme Rambo

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

- Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

- Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# WWDC app for OS X

Don't like WWDC's website? Use this app to watch WWDC sessions on your Mac.

To download the latest release, [click here](https://github.com/insidegui/WWDC/blob/master/Releases/WWDC_latest.zip?raw=true).

![screenshot](https://raw.githubusercontent.com/insidegui/WWDC/master/screenshot.png)
Binary file added Releases/WWDC_latest.zip
Binary file not shown.
312 changes: 312 additions & 0 deletions ViewUtils/ViewUtils.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,312 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {

/* Begin PBXBuildFile section */
DD2016471AE401B500DD8155 /* ViewUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2016461AE401B500DD8155 /* ViewUtils.h */; settings = {ATTRIBUTES = (Public, ); }; };
DD20165F1AE401C200DD8155 /* GRWindowMovingView.h in Headers */ = {isa = PBXBuildFile; fileRef = DD20165D1AE401C200DD8155 /* GRWindowMovingView.h */; settings = {ATTRIBUTES = (Public, ); }; };
DD2016601AE401C200DD8155 /* GRWindowMovingView.m in Sources */ = {isa = PBXBuildFile; fileRef = DD20165E1AE401C200DD8155 /* GRWindowMovingView.m */; };
DD20167B1AE4158100DD8155 /* GRPlayerWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2016791AE4158100DD8155 /* GRPlayerWindow.h */; settings = {ATTRIBUTES = (Public, ); }; };
DD20167C1AE4158100DD8155 /* GRPlayerWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = DD20167A1AE4158100DD8155 /* GRPlayerWindow.m */; };
DD20167F1AE41DD600DD8155 /* GRPlayerView.h in Headers */ = {isa = PBXBuildFile; fileRef = DD20167D1AE41DD600DD8155 /* GRPlayerView.h */; settings = {ATTRIBUTES = (Public, ); }; };
DD2016801AE41DD600DD8155 /* GRPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = DD20167E1AE41DD600DD8155 /* GRPlayerView.m */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
DD2016411AE401B500DD8155 /* ViewUtils.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ViewUtils.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DD2016451AE401B500DD8155 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
DD2016461AE401B500DD8155 /* ViewUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewUtils.h; sourceTree = "<group>"; };
DD20165D1AE401C200DD8155 /* GRWindowMovingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRWindowMovingView.h; sourceTree = "<group>"; };
DD20165E1AE401C200DD8155 /* GRWindowMovingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRWindowMovingView.m; sourceTree = "<group>"; };
DD2016791AE4158100DD8155 /* GRPlayerWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRPlayerWindow.h; sourceTree = "<group>"; };
DD20167A1AE4158100DD8155 /* GRPlayerWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRPlayerWindow.m; sourceTree = "<group>"; };
DD20167D1AE41DD600DD8155 /* GRPlayerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRPlayerView.h; sourceTree = "<group>"; };
DD20167E1AE41DD600DD8155 /* GRPlayerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRPlayerView.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
DD20163D1AE401B500DD8155 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
DD2016371AE401B500DD8155 = {
isa = PBXGroup;
children = (
DD2016431AE401B500DD8155 /* ViewUtils */,
DD2016421AE401B500DD8155 /* Products */,
);
sourceTree = "<group>";
};
DD2016421AE401B500DD8155 /* Products */ = {
isa = PBXGroup;
children = (
DD2016411AE401B500DD8155 /* ViewUtils.framework */,
);
name = Products;
sourceTree = "<group>";
};
DD2016431AE401B500DD8155 /* ViewUtils */ = {
isa = PBXGroup;
children = (
DD2016791AE4158100DD8155 /* GRPlayerWindow.h */,
DD20167A1AE4158100DD8155 /* GRPlayerWindow.m */,
DD20165D1AE401C200DD8155 /* GRWindowMovingView.h */,
DD20165E1AE401C200DD8155 /* GRWindowMovingView.m */,
DD2016461AE401B500DD8155 /* ViewUtils.h */,
DD2016441AE401B500DD8155 /* Supporting Files */,
DD20167D1AE41DD600DD8155 /* GRPlayerView.h */,
DD20167E1AE41DD600DD8155 /* GRPlayerView.m */,
);
path = ViewUtils;
sourceTree = "<group>";
};
DD2016441AE401B500DD8155 /* Supporting Files */ = {
isa = PBXGroup;
children = (
DD2016451AE401B500DD8155 /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
DD20163E1AE401B500DD8155 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
DD20165F1AE401C200DD8155 /* GRWindowMovingView.h in Headers */,
DD20167F1AE41DD600DD8155 /* GRPlayerView.h in Headers */,
DD20167B1AE4158100DD8155 /* GRPlayerWindow.h in Headers */,
DD2016471AE401B500DD8155 /* ViewUtils.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
DD2016401AE401B500DD8155 /* ViewUtils */ = {
isa = PBXNativeTarget;
buildConfigurationList = DD2016571AE401B500DD8155 /* Build configuration list for PBXNativeTarget "ViewUtils" */;
buildPhases = (
DD20163C1AE401B500DD8155 /* Sources */,
DD20163D1AE401B500DD8155 /* Frameworks */,
DD20163E1AE401B500DD8155 /* Headers */,
DD20163F1AE401B500DD8155 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = ViewUtils;
productName = ViewUtils;
productReference = DD2016411AE401B500DD8155 /* ViewUtils.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
DD2016381AE401B500DD8155 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0630;
ORGANIZATIONNAME = "Guilherme Rambo";
TargetAttributes = {
DD2016401AE401B500DD8155 = {
CreatedOnToolsVersion = 6.3;
};
};
};
buildConfigurationList = DD20163B1AE401B500DD8155 /* Build configuration list for PBXProject "ViewUtils" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = DD2016371AE401B500DD8155;
productRefGroup = DD2016421AE401B500DD8155 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
DD2016401AE401B500DD8155 /* ViewUtils */,
);
};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
DD20163F1AE401B500DD8155 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
DD20163C1AE401B500DD8155 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DD2016801AE41DD600DD8155 /* GRPlayerView.m in Sources */,
DD20167C1AE4158100DD8155 /* GRPlayerWindow.m in Sources */,
DD2016601AE401C200DD8155 /* GRWindowMovingView.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
DD2016551AE401B500DD8155 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
DD2016561AE401B500DD8155 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = macosx;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
DD2016581AE401B500DD8155 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_VERSION = A;
INFOPLIST_FILE = ViewUtils/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
};
name = Debug;
};
DD2016591AE401B500DD8155 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_VERSION = A;
INFOPLIST_FILE = ViewUtils/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
DD20163B1AE401B500DD8155 /* Build configuration list for PBXProject "ViewUtils" */ = {
isa = XCConfigurationList;
buildConfigurations = (
DD2016551AE401B500DD8155 /* Debug */,
DD2016561AE401B500DD8155 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
DD2016571AE401B500DD8155 /* Build configuration list for PBXNativeTarget "ViewUtils" */ = {
isa = XCConfigurationList;
buildConfigurations = (
DD2016581AE401B500DD8155 /* Debug */,
DD2016591AE401B500DD8155 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = DD2016381AE401B500DD8155 /* Project object */;
}
15 changes: 15 additions & 0 deletions ViewUtils/ViewUtils/GRPlayerView.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
//
// GRPlayerView.h
// ViewUtils
//
// Created by Guilherme Rambo on 19/04/15.
// Copyright (c) 2015 Guilherme Rambo. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@import AVKit;

@interface GRPlayerView : AVPlayerView

@end
Loading

0 comments on commit 6277073

Please sign in to comment.