Skip to content

Commit

Permalink
Merged hotfix/5.2.15 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoiosue committed Jun 5, 2016
2 parents 68fcccf + 36798f2 commit ac856f8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

MIN_SDK=14
TARGET_SDK=23
VERSION_NAME=5.2.14
VERSION_CODE=218
VERSION_NAME=5.2.15
VERSION_CODE=219
PACKAGE=it.feio.android.omninotes

# The following properties are empty defaults to allow build and can EVENTUALLY be overridden to allow:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,15 @@ protected void onUpdateData(int reason) {
}

// Publish the extension data update.
Intent launchIntent = new Intent(this, MainActivity.class);
launchIntent.setAction(Intent.ACTION_MAIN);
publishUpdate(new ExtensionData()
.visible(true)
.icon(R.drawable.ic_stat_literal_icon)
.status(String.valueOf(notesCounters.get(Counters.ACTIVE).size()))
.expandedTitle(expandedTitle.toString())
.expandedBody(expandedBody.toString())
.clickIntent(new Intent(this, MainActivity.class)));
.clickIntent(launchIntent));
}


Expand Down
4 changes: 4 additions & 0 deletions omniNotes/src/main/res/raw/changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
-->
<changelog bulletedList="true">

<changelogversion versionName="5.2.15" changeDate="Jun 05, 2016">
<changelogtext>[u]Fix[/u] Navigation panel after opening a note starting from Dashclock widget works again</changelogtext>
</changelogversion>

<changelogversion versionName="5.2.14" changeDate="Jun 04, 2016">
<changelogtext>[u]Fix[/u] Broken build due to inclusion of testing component, sorry!</changelogtext>
</changelogversion>
Expand Down

0 comments on commit ac856f8

Please sign in to comment.