Skip to content

Commit 8a8cc3f

Browse files
committed
Fixed Class Meeting on "No X Days" bug
1 parent 84f859b commit 8a8cc3f

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

iHW-iOS/iHW/iHW.xcodeproj/project.pbxproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,7 @@
528528
ORGANIZATIONNAME = "Jonathan Burns";
529529
TargetAttributes = {
530530
491CCB2D178E590B00736453 = {
531+
DevelopmentTeam = 6QC5Z7U58J;
531532
SystemCapabilities = {
532533
com.apple.BackgroundModes = {
533534
enabled = 1;
@@ -741,11 +742,14 @@
741742
491CCB55178E590B00736453 /* Debug */ = {
742743
isa = XCBuildConfiguration;
743744
buildSettings = {
745+
CODE_SIGN_IDENTITY = "iPhone Developer";
746+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
744747
GCC_PRECOMPILE_PREFIX_HEADER = YES;
745748
GCC_PREFIX_HEADER = "iHW/iHW-Prefix.pch";
746749
INFOPLIST_FILE = "iHW/iHW-Info.plist";
747750
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
748751
PRODUCT_NAME = "$(TARGET_NAME)";
752+
PROVISIONING_PROFILE = "";
749753
TARGETED_DEVICE_FAMILY = 1;
750754
WRAPPER_EXTENSION = app;
751755
};
@@ -754,11 +758,14 @@
754758
491CCB56178E590B00736453 /* Release */ = {
755759
isa = XCBuildConfiguration;
756760
buildSettings = {
761+
CODE_SIGN_IDENTITY = "iPhone Developer";
762+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
757763
GCC_PRECOMPILE_PREFIX_HEADER = YES;
758764
GCC_PREFIX_HEADER = "iHW/iHW-Prefix.pch";
759765
INFOPLIST_FILE = "iHW/iHW-Info.plist";
760766
IPHONEOS_DEPLOYMENT_TARGET = 6.0;
761767
PRODUCT_NAME = "$(TARGET_NAME)";
768+
PROVISIONING_PROFILE = "";
762769
TARGETED_DEVICE_FAMILY = 1;
763770
WRAPPER_EXTENSION = app;
764771
};

iHW-iOS/iHW/iHW/IHWCurriculum.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ - (NSArray *)courseListForDate:(IHWDate *)d {
645645
for (int i=0; i<self.campus+4; i++) {
646646
[courseList setObject:[NSNull null] atIndexedSubscript:i];
647647
//[NSNull null] represents an "X" period
648-
[maxMeetings setObject:[NSNumber numberWithInt:0] atIndexedSubscript:i];
648+
[maxMeetings setObject:[NSNumber numberWithInt:1] atIndexedSubscript:i];
649649
}
650650
for (IHWCourse *c in self.courses) {
651651
//For each course, add it to the courselist at its period index

iHW-iOS/iHW/iHW/iHW-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@
3636
<key>CFBundlePackageType</key>
3737
<string>APPL</string>
3838
<key>CFBundleShortVersionString</key>
39-
<string>1.1.1</string>
39+
<string>1.1.2</string>
4040
<key>CFBundleSignature</key>
4141
<string>????</string>
4242
<key>CFBundleVersion</key>
43-
<string>1.1.1</string>
43+
<string>1.1.2</string>
4444
<key>LSApplicationCategoryType</key>
4545
<string>public.app-category.education</string>
4646
<key>LSRequiresIPhoneOS</key>

0 commit comments

Comments
 (0)