Skip to content

Commit 11752d7

Browse files
committed
Actual Android 1.1 Release
1 parent 5aaf90d commit 11752d7

File tree

15 files changed

+4
-4
lines changed

15 files changed

+4
-4
lines changed

iHW-Android-1.1.apk

-13 Bytes
Binary file not shown.

iHW-Android/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.ihwapp.android"
4-
android:versionCode="3"
4+
android:versionCode="4"
55
android:versionName="1.1" >
66

77
<uses-sdk

iHW-Android/bin/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.ihwapp.android"
4-
android:versionCode="3"
4+
android:versionCode="4"
55
android:versionName="1.1" >
66

77
<uses-sdk

iHW-Android/bin/classes.dex

44 Bytes
Binary file not shown.
23 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

iHW-Android/bin/iHW-Android.apk

-65 Bytes
Binary file not shown.

iHW-Android/bin/resources.ap_

0 Bytes
Binary file not shown.

iHW-Android/src/com/ihwapp/android/model/NormalDay.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public NormalDay(JSONObject obj) {
8383
periodsAfterBreak = obj.getInt("periodsAfterBreak");
8484
breakLength = obj.getInt("breakLength");
8585
breakName = obj.getString("breakName");
86-
breakIsFree = obj.getBoolean("breakIsFree");
86+
breakIsFree = obj.optBoolean("breakIsFree");
8787
} else {
8888
periodsBeforeBreak = numPeriods;
8989
periodsAfterBreak = 0;

iHW-Android/src/com/ihwapp/android/model/Period.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public Period(JSONObject obj, int periodIndex) {
3535
this.endTime = new Time(obj.getString("endTime"));
3636
this.d = new Date(obj.getString("date"));
3737
this.periodNum = obj.getInt("periodNum");
38-
this.isFreePeriod = obj.getBoolean("isFreePeriod");
38+
this.isFreePeriod = obj.optBoolean("isFreePeriod");
3939
this.periodIndex = periodIndex;
4040
loadNotesFromCurriculum();
4141
} catch (JSONException ignored) {}

0 commit comments

Comments
 (0)