Skip to content

Commit

Permalink
Prepared release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielemariotti committed Oct 19, 2013
1 parent 6afc008 commit 5005122
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# built application files
*.apk
#*.apk
*.ap_

# files for the dex VM
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ private void openDialogFragment(DialogStandardFragment dialogStandardFragment) {
if (prev != null) {
ft.remove(prev);
}
ft.addToBackStack(null);
//ft.addToBackStack(null);

dialogStandardFragment.show(ft,"changelogdemo_dialog");
}
Expand All @@ -253,7 +253,7 @@ private void openFragment(BaseFragment baseFragment){
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

fragmentTransaction.replace(R.id.fragment_main,baseFragment);
fragmentTransaction.addToBackStack(null);
//fragmentTransaction.addToBackStack(null);
fragmentTransaction.commit();
mCurrentTitle=baseFragment.getTitleResourceId();
}
Expand Down
7 changes: 7 additions & 0 deletions ChangeLogDemo/src/main/res/raw/library_changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
<changelog bulletedList="true">

<!-- It is the real library changelog.xml -->
<!-- It is the real library changelog.xml -->
<changelogversion versionName="1.3" changeDate="19/10/2013">
<changelogtext>Added support for API 7</changelogtext>
<changelogtext>Moved to gradle 1.8 and gradle-plugin 0.6.x</changelogtext>
<changelogtext>Removed unnecessary IntelliJ project files from repo</changelogtext>
</changelogversion>

<changelogversion versionName="1.2" changeDate="25/09/2013">
<changelogtext>Changelog Library is now pushed to Maven Central as a AAR</changelogtext>
</changelogversion>
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_NAME=1.2.1-SNAPSHOT
VERSION_CODE=3
VERSION_NAME=1.3.1-SNAPSHOT
VERSION_CODE=4
GROUP=com.github.gabrielemariotti.changeloglib

POM_DESCRIPTION=Android Library to display your changelog
Expand Down

0 comments on commit 5005122

Please sign in to comment.