Skip to content

Commit

Permalink
Update version, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
billthefarmer committed Nov 8, 2023
1 parent 33fa2b6 commit f85b561
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 19 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ android {
applicationId "org.billthefarmer.siggen"
minSdkVersion 21
targetSdkVersion 31
versionName "1.34"
versionCode 134
versionName "1.35"
versionCode 135

buildConfigField "long", "BUILT", System.currentTimeMillis() + "L"
}
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-GB/changelog/135.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Update icons
9 changes: 1 addition & 8 deletions src/main/java/org/billthefarmer/siggen/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -326,14 +326,7 @@ protected void onResume()

if (last != theme)
{
if (Build.VERSION.SDK_INT == Build.VERSION_CODES.M)
{
Intent intent = new Intent(this, getClass());
finish();
startActivity(intent);
}

else
if (Build.VERSION.SDK_INT != Build.VERSION_CODES.M)
recreate();
}

Expand Down
10 changes: 1 addition & 9 deletions src/main/java/org/billthefarmer/siggen/SettingsFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,7 @@ public void onSharedPreferenceChanged(SharedPreferences preferences,
{
if (key.equals(Main.PREF_THEME))
{
if (Build.VERSION.SDK_INT == Build.VERSION_CODES.M)
{
Intent intent = new
Intent(getActivity(), getActivity().getClass());
getActivity().startActivity(intent);
getActivity().finish();
}

else
if (Build.VERSION.SDK_INT != Build.VERSION_CODES.M)
getActivity().recreate();
}
}
Expand Down

0 comments on commit f85b561

Please sign in to comment.