Skip to content

Commit

Permalink
1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
indywidualny committed Jun 7, 2016
1 parent 62fc7e8 commit 1321ca3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "org.indywidualni.centrumfm"
minSdkVersion 15
targetSdkVersion 23
versionCode 16
versionName "1.6"
versionCode 18
versionName "1.8"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,13 @@ public void onPause() {
public boolean onPreferenceClick(Preference preference) {
switch (preference.getKey()) {
case "open_source_libraries":
mCallback.showLibraries();
if (mCallback != null)
mCallback.showLibraries();
return true;

case "changelog":
mCallback.showChangelog();
if (mCallback != null)
mCallback.showChangelog();
return true;

default:
Expand Down
10 changes: 2 additions & 8 deletions app/src/main/res/xml/changelog_master.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,8 @@
-->

<release
version="1.6"
versioncode="16">
<change>znaczne zmniejszenie użycia procesora</change>
<change>poprawka rzadkiego błędu podczas pobierania newsów</change>
</release>
<release
version="1.5"
versioncode="15">
version="1.8"
versioncode="18">
<change>liczne poprawki i ulepszenia dotychczasowych funkcji aplikacji</change>
</release>
<release
Expand Down

0 comments on commit 1321ca3

Please sign in to comment.