new release

This commit is contained in:
Page Asgardius 2023-01-04 12:33:05 -07:00
parent 13e6664569
commit cd4d17d497
3 changed files with 4 additions and 3 deletions

View file

@ -9,8 +9,8 @@ android {
applicationId "asgardius.page.s3manager"
minSdk 23
targetSdk 33
versionCode 62
versionName "0.7.1"
versionCode 63
versionName "0.7.2"
setProperty("archivesBaseName", "s3-manager-$versionName")
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

View file

@ -117,7 +117,7 @@ public class Settings extends AppCompatActivity {
Toast.makeText(getApplicationContext(),getResources().getString(R.string.not_zero), Toast.LENGTH_SHORT).show();
} else if (Integer.parseInt(buffersize) <= 2000) {
Toast.makeText(getApplicationContext(),getResources().getString(R.string.buffersize_error), Toast.LENGTH_SHORT).show();
} else if (Integer.parseInt(videotime) > 168) {
} else if (Integer.parseInt(videotime) > 168 || Integer.parseInt(playlisttime) > 168) {
Toast.makeText(getApplicationContext(),getResources().getString(R.string.invalid_expiration_date), Toast.LENGTH_SHORT).show();
} else {
db = dbHelper.getWritableDatabase();

View file

@ -0,0 +1 @@
* Fix app setting validation