Skip to content

Commit 5005122

Browse files
Prepared release 1.3.0
1 parent 6afc008 commit 5005122

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# built application files
2-
*.apk
2+
#*.apk
33
*.ap_
44

55
# files for the dex VM

ChangeLogDemo/src/main/java/it/gmariotti/changelibs/demo/MainActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ private void openDialogFragment(DialogStandardFragment dialogStandardFragment) {
241241
if (prev != null) {
242242
ft.remove(prev);
243243
}
244-
ft.addToBackStack(null);
244+
//ft.addToBackStack(null);
245245

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

255255
fragmentTransaction.replace(R.id.fragment_main,baseFragment);
256-
fragmentTransaction.addToBackStack(null);
256+
//fragmentTransaction.addToBackStack(null);
257257
fragmentTransaction.commit();
258258
mCurrentTitle=baseFragment.getTitleResourceId();
259259
}

ChangeLogDemo/src/main/res/raw/library_changelog.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
<changelog bulletedList="true">
33

44
<!-- It is the real library changelog.xml -->
5+
<!-- It is the real library changelog.xml -->
6+
<changelogversion versionName="1.3" changeDate="19/10/2013">
7+
<changelogtext>Added support for API 7</changelogtext>
8+
<changelogtext>Moved to gradle 1.8 and gradle-plugin 0.6.x</changelogtext>
9+
<changelogtext>Removed unnecessary IntelliJ project files from repo</changelogtext>
10+
</changelogversion>
11+
512
<changelogversion versionName="1.2" changeDate="25/09/2013">
613
<changelogtext>Changelog Library is now pushed to Maven Central as a AAR</changelogtext>
714
</changelogversion>

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=1.2.1-SNAPSHOT
2-
VERSION_CODE=3
1+
VERSION_NAME=1.3.1-SNAPSHOT
2+
VERSION_CODE=4
33
GROUP=com.github.gabrielemariotti.changeloglib
44

55
POM_DESCRIPTION=Android Library to display your changelog

0 commit comments

Comments
 (0)