Skip to content

Commit

Permalink
Update version, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
billthefarmer committed Mar 21, 2024
1 parent 75a7746 commit e464bba
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ android {
applicationId "org.billthefarmer.gurgle"
minSdkVersion 22
targetSdkVersion 31
versionName "1.27"
versionCode 127
versionName "1.28"
versionCode 128

buildConfigField "long", "BUILT", System.currentTimeMillis() + "L"
}
Expand All @@ -50,8 +50,8 @@ android {
}

dependencies {
implementation 'com.google.zxing:core:3.5.2'
implementation 'nl.dionsegijn:konfetti-xml:2.0.3'
implementation 'com.google.zxing:core:3.5.3'
implementation 'nl.dionsegijn:konfetti-xml:2.0.4'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
}
}
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-GB/changelogs/128.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Add slot selection
7 changes: 3 additions & 4 deletions src/main/java/org/billthefarmer/gurgle/Gurgle.java
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,9 @@ public void onSaveInstanceState(Bundle outState)
outState.putBoolean(SOLVED, solved);
outState.putBooleanArray(LOCKED, locked);

if (selectedView != null)
selectedView.setText("");

ArrayList<String> letterList = new ArrayList<String>();
ArrayList<Integer> colourList = new ArrayList<Integer>();
for (TextView a[]: display)
Expand Down Expand Up @@ -1823,10 +1826,6 @@ private void search(View view)
select(view);
return;
}
// {
// showToast(R.string.finish);
// return;
// }

if (!Words.isWord(removeAccents(guess)))
{
Expand Down

0 comments on commit e464bba

Please sign in to comment.