-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge dev into master (#163) for release 4.20.1-beta
* Replace acra with Countly (#162) * fix double credentials collection crash * replaced acra with countly * removed overlay settings was needed for acra * disable internal countly logging * split mainactivity for release and debug flavor Avoid adding countly to the release version * added search plugin close #161 * added search plugin for max-rls * moved html formatting to the start of the parsing * added bitrise search plugin * updated dependencies * Update README.md * removed unused layout * added android:exported="true" to main activity * fix recursive auth loop not 100% tested * moved versions to variables * added content description to bottom menu * moved dependencies to own file * updated target to api 31 * moved navigation back to stable * Use a state machine for authentication (#165) * added fsm library * Added fsm_authentication.drawio * added credentials check after move from db * fix dependency name * added state machine * added auth machine (WIP) * updated AuthenticationFragment with the auth machine * moved constants * update private token with auth machine * updated the user fragment with the auth machine * updated wrong flow result check * renamed file * update list fragment with auth machine * more auth state checks * added new auth machine to new download fragment * added extra options for missing countly credentials useful for developers cloning my repo * added layout preview * fixed wrong value check * updated main activities with auth machine * formatted code * fixed wrong package name * code fixes * fix wrong value check * changed protostore dependency * Updated login flow * fix crash with logout button * fixed private token login * fixed wrong package name * check and delay operations when starting the app from link/file * refactored code * added missing string translations * fixed linting errors * removed the credentials table and related files * code formatting * removed circleci config files * updated linter on github actions * Translated using Weblate (Italian) Currently translated at 100.0% (300 of 300 strings) Translation: Unchained for Android/strings Translate-URL: https://localization.professiona.li/projects/unchained-for-android/strings/it/ * Translated using Weblate (French) Currently translated at 100.0% (300 of 300 strings) Translation: Unchained for Android/strings Translate-URL: https://localization.professiona.li/projects/unchained-for-android/strings/fr/ * Added translation using Weblate (Tagalog) * Deleted translation using Weblate (Tagalog) * updated version for release * fix lint * Wrong token is not reset (#167) * added token functions to parse API errors * use != null instead of ?.let * better transition validity check * added onParseCallFailure function parses the auth api fail reason * added missing transition to reset wrong token * Check for updates on current dependencies (#168) * added plugin to check for updates * updated dependencies * bumped version for release versionCode was already updated, this just adds the latest login fix Co-authored-by: LivingWithHippos <[email protected]> Co-authored-by: alfred ruizol salavedra <[email protected]>
- Loading branch information
1 parent
3e900c8
commit f36dac2
Showing
71 changed files
with
2,720 additions
and
1,119 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
app/app/schemas/com.github.livingwithhippos.unchained.data.local.UnchaineDB/4.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"formatVersion": 1, | ||
"database": { | ||
"version": 4, | ||
"identityHash": "40132ab5533d389dc1aa44b798dec21e", | ||
"entities": [ | ||
{ | ||
"tableName": "host_regex", | ||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`regex` TEXT NOT NULL, `type` INTEGER NOT NULL, PRIMARY KEY(`regex`))", | ||
"fields": [ | ||
{ | ||
"fieldPath": "regex", | ||
"columnName": "regex", | ||
"affinity": "TEXT", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "type", | ||
"columnName": "type", | ||
"affinity": "INTEGER", | ||
"notNull": true | ||
} | ||
], | ||
"primaryKey": { | ||
"columnNames": [ | ||
"regex" | ||
], | ||
"autoGenerate": false | ||
}, | ||
"indices": [], | ||
"foreignKeys": [] | ||
} | ||
], | ||
"views": [], | ||
"setupQueries": [ | ||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)", | ||
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '40132ab5533d389dc1aa44b798dec21e')" | ||
] | ||
} | ||
} |
Oops, something went wrong.