mirror of
https://github.com/wismna/DoNext.git
synced 2025-12-06 00:02:40 -05:00
Compare commits
3 Commits
af0bb51f01
...
e6f81fa177
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e6f81fa177 | ||
|
|
b3af094eed | ||
|
|
49a58a8977 |
14
.github/workflows/android.yaml
vendored
14
.github/workflows/android.yaml
vendored
@@ -6,6 +6,9 @@ on:
|
|||||||
- master
|
- master
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
|
env:
|
||||||
|
MODULE: donextv2
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -20,10 +23,6 @@ jobs:
|
|||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: '17'
|
java-version: '17'
|
||||||
|
|
||||||
- name: Replace tokens in build.gradle
|
|
||||||
run: |
|
|
||||||
sed -i 's/#{\([^}]*\)}/${\1}/g' donext/build.gradle
|
|
||||||
|
|
||||||
- name: Cache Gradle
|
- name: Cache Gradle
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
@@ -34,6 +33,9 @@ jobs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-gradle-
|
${{ runner.os }}-gradle-
|
||||||
|
|
||||||
|
- name: Decode signing key
|
||||||
|
run: echo "${{ secrets.SIGNING_KEY_BASE64 }}" | base64 --decode > ${{ env.MODULE }}/upload.jks
|
||||||
|
|
||||||
- name: Set up Ruby
|
- name: Set up Ruby
|
||||||
uses: ruby/setup-ruby@v1
|
uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
@@ -48,4 +50,8 @@ jobs:
|
|||||||
- name: Run Fastlane
|
- name: Run Fastlane
|
||||||
env:
|
env:
|
||||||
SUPPLY_JSON_KEY: service-account.json
|
SUPPLY_JSON_KEY: service-account.json
|
||||||
|
KEYSTORE_FILE: upload.jks
|
||||||
|
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
|
||||||
|
ALIAS_NAME: ${{ secrets.ALIAS_NAME }}
|
||||||
|
ALIAS_PASSWORD: ${{ secrets.ALIAS_PASSWORD }}
|
||||||
run: bundle exec fastlane internal
|
run: bundle exec fastlane internal
|
||||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,5 +1,6 @@
|
|||||||
*.iml
|
*.iml
|
||||||
*.apk
|
*.apk
|
||||||
|
*.jks
|
||||||
.gradle
|
.gradle
|
||||||
/local.properties
|
/local.properties
|
||||||
/.idea/workspace.xml
|
/.idea/workspace.xml
|
||||||
@@ -8,3 +9,4 @@
|
|||||||
/build
|
/build
|
||||||
/captures
|
/captures
|
||||||
/fastlane/keys/
|
/fastlane/keys/
|
||||||
|
/donext*/release/
|
||||||
|
|||||||
@@ -24,6 +24,15 @@ android {
|
|||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
create("release") {
|
||||||
|
storeFile = file(System.getenv("KEYSTORE_FILE") ?: "./upload.jks")
|
||||||
|
storePassword = System.getenv("KEYSTORE_PASSWORD")
|
||||||
|
keyAlias = System.getenv("ALIAS_NAME")
|
||||||
|
keyPassword = System.getenv("ALIAS_PASSWORD")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
getByName("debug").assets.srcDirs(files("$projectDir/schemas"))
|
getByName("debug").assets.srcDirs(files("$projectDir/schemas"))
|
||||||
}
|
}
|
||||||
@@ -38,6 +47,7 @@ android {
|
|||||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||||
"proguard-rules.pro"
|
"proguard-rules.pro"
|
||||||
)
|
)
|
||||||
|
signingConfig = signingConfigs["release"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
compileOptions {
|
compileOptions {
|
||||||
|
|||||||
@@ -2,10 +2,7 @@ Complete UI overhaul that gives DoNext a nice, modern look.
|
|||||||
Complete code rewrite to Kotlin and Android Jetpack, with a better architecture.
|
Complete code rewrite to Kotlin and Android Jetpack, with a better architecture.
|
||||||
|
|
||||||
Task lists are now displayed in a navigation menu
|
Task lists are now displayed in a navigation menu
|
||||||
Tasks are now ordered by priority and not cycles
|
Tasks are now ordered by priority and not cycles which were removed
|
||||||
All tasks can be Done or Removed instead of only the first one
|
All tasks can be Done or Removed instead of only the first one
|
||||||
A Recycle Bin was added
|
Removed History page and split its features between the regular task lists and the new Recycle Bin
|
||||||
The whole Next and cycles mechanism was removed
|
Today view is not a separate concept anymore and based on the tasks due date
|
||||||
The History page was removed and its features split between the regular task lists and the Recycle Bin
|
|
||||||
The Today view is not a separate concept now, it's based on the tasks due date
|
|
||||||
No more Settings page as it's not needed anymore (but it may come back later if required)
|
|
||||||
Reference in New Issue
Block a user