@ -1,53 +0,0 @@
|
|||||||
name: Build, Test & Publish
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: macOS-latest
|
|
||||||
env:
|
|
||||||
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
|
|
||||||
- name: Install GPG
|
|
||||||
uses: olafurpg/setup-gpg@v2
|
|
||||||
|
|
||||||
- name: Decrypt secrets
|
|
||||||
env:
|
|
||||||
GPG_PASSWORD: ${{ secrets.GPG_PASSWORD }}
|
|
||||||
run: .secret/decrypt.sh
|
|
||||||
|
|
||||||
- name: Install Java Development Kit 1.8
|
|
||||||
uses: actions/setup-java@v1
|
|
||||||
with:
|
|
||||||
java-version: 1.8
|
|
||||||
|
|
||||||
- name: Install flock
|
|
||||||
run: brew install util-linux
|
|
||||||
|
|
||||||
- name: Build APK & Run small tests
|
|
||||||
env:
|
|
||||||
RELEASE: 1
|
|
||||||
run: ./build.sh build
|
|
||||||
|
|
||||||
- name: Run medium tests
|
|
||||||
uses: ReactiveCircus/android-emulator-runner@v2.2.0
|
|
||||||
env:
|
|
||||||
RELEASE: 1
|
|
||||||
with:
|
|
||||||
api-level: 29
|
|
||||||
script: ./build.sh medium-tests
|
|
||||||
|
|
||||||
- name: Upload build to GitHub
|
|
||||||
uses: actions/upload-artifact@v1
|
|
||||||
with:
|
|
||||||
name: Build
|
|
||||||
path: uhabits-android/uhabits-android/build/outputs/
|
|
||||||
|
|
||||||
- name: Upload APK to Google Play
|
|
||||||
run: cd uhabits-android && ./gradlew publishReleaseApk
|
|
After Width: | Height: | Size: 118 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 107 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 128 KiB |
After Width: | Height: | Size: 40 KiB |
After Width: | Height: | Size: 120 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 173 KiB |
After Width: | Height: | Size: 45 KiB |
After Width: | Height: | Size: 2.0 MiB |
After Width: | Height: | Size: 94 KiB |
Before Width: | Height: | Size: 105 KiB |
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 112 KiB |
Before Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 118 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 2.0 MiB |
Before Width: | Height: | Size: 142 KiB |
Before Width: | Height: | Size: 105 KiB |
Before Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 116 KiB |
Before Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 118 KiB |
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 107 KiB |
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 128 KiB |
Before Width: | Height: | Size: 2.0 MiB After Width: | Height: | Size: 134 KiB |
Before Width: | Height: | Size: 105 KiB After Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 2.0 MiB |
@ -1,3 +1,10 @@
|
|||||||
1.8.12:
|
2.0:
|
||||||
* Fix bug that caused incorrect check marks to show after scrolling
|
* Track numeric habits (e.g. how many pages did you read?)
|
||||||
* Fix issue preventing widgets from updating at midnight
|
* Skip days without breaking your streak
|
||||||
|
* Show question marks for days with missing data
|
||||||
|
* Extend day a few hours past midnight
|
||||||
|
* Show multiple habits in a single widget
|
||||||
|
* Export daily backups automatically
|
||||||
|
* Sort habits by status and in reverse
|
||||||
|
* Add notes to habits
|
||||||
|
* Improve theme and accessibility
|
||||||
|