Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tasos Sagiotis committed Feb 4, 2014
1 parent 1b51956 commit 116b0eb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import android.view.Menu;
import android.view.MenuItem;

import de.cketti.library.changelog.ChangeLog;
import gr.tsagi.jekyllforandroid.R;

public class ActionActivity extends Activity {
Expand All @@ -24,11 +25,11 @@ protected void onCreate(Bundle savedInstanceState) {
login();
}

//Show Changelog
// ChangeLog cl = new ChangeLog(this);
// if (cl.isFirstRun()) {
// cl.getLogDialog().show();
// }
// Show Changelog
ChangeLog cl = new ChangeLog(this);
if (cl.isFirstRun()) {
cl.getLogDialog().show();
}
}

@Override
Expand Down
4 changes: 4 additions & 0 deletions JekyllForAndroid/src/main/res/xml/changelog_master.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>
<release version="1.3" versioncode="102">
<change>Stability improvements</change>
<change>Bugfixes</change>
</release>
<release version="1.2.2" versioncode="102">
<change>Bugfixes</change>
</release>
Expand Down

0 comments on commit 116b0eb

Please sign in to comment.