Skip to content

Commit

Permalink
Fix bug #401 and bump version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
matburt committed Jul 29, 2013
1 parent b78ea71 commit 4c9c6c1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.matburt.mobileorg"
android:versionCode="910"
android:versionName="0.9.10" >
android:versionCode="912"
android:versionName="0.9.12" >

<uses-sdk
android:minSdkVersion="8"
Expand Down Expand Up @@ -178,7 +178,7 @@
<intent-filter>

<!-- Change this to be db- followed by your app key -->
<data android:scheme="db-2y6mph4a6httm78" />
<data android:scheme="db-et6v9bbqd4pu0ak" />

<action android:name="android.intent.action.VIEW" />

Expand Down
3 changes: 3 additions & 0 deletions res/raw/upgrade.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
MobileOrg Upgrade Notes

Changes for 0.9.11 & 12:
- Fix bugs and crashes that crept into the .10 release

Changes for 0.9.10:
- Support for BUSY/AVAILABLE
- Clean up Settings activity
Expand Down
2 changes: 1 addition & 1 deletion res/xml/preferences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
<PreferenceCategory android:title="@string/preference_other" >
<PreferenceScreen
android:key="VersionDisp"
android:summary="0.9.10"
android:summary="0.9.12"
android:title="@string/preference_version" >
</PreferenceScreen>
</PreferenceCategory>
Expand Down
2 changes: 1 addition & 1 deletion src/com/matburt/mobileorg/Gui/Capture/EditActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ protected void onDestroy() {
public boolean onCreateOptionsMenu(Menu menu) {
getSupportMenuInflater().inflate(R.menu.edit, menu);

if(controller.isNodeEditable() == false)
if(controller != null && controller.isNodeEditable() == false)
menu.findItem(R.id.nodeedit_save).setVisible(false);

return super.onCreateOptionsMenu(menu);
Expand Down

0 comments on commit 4c9c6c1

Please sign in to comment.