Update screenshots and metadata
Update pipeline to build new module
5
.github/workflows/android.yaml
vendored
@@ -8,7 +8,8 @@ on:
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
BUILD_DIR: donext/build/outputs/bundle/release
|
||||
MODULE: donextv2
|
||||
BUILD_DIR: donextv2/build/outputs/bundle/release
|
||||
|
||||
jobs:
|
||||
build:
|
||||
@@ -39,7 +40,7 @@ jobs:
|
||||
${{ runner.os }}-gradle-
|
||||
|
||||
- name: Build AAB
|
||||
run: ./gradlew bundleRelease
|
||||
run: ./gradlew :${{ env.MODULE }}:bundleRelease
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
|
||||
1
.gitignore
vendored
@@ -7,3 +7,4 @@
|
||||
.DS_Store
|
||||
/build
|
||||
/captures
|
||||
/fastlane/keys/
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
json_key_file("../..//Downloads/donext-f9e67-1184ae400b09.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
|
||||
package_name("com.wismna.geoffroy.donext") # e.g. com.krausefx.app
|
||||
json_key_file("./fastlane/keys/donext-f9e67-5038064982b0")
|
||||
package_name("com.wismna.geoffroy.donext")
|
||||
|
||||
@@ -1,38 +1,26 @@
|
||||
# This file contains the fastlane.tools configuration
|
||||
# You can find the documentation at https://docs.fastlane.tools
|
||||
#
|
||||
# For a list of all available actions, check out
|
||||
#
|
||||
# https://docs.fastlane.tools/actions
|
||||
#
|
||||
# For a list of all available plugins, check out
|
||||
#
|
||||
# https://docs.fastlane.tools/plugins/available-plugins
|
||||
#
|
||||
|
||||
# Uncomment the line if you want fastlane to automatically update itself
|
||||
# update_fastlane
|
||||
|
||||
default_platform(:android)
|
||||
|
||||
platform :android do
|
||||
desc "Runs all the tests"
|
||||
desc "Run all unit tests"
|
||||
lane :test do
|
||||
gradle(task: "test")
|
||||
gradle(task: "testDebugUnitTest")
|
||||
end
|
||||
|
||||
desc "Submit a new Beta Build to Crashlytics Beta"
|
||||
desc "Build a release APK or AAB for beta testing"
|
||||
lane :beta do
|
||||
gradle(task: "clean assembleRelease")
|
||||
crashlytics
|
||||
|
||||
# sh "your_script.sh"
|
||||
# You can also use other beta testing services here
|
||||
gradle(task: "clean bundleRelease")
|
||||
upload_to_play_store(
|
||||
track: "beta",
|
||||
aab: "app/build/outputs/bundle/release/app-release.aab"
|
||||
)
|
||||
end
|
||||
|
||||
desc "Deploy a new version to the Google Play"
|
||||
desc "Deploy the production version to Google Play"
|
||||
lane :deploy do
|
||||
gradle(task: "clean assembleRelease")
|
||||
upload_to_play_store
|
||||
gradle(task: "clean bundleRelease")
|
||||
upload_to_play_store(
|
||||
track: "production",
|
||||
aab: "app/build/outputs/bundle/release/app-release.aab"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1 +1,11 @@
|
||||
Update to SDK version 35
|
||||
Complete UI overhaul that gives DoNext a nice, modern look.
|
||||
Complete code rewrite to Kotlin and Android Jetpack, with a better architecture.
|
||||
|
||||
Task lists are now displayed in a navigation menu
|
||||
Tasks are now ordered by priority and not cycles
|
||||
All tasks can be Done or Removed instead of only the first one
|
||||
A Recycle Bin was added
|
||||
The whole Next and cycles mechanism was removed
|
||||
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)
|
||||
|
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 68 KiB |
|
Before Width: | Height: | Size: 68 KiB |
|
Before Width: | Height: | Size: 120 KiB |
|
Before Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 121 KiB |
@@ -1 +1 @@
|
||||
A new way to manage your tasks!
|
||||
A simple and fast app to manage your tasks!
|
||||
@@ -1 +1 @@
|
||||
DoNext
|
||||
DoNext v2
|
||||