Skip to content

Commit

Permalink
Release 0.9.11
Browse files Browse the repository at this point in the history
* Added: clear cache before backing up
* Updated: chips styling
* Added: prompt for battery optimization exclusion
* Fixed: the profiles bug (needs testing)
* Switched: from FilePicker to SAF
* Tweaked up the code
  • Loading branch information
machiav3lli committed May 11, 2020
1 parent 64252f5 commit 9061794
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 9 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,28 @@ backups can be scheduled with no limit on the number of individual schedules and
## Changes & TODOs

- [x] Fixing OAB-Utils build problem which was caused by a deprecated method in Rust
- [ ] Adapt FastAdapter: for Main, Batch and Scheduler
- [x] Adapt FastAdapter: for Main, Batch and Scheduler
- [x] Rewrite Main-, Batch- & Scheduler-(Activity, Adapter and Sorter)
- [x] Modeling the app's structure: for the most part now
- [x] Modeling Sort/Filter
- [ ] Add some new filters
- [ ] Add Info, Exodus Report to AppSheet
- [x] Rewrite Preferences
- [x] Integrate Tools and Help in Preferences
- [ ] New android scope storage permissions compatibility: fixed for Android 10 with legacy mode(first: after android 11 release)
- [ ] New android Scope Storage permissions compatibility: fixed for Android 10 with legacy mode for now(first: after android 11 release)
- [ ] Switch to Storage Access Framework: moved to SAF but still supports only local storage for now
- [x] New UI and UX: Design improvement proposals are always welcome
- [x] Add Dark/Light themes
- [ ] Update dialogs' UI: partially done
- [x] Add support for protected data backup
- [x] Exclude cache from data backups
- [x] Prompt to turn the Battery Optimization off
- [ ] Add in-app backup encryption (first: after 1.0)
- [ ] Rewrite the logic of Backup/Restore
- [ ] Rewrite the logic of Backup/Restore: is a PROCESS
- [ ] Add Split Apk Support
- [ ] Add a Flashable-ZIP feature
- [ ] You suggest!...


## Screenshots

### Dark Theme
Expand Down Expand Up @@ -107,7 +110,7 @@ Placeholders Icon made by [Smashicons](https://www.flaticon.com/authors/smashico

[Rahul Patel](https://github.com/whyorean) whose hard work on AuroraStore inspired this work.

Open-Source libs: [ButterKnife](https://github.com/JakeWharton/butterknife), [FastAdapter](https://github.com/mikepenz/FastAdapter), [NNFilePicker](https://github.com/spacecowboy/NoNonsense-FilePicker), [RootBeer](https://github.com/scottyab/rootbeer).
Open-Source libs: [ButterKnife](https://github.com/JakeWharton/butterknife), [FastAdapter](https://github.com/mikepenz/FastAdapter), [RootBeer](https://github.com/scottyab/rootbeer).

## author

Expand Down
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ ext {
room : "2.2.5",
lifecycle : "2.2.0",
stream : "1.2.1",
filepicker : "4.2.1",
rootBeer : "0.0.7",

butterknife : "10.2.1",
Expand All @@ -41,7 +40,6 @@ dependencies {
annotationProcessor "androidx.room:room-compiler:${versions.room}"
implementation "androidx.lifecycle:lifecycle-livedata:${versions.lifecycle}"
implementation "com.annimon:stream:${versions.stream}"
implementation "com.nononsenseapps:filepicker:${versions.filepicker}"
implementation "com.scottyab:rootbeer-lib:${versions.rootBeer}"

//ButterKnife
Expand Down Expand Up @@ -105,7 +103,7 @@ sonarqube {

int versionMajor = 0
int versionMinor = 9
int versionPath = 10
int versionPath = 11

android {
compileSdkVersion 29
Expand Down Expand Up @@ -325,7 +323,7 @@ gradle.taskGraph.whenReady { graph ->
Process p = r.exec("python3 --version")
p.waitFor()
pythonExists = p.exitValue() == 0
} catch (IOException e) {
} catch (IOException ignored) {
logger.warn("no python - not running apk integrity checks")
}
if (pythonExists) {
Expand Down
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
changelog
=========

0.9.11 (11.05.2020)
-------------------
* added: clear cache before backing up
* updated: chips styling
* added: prompt for battery optimization exclusion
* fixed: the profiles bug (needs testing)
* switched: from FilePicker to SAF
* tweaked up the code

0.9.10 (07.05.2020)
-------------------
* rewritten: Scheduler (need to be tested extensively)
Expand Down
7 changes: 7 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/911.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
**OAndBackupX 0.9.11**
* Added: clear cache before backing up
* Updated: chips styling
* Added: prompt for battery optimization exclusion
* Fixed: the profiles bug (needs testing)
* Switched: from FilePicker to SAF
* Tweaked up the code

0 comments on commit 9061794

Please sign in to comment.