new release
This commit is contained in:
parent
55b5113fd3
commit
b3e65a8fcf
4 changed files with 5 additions and 13 deletions
|
@ -9,8 +9,8 @@ android {
|
|||
applicationId "asgardius.page.s3manager"
|
||||
minSdk 23
|
||||
targetSdk 33
|
||||
versionCode 74
|
||||
versionName "0.8.1"
|
||||
versionCode 75
|
||||
versionName "0.9.0"
|
||||
setProperty("archivesBaseName", "s3-manager-$versionName")
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
|
|
|
@ -87,11 +87,6 @@ public class AccountAdd extends AppCompatActivity {
|
|||
style = "0";
|
||||
}
|
||||
MyDbHelper dbHelper = new MyDbHelper(AccountAdd.this);
|
||||
if (alias.equals("") && endpoint.equals("") && username.equals(getResources().getString(R.string.access_key))) {
|
||||
endpoint = getResources().getString(R.string.endpoint_url);
|
||||
alias = "Google Test";
|
||||
pdfendpoint = getResources().getString(R.string.pdf_reader);
|
||||
}
|
||||
SQLiteDatabase db = dbHelper.getWritableDatabase();
|
||||
if (alias.equals("") || endpoint.equals("") || username.equals("") || password.equals("")) {
|
||||
Toast.makeText(getApplicationContext(),getResources().getString(R.string.accountadd_null), Toast.LENGTH_SHORT).show();
|
||||
|
@ -133,10 +128,6 @@ public class AccountAdd extends AppCompatActivity {
|
|||
username = aupick.getText().toString();
|
||||
password = appick.getText().toString();
|
||||
location = arpick.getText().toString();
|
||||
if (alias.equals("") && endpoint.equals("") && username.equals(getResources().getString(R.string.access_key))) {
|
||||
endpoint = getResources().getString(R.string.endpoint_url);
|
||||
alias = "Google Test";
|
||||
}
|
||||
if (alias.equals("") || endpoint.equals("") || username.equals("") || password.equals("")) {
|
||||
Toast.makeText(getApplicationContext(),getResources().getString(R.string.accountadd_null), Toast.LENGTH_SHORT).show();
|
||||
} else if (endpoint.startsWith("http://")) {
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
<resources>
|
||||
<string name="app_name" translatable="false">S3 Manager</string>
|
||||
<string name="aws_endpoint" translatable="false">.amazonaws.com</string>
|
||||
<string name="endpoint_url" translatable="false">https://s3.asgardius.company</string>
|
||||
<string name="pdf_reader" translatable="false">https://office.asgardius.company/pdfjs</string>
|
||||
<string name="pdf_reader_notready">You need to setup a pdf.js server</string>
|
||||
<string name="access_key" translatable="false">google</string>
|
||||
<string name="account_list">Account list</string>
|
||||
<string name="bucket_list">Bucket list</string>
|
||||
<string name="object_list">Object list</string>
|
||||
|
|
3
fastlane/metadata/android/en-US/changelogs/75.txt
Normal file
3
fastlane/metadata/android/en-US/changelogs/75.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
* Check policy per object at creating share links
|
||||
* Cache reuse for public media files
|
||||
* Button to remove media cache inside ths app
|
Loading…
Reference in a new issue