Compare commits
81 Commits
hotfix/2.1
...
gh-actions
| Author | SHA1 | Date | |
|---|---|---|---|
|
10ffb6c6a0
|
|||
|
|
856a0726f7 | ||
|
|
df97b1fd4f | ||
| dc678e59df | |||
|
|
d95084500f | ||
|
6f7215b46f
|
|||
|
|
c423d2b3ca | ||
|
|
758fc56277 | ||
|
|
c7d1e92cae | ||
|
|
d24dcbf2ca | ||
|
|
579b33cc78 | ||
|
|
1a3e6315a1 | ||
|
|
7f4d06d15d | ||
|
|
b8033a6012 | ||
|
404671546c
|
|||
|
a94c6e8b9f
|
|||
|
da09df2dd1
|
|||
|
40a4d254f5
|
|||
|
9f5da7b4fe
|
|||
|
e42d41ef30
|
|||
|
5498ff8a87
|
|||
|
20dcc7929b
|
|||
|
1283cf979d
|
|||
|
0a493ff065
|
|||
|
16cd249bae
|
|||
|
d136572960
|
|||
|
318aa3c821
|
|||
|
73712e0d10
|
|||
| bf504641c6 | |||
|
2154d8c192
|
|||
|
4c5a722dc5
|
|||
| ee39ff0eda | |||
|
|
6a9c3a36eb | ||
|
|
99ccb44ad3 | ||
|
|
8c0655c352 | ||
|
|
335f8c32fd | ||
|
|
f77c064722 | ||
|
|
8b0b757f04 | ||
| 458c9f3b15 | |||
| dfa74960b3 | |||
| f082842fbe | |||
| d4d818a085 | |||
|
|
f074d0331d | ||
|
|
f94bc62a94 | ||
| b0097fa45e | |||
|
|
15fa1fea8c | ||
| 31368cff45 | |||
| b44dd96dd3 | |||
|
|
08fab0cd8d | ||
|
|
a142685d2e | ||
| a7a95f2030 | |||
|
|
d3c90481be | ||
| f9bb0d7d7b | |||
| f23a1bedee | |||
| dcf31ba115 | |||
|
|
5409a324e8 | ||
|
|
504362e680 | ||
|
|
0ce2f8fae2 | ||
| 2fc6c67432 | |||
| 459cf02642 | |||
| 44cb64601f | |||
|
|
dd47d4cf08 | ||
|
|
8912a9d73c | ||
|
|
9bd1c6f685 | ||
|
|
e15e06034c | ||
|
|
a6180a5049 | ||
|
|
7c69b17e77 | ||
|
|
602a40a532 | ||
|
|
e00998f913 | ||
|
|
af5914c2db | ||
|
|
6c5f70638a | ||
|
|
ba88552919 | ||
|
|
8c90c4f68d | ||
|
|
08eb1a600d | ||
|
|
8ea0480d4a | ||
|
|
36ee39589e | ||
|
|
ac7a721940 | ||
|
|
b36ca8673a | ||
|
|
7cfac486f9 | ||
|
|
21dd413ab5 | ||
|
|
39e10638b5 |
3
.github/workflows/main.yml
vendored
@@ -9,6 +9,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
Test:
|
Test:
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Check out source code
|
- name: Check out source code
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
@@ -17,7 +18,7 @@ jobs:
|
|||||||
run: ./build.sh build
|
run: ./build.sh build
|
||||||
|
|
||||||
- name: Run Android tests
|
- name: Run Android tests
|
||||||
run: ./build.sh android-tests-parallel 23 24 25 26 27 28 30 31
|
run: ./build.sh android-tests-parallel 28 29 30 31 32 33
|
||||||
|
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
if: always()
|
if: always()
|
||||||
|
|||||||
5
.gitignore
vendored
@@ -12,13 +12,8 @@
|
|||||||
.idea
|
.idea
|
||||||
.secret
|
.secret
|
||||||
build
|
build
|
||||||
build/
|
|
||||||
captures
|
|
||||||
local.properties
|
local.properties
|
||||||
node_modules
|
node_modules
|
||||||
*xcuserdata*
|
*xcuserdata*
|
||||||
*.sketch
|
*.sketch
|
||||||
/design
|
|
||||||
/releases
|
|
||||||
/screenshots
|
|
||||||
crowdin.yml
|
crowdin.yml
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
cd "$(dirname "$0")"
|
|
||||||
if [ -z "$GPG_PASSWORD" ]; then
|
|
||||||
echo Env variable GPG_PASSWORD must be defined
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
gpg \
|
|
||||||
--quiet \
|
|
||||||
--batch \
|
|
||||||
--yes \
|
|
||||||
--decrypt \
|
|
||||||
--passphrase="$GPG_PASSWORD" \
|
|
||||||
--output secret.tar.gz \
|
|
||||||
secret
|
|
||||||
tar -xzf secret.tar.gz
|
|
||||||
rm secret.tar.gz
|
|
||||||
BIN
.secret/secret
@@ -1,11 +1,11 @@
|
|||||||
plugins {
|
plugins {
|
||||||
val kotlinVersion = "1.6.10"
|
val kotlinVersion = "1.7.21"
|
||||||
id("com.android.application") version ("7.0.3") apply (false)
|
id("com.android.application") version ("7.3.1") apply (false)
|
||||||
id("org.jetbrains.kotlin.android") version kotlinVersion apply (false)
|
id("org.jetbrains.kotlin.android") version kotlinVersion apply (false)
|
||||||
id("org.jetbrains.kotlin.kapt") version kotlinVersion apply (false)
|
id("org.jetbrains.kotlin.kapt") version kotlinVersion apply (false)
|
||||||
id("org.jetbrains.kotlin.android.extensions") version kotlinVersion apply (false)
|
id("org.jetbrains.kotlin.android.extensions") version kotlinVersion apply (false)
|
||||||
id("org.jetbrains.kotlin.multiplatform") version kotlinVersion apply (false)
|
id("org.jetbrains.kotlin.multiplatform") version kotlinVersion apply (false)
|
||||||
id("org.jlleitschuh.gradle.ktlint") version "10.2.1"
|
id("org.jlleitschuh.gradle.ktlint") version "11.0.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
apply {
|
apply {
|
||||||
|
|||||||
5
build.sh
@@ -85,10 +85,10 @@ android_setup() {
|
|||||||
$AVDMANAGER delete avd --name $AVDNAME
|
$AVDMANAGER delete avd --name $AVDNAME
|
||||||
|
|
||||||
log_info "Creating new Android virtual device (API $API)..."
|
log_info "Creating new Android virtual device (API $API)..."
|
||||||
(echo "y" | $SDKMANAGER --install "system-images;android-$API;default;x86_64") || return 1
|
(echo "y" | $SDKMANAGER --install "system-images;android-$API;google_apis;x86_64") || return 1
|
||||||
$AVDMANAGER create avd \
|
$AVDMANAGER create avd \
|
||||||
--name $AVDNAME \
|
--name $AVDNAME \
|
||||||
--package "system-images;android-$API;default;x86_64" \
|
--package "system-images;android-$API;google_apis;x86_64" \
|
||||||
--device "Nexus 4" || return 1
|
--device "Nexus 4" || return 1
|
||||||
|
|
||||||
flock -u 10
|
flock -u 10
|
||||||
@@ -162,6 +162,7 @@ android_boot() {
|
|||||||
|
|
||||||
# shellcheck disable=SC2016
|
# shellcheck disable=SC2016
|
||||||
android_test() {
|
android_test() {
|
||||||
|
return 1
|
||||||
API=$1
|
API=$1
|
||||||
AVDNAME=${AVD_PREFIX}${API}
|
AVDNAME=${AVD_PREFIX}${API}
|
||||||
|
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ The repository will be downloaded to the directory `uhabits`.
|
|||||||
2. When the IDE asks you for the project location, select `uhabits` and click "Ok".
|
2. When the IDE asks you for the project location, select `uhabits` and click "Ok".
|
||||||
3. Android Studio will spend some time indexing the project. When this is complete, click the toolbar icon "Sync Project with Gradle File", located near the right corner of the top toolbar.
|
3. Android Studio will spend some time indexing the project. When this is complete, click the toolbar icon "Sync Project with Gradle File", located near the right corner of the top toolbar.
|
||||||
4. The operation will likely fail several times due to missing Android SDK components. Each time it fails, click the link "Install missing platforms", "Install build tools", etc, and try again.
|
4. The operation will likely fail several times due to missing Android SDK components. Each time it fails, click the link "Install missing platforms", "Install build tools", etc, and try again.
|
||||||
5. To test the application, create a virtual Android device using the menu "Tools" and "AVD Manager". The default options should work fine, but free to customize the device.
|
5. To test the application, create a virtual Android device using the menu "Tools" and "AVD Manager". The default options should work fine, but feel free to customize the device.
|
||||||
6. Click the menu "Run" and "uhabits-android". The application should launch.
|
6. Click the menu "Run" and "uhabits-android". The application should launch.
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
54
docs/TEST.md
@@ -2,51 +2,25 @@
|
|||||||
|
|
||||||
Loop Habit Tracker has a fairly large number of automated tests to reduce the chance of bugs being silently introduced in our code base. The tests are divided into three categories:
|
Loop Habit Tracker has a fairly large number of automated tests to reduce the chance of bugs being silently introduced in our code base. The tests are divided into three categories:
|
||||||
|
|
||||||
* **Small tests:** These tests run very quickly on the developer's computer, inside a JVM, and do not need an Android emulator or device. They typically test the correctness of core functions of the application, such as the computation of scores and streaks.
|
- **Unit tests:** These tests run very quickly on the developer's computer, inside a JVM, and do not need an Android emulator or device. They typically test the correctness of core functions of the application, such as the computation of scores and streaks.
|
||||||
* **Medium tests:** These tests require an Android emulator or device, but they are still quite fast to run, since only individual classes are tested. The app itself does not need to be launched. Examples include *view tests*, which render our custom views on the device and compare them against prerendered images.
|
- **Instrumented tests:** These tests require an Android emulator or device. _Medium_ instrumented tests are still quite fast to run, since only individual classes are tested. The app itself does not need to be launched. Examples include _view tests_, which render our custom views on the device and compare them against prerendered images. _Large_ instrumented tests launch the application on an Android emulator and interact with it by touching the screen, much like a regular user.
|
||||||
* **Large tests:** These are end-to-end tests, which launch the application on an Android emulator and interact with it by touching the screen, much like a regular user.
|
|
||||||
|
|
||||||
## Running small tests
|
## Running unit tests
|
||||||
|
|
||||||
Small tests can be launched by running `./gradlew test` or by right-clicking a particular class/method in Android Studio and selecting "Run testMethod()" or "Run ClassTest". An alternative way is to use `build.sh`, the script used by our continuous integration server. By running `./build.sh build`, the script will automatically build and run all small tests.
|
Unit tests can be launched by running `./gradlew test` or by right-clicking a particular class/method in Android Studio and selecting "Run testMethod()" or "Run ClassTest". An alternative way is to use `build.sh`, the script used by our continuous integration server. By running `./build.sh build`, the script will automatically build and run all small tests.
|
||||||
|
|
||||||
## Running medium tests
|
## Running instrumented tests
|
||||||
|
|
||||||
To run medium tests, it is recommended to use the `build.sh` script:
|
To run medium tests, it is recommended to use the `build.sh` script.
|
||||||
|
|
||||||
./build.sh build
|
1. Run `./build.sh android-setup API` to create the emulator, where `API` is the desired API level.
|
||||||
./build.sh medium-tests
|
2. Run `./build.sh android-tests API` to run the tests on a single API.
|
||||||
|
3. Run `./build.sh android-tests-parallel API API...` to run the tests on multiple APIs in parallel.
|
||||||
|
|
||||||
|
Note that instrumented tests are designed to run on a clean install, inside an emulator. They will not work on actual devices. All tests are also designed for a particular screen size, namely the Nexus 4 configuration (4.7" 768x1280 xhdpi), and a particular locale, namely English (US). Furthermore:
|
||||||
|
|
||||||
For this script to succeed, make sure that an emulator is currently running, or that a device (with developer mode activated) is connected via USB.
|
- No additional apps should be installed on the device;
|
||||||
|
- The homescreen must look exactly like it was when the emulator was originally created, with no additional icons or widgets;
|
||||||
|
- All animations must be manually disabled.
|
||||||
|
|
||||||
**WARNING!** This script will uninstall the app prior to testing it, and therefore delete all user data!
|
If there are failing view tests (that is, if some custom views do not render exactly like the prerendered images we have), then both the actual and expected images will be automatically downloaded from the device to the folder `uhabits-android/build/outputs`. After verifying the differences, if you feel that the actual images are actually fine and should replace the prerendered ones, then run `./build.sh android-accept-images`.
|
||||||
|
|
||||||
|
|
||||||
If there are failing view tests (that is, if some custom views do not render exactly like the prerendered images we have), then the script `./build.sh fetch-images` can be used to download both the actual and the expected images from the device. The images will be downloaded from the device into the folder `tmp/`. After verifying the differences, if you feel that the actual images are actually fine and should replace the prerendered ones, then run `./build.sh accept-images`.
|
|
||||||
|
|
||||||
## Running large tests
|
|
||||||
|
|
||||||
Large tests are significantly more complicated to run. In particular, they require:
|
|
||||||
|
|
||||||
* An Android emulator; they will **not** work on actual devices;
|
|
||||||
* A vanilla x86 AOSP image; they will **not** work with Google API images;
|
|
||||||
* A particular screen size, namely the Nexus 4 configuration on Android Studio (4.7 768x1280 xhdpi);
|
|
||||||
* A particular locale, namely English (US).
|
|
||||||
|
|
||||||
Furthermore:
|
|
||||||
|
|
||||||
* No additional apps should be installed on the device;
|
|
||||||
* The homescreen must look exactly like it was when the emulator was originally created, with no additional icons or widgets;
|
|
||||||
* Developer mode must be activated, and all animations must be manually disabled.
|
|
||||||
|
|
||||||
Only the following Android versions are supported by our test suite:
|
|
||||||
|
|
||||||
* Android 7.0 (API 24)
|
|
||||||
* Android 7.1.1 (API 25)
|
|
||||||
* Android 8.0 (API 26)
|
|
||||||
* Android 8.1 (API 27)
|
|
||||||
* Android 9.0 (API 28)
|
|
||||||
* Android 10.0 (API 29)
|
|
||||||
|
|
||||||
After creating an emulator and configuring it exactly as described above, launch it, wait for it to finish booting up, then run `./build.sh large-tests`. As mentioned before, this script will uninstall the app before testing it, and therefore will delete all the user data.
|
|
||||||
|
|||||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|||||||
2
landing/.gitignore
vendored
@@ -1,2 +0,0 @@
|
|||||||
out/
|
|
||||||
.sass-cache
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
haml := src/*.haml
|
|
||||||
sass := src/*.sass
|
|
||||||
|
|
||||||
html := $(patsubst src/%, out/%, $(patsubst %.haml,%.html,$(wildcard $(haml))))
|
|
||||||
css := $(patsubst src/%, out/%, $(patsubst %.sass,%.css,$(wildcard $(sass))))
|
|
||||||
src := $(wildcard src/**)
|
|
||||||
|
|
||||||
compile: $(html) $(css)
|
|
||||||
@rsync -rupE assets/ out/
|
|
||||||
|
|
||||||
out/%.css: src/%.sass $(src)
|
|
||||||
@echo ' sass $<'
|
|
||||||
@mkdir -p `dirname $@`
|
|
||||||
@sass $< $@
|
|
||||||
|
|
||||||
out/%.html: src/%.haml $(src)
|
|
||||||
@echo ' haml $<'
|
|
||||||
@mkdir -p `dirname $@`
|
|
||||||
@haml -E UTF-8 $< $@
|
|
||||||
|
|
||||||
push:
|
|
||||||
rsync -avP out/ axavier.org:/www/loophabits.org/
|
|
||||||
|
|
||||||
clean:
|
|
||||||
@rm -rfv out
|
|
||||||
@rm -rfv tmp
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
Loop Habit Tracker Landing Page
|
|
||||||
===============================
|
|
||||||
|
|
||||||
This folder contains the source code that generates the project landing page, currently hosted at https://loophabits.org/
|
|
||||||
|
|
||||||
Pull requests with ideas for improving it are very welcome.
|
|
||||||
|
|
||||||
Build instructions
|
|
||||||
------------------
|
|
||||||
|
|
||||||
1. Install `haml`:
|
|
||||||
```bash
|
|
||||||
sudo apt install ruby-haml
|
|
||||||
```
|
|
||||||
2. Install `pandoc-ruby`:
|
|
||||||
```bash
|
|
||||||
gem install pandoc-ruby
|
|
||||||
```
|
|
||||||
3. Run `Makefile`
|
|
||||||
```bash
|
|
||||||
make
|
|
||||||
```
|
|
||||||
4. View the results (using, for example, [npm serve](https://www.npmjs.com/package/serve))
|
|
||||||
```bash
|
|
||||||
npm serve out/
|
|
||||||
```
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
<meta http-equiv="Refresh" content="0; url='https://github.com/iSoron/uhabits/discussions/689'" />
|
|
||||||
|
Before Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 458 KiB |
7
landing/assets/lib/css/bootstrap.min.css
vendored
2
landing/assets/lib/js/jquery.min.js
vendored
|
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 |
@@ -1,106 +0,0 @@
|
|||||||
!!! 5
|
|
||||||
%html
|
|
||||||
%head
|
|
||||||
%meta(charset="UTF-8")
|
|
||||||
%link(href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css")
|
|
||||||
%meta(name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no")
|
|
||||||
%title Loop Habit Tracker
|
|
||||||
%link(rel="stylesheet" type="text/css" href="lib/css/bootstrap.min.css")
|
|
||||||
%link(rel="stylesheet" type="text/css" href="index.css")
|
|
||||||
|
|
||||||
%body
|
|
||||||
.navbar.navbar-expand-md.navbar-light.bg-light
|
|
||||||
%a.navbar-brand(href="/")
|
|
||||||
%b Loop
|
|
||||||
Habit Tracker
|
|
||||||
%button.navbar-toggler(type="button" data-toggle="collapse" data-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation")
|
|
||||||
%span.navbar-toggler-icon
|
|
||||||
#navbar.collapse.navbar-collapse
|
|
||||||
%ul.navbar-nav.mr-auto.mt-2.mt-lg-0
|
|
||||||
%li.nav-item
|
|
||||||
%a.nav-link(href="faq.html") FAQ
|
|
||||||
%li.nav-item
|
|
||||||
%a.nav-link(href="privacy.html") Privacy
|
|
||||||
%li.nav-item
|
|
||||||
%a.nav-link(href="https://source.loophabits.org") Source Code
|
|
||||||
%li.nav-item
|
|
||||||
%a.nav-link(href="https://translate.loophabits.org") Translate
|
|
||||||
|
|
||||||
.jumbotron.jumbotron-fluid
|
|
||||||
.site-wrapper
|
|
||||||
.container
|
|
||||||
.row.vertical-align
|
|
||||||
.col-md
|
|
||||||
%h1.display-4
|
|
||||||
Get your life on track
|
|
||||||
%p.lead
|
|
||||||
With daily reminders, beautiful charts and insightful statistics,
|
|
||||||
Loop Habit Tracker™ helps you create and maintain great habits. Completely free and open-source.
|
|
||||||
|
|
||||||
.store-badges
|
|
||||||
%a(href="https://play.google.com/store/apps/details?id=org.isoron.uhabits")
|
|
||||||
%img(src="images/google-play.png")
|
|
||||||
%a(href="https://f-droid.org/en/packages/org.isoron.uhabits/")
|
|
||||||
%img(src="images/f-droid.png")
|
|
||||||
.col-md
|
|
||||||
.s2
|
|
||||||
%img.screenshot(src="screenshots/uhabits1.png")
|
|
||||||
.s1
|
|
||||||
%img.screenshot(src="screenshots/uhabits4.png")
|
|
||||||
|
|
||||||
.section.screenshots
|
|
||||||
%span
|
|
||||||
%a(href="screenshots/uhabits1.png")
|
|
||||||
%img(src="screenshots/uhabits1_th.png")
|
|
||||||
%a(href="screenshots/uhabits2.png")
|
|
||||||
%img(src="screenshots/uhabits2_th.png")
|
|
||||||
%a(href="screenshots/uhabits3.png")
|
|
||||||
%img(src="screenshots/uhabits3_th.png")
|
|
||||||
%span
|
|
||||||
%a(href="screenshots/uhabits4.png")
|
|
||||||
%img(src="screenshots/uhabits4_th.png")
|
|
||||||
%a(href="screenshots/uhabits5.png")
|
|
||||||
%img(src="screenshots/uhabits5_th.png")
|
|
||||||
|
|
||||||
.section
|
|
||||||
.feature-header
|
|
||||||
%h1
|
|
||||||
Features
|
|
||||||
.container
|
|
||||||
.row
|
|
||||||
.col-md
|
|
||||||
%ul
|
|
||||||
%li
|
|
||||||
%h3 Habit score
|
|
||||||
Loop has an advanced formula for calculating the strength of your habits. Every repetition makes your habit stronger and every missed day makes it weaker. A few missed days after a long streak, however, will not completely destroy your progress, unlike many other don't-break-the-chain apps.
|
|
||||||
|
|
||||||
%li
|
|
||||||
%h3 Flexible schedules
|
|
||||||
In addition to daily habits, Loop supports habits with more complex schedules, such as 3 times per week or every other day.
|
|
||||||
%li
|
|
||||||
%h3 Reminders
|
|
||||||
Schedule notifications to remind you of your habits. Each habit can have its own reminder, at a chosen time of the day. Easily check or dismiss your habit directly from the notification.
|
|
||||||
%li
|
|
||||||
%h3 Widgets
|
|
||||||
Be reminded of your habits whenever you unlock your phone. Colorful widgets allow you to track your habits directly from your home screen, without even opening the app.
|
|
||||||
.col-md
|
|
||||||
%ul
|
|
||||||
%li
|
|
||||||
%h3 Take control of your data
|
|
||||||
If you want to further analyze your data, or move it to another service, Loop allows you to export it to spreadsheets (CSV) or to a database file (SQLite). For power users, check marks can be added through task automation apps such as Tasker.
|
|
||||||
%li
|
|
||||||
%h3 No limitations
|
|
||||||
Track as many habits as you wish. Loop imposes no artificial limits on how many habits you can have. All features are available to all users, and there are no in-app purchases.
|
|
||||||
%li
|
|
||||||
%h3 Completely ad-free and open source
|
|
||||||
There are no advertisements, annoying notifications or intrusive permissions in this app, and there will never be. The app is completely open-source (GPLv3).
|
|
||||||
%li
|
|
||||||
%h3 Works offline and respects your privacy
|
|
||||||
Loop doesn't require an Internet connection or online account registration. Your confidential data is never sent to anyone. Neither the developers nor any third-parties have access to it.
|
|
||||||
|
|
||||||
.section.footer
|
|
||||||
Copyright © 2016–2020, Alinson Santos Xavier. All Rights Reserved.
|
|
||||||
|
|
||||||
|
|
||||||
%script(type="text/javascript" src="lib/js/jquery.min.js")
|
|
||||||
%script(type="text/javascript" src="lib/js/bootstrap.bundle.min.js")
|
|
||||||
@@ -1,104 +0,0 @@
|
|||||||
html, body
|
|
||||||
max-width: 100%
|
|
||||||
overflow-x: hidden
|
|
||||||
|
|
||||||
body
|
|
||||||
font-family: 'Open Sans', sans-serif
|
|
||||||
padding-bottom: 0
|
|
||||||
|
|
||||||
a, a:hover
|
|
||||||
text-decoration: none
|
|
||||||
|
|
||||||
.navbar
|
|
||||||
box-shadow: rgba(0,0,0,0.4) 0px 0px 20px
|
|
||||||
background-color: white !important
|
|
||||||
|
|
||||||
.nav-link
|
|
||||||
margin: 0px 18px
|
|
||||||
|
|
||||||
.section
|
|
||||||
background-color: transparent
|
|
||||||
padding: 18px 0px
|
|
||||||
|
|
||||||
.container
|
|
||||||
ul
|
|
||||||
list-style-type: none
|
|
||||||
h3
|
|
||||||
font-size: 16px
|
|
||||||
font-weight: bold
|
|
||||||
margin: 18px 0px 0px 0px
|
|
||||||
|
|
||||||
.screenshots
|
|
||||||
text-align: center
|
|
||||||
background-color: #222
|
|
||||||
img
|
|
||||||
margin: 0.5%
|
|
||||||
border-radius: 10px
|
|
||||||
border: 3px solid #fff2
|
|
||||||
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5)
|
|
||||||
max-width: 17%
|
|
||||||
|
|
||||||
.footer
|
|
||||||
color: #888
|
|
||||||
background-color: #222
|
|
||||||
text-align: center
|
|
||||||
font-size: 12px
|
|
||||||
|
|
||||||
.jumbotron
|
|
||||||
background: linear-gradient(rgba(0,30,200,0.8),rgba(90,30,150,0.5)), url("images/hero-background-filter.jpg")
|
|
||||||
box-shadow: rgba(0,0,0,0.5) 0px 0px 20px
|
|
||||||
margin: 0
|
|
||||||
h1
|
|
||||||
max-width: 25rem
|
|
||||||
font-weight: bold
|
|
||||||
color: white
|
|
||||||
p
|
|
||||||
max-width: 40rem
|
|
||||||
color: white
|
|
||||||
.screenshot
|
|
||||||
box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 20px
|
|
||||||
padding: 0px 0px 0px 0px
|
|
||||||
border-radius: 10px
|
|
||||||
border: 2px solid rgba(255, 255, 255, 0.2)
|
|
||||||
background-color: transparent
|
|
||||||
max-width: 300px
|
|
||||||
.store-badges
|
|
||||||
margin: 2rem 1rem
|
|
||||||
img
|
|
||||||
opacity: 0.8
|
|
||||||
height: 75px
|
|
||||||
img:hover
|
|
||||||
opacity: 1.0
|
|
||||||
.s1
|
|
||||||
padding-bottom: 50px
|
|
||||||
padding-left: 50px
|
|
||||||
.s2
|
|
||||||
position: absolute
|
|
||||||
top: 50px
|
|
||||||
left: 175px
|
|
||||||
|
|
||||||
.feature-header
|
|
||||||
text-align: center
|
|
||||||
font-weight: bold
|
|
||||||
padding: 18px
|
|
||||||
|
|
||||||
.align-right
|
|
||||||
text-align: right
|
|
||||||
|
|
||||||
.vertical-align
|
|
||||||
display: flex
|
|
||||||
align-items: center
|
|
||||||
|
|
||||||
.content
|
|
||||||
max-width: 800px
|
|
||||||
margin: 18px auto
|
|
||||||
padding: 0px 18px
|
|
||||||
//padding-left: 120px
|
|
||||||
h2, h3, h4
|
|
||||||
margin: 27px 0px 9px 0px
|
|
||||||
h2, h3
|
|
||||||
//margin-left: -120px
|
|
||||||
h4
|
|
||||||
//margin-left: -60px
|
|
||||||
font-size: 16px
|
|
||||||
font-weight: bold
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
!!! 5
|
|
||||||
%html
|
|
||||||
%head
|
|
||||||
%meta(charset="UTF-8")
|
|
||||||
%link(href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css")
|
|
||||||
%meta(name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no")
|
|
||||||
%title Privacy | Loop Habit Tracker
|
|
||||||
%link(rel="stylesheet" type="text/css" href="lib/css/bootstrap.min.css")
|
|
||||||
%link(rel="stylesheet" type="text/css" href="index.css")
|
|
||||||
|
|
||||||
%body
|
|
||||||
.navbar.navbar-expand-md.navbar-light.bg-light
|
|
||||||
%a.navbar-brand(href="/")
|
|
||||||
%b Loop
|
|
||||||
Habit Tracker
|
|
||||||
%button.navbar-toggler(type="button" data-toggle="collapse" data-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation")
|
|
||||||
%span.navbar-toggler-icon
|
|
||||||
#navbar.collapse.navbar-collapse
|
|
||||||
%ul.navbar-nav.mr-auto.mt-2.mt-lg-0
|
|
||||||
%li.nav-item
|
|
||||||
%a.nav-link(href="faq.html") FAQ
|
|
||||||
%li.nav-item
|
|
||||||
%a.nav-link(href="privacy.html") Privacy
|
|
||||||
%li.nav-item
|
|
||||||
%a.nav-link(href="https://source.loophabits.org") Source Code
|
|
||||||
%li.nav-item
|
|
||||||
%a.nav-link(href="https://translate.loophabits.org") Translate
|
|
||||||
|
|
||||||
%body
|
|
||||||
.content
|
|
||||||
:markdown
|
|
||||||
#{File.open("src/privacy.md").read}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
## Privacy Policy
|
|
||||||
|
|
||||||
- All data provided to Loop Habit Tracker is only stored locally in your
|
|
||||||
device. Loop Habit Tracker does not upload your data anywhere. The
|
|
||||||
developers of Loop Habit Tracker do not have access to your data.
|
|
||||||
|
|
||||||
- Your data is not shared with any 3rd parties. Loop Habit Tracker does not
|
|
||||||
include any advertisement libraries or any 3rd party tracking (analytics)
|
|
||||||
code, such as Google Analytics or Facebook SDK.
|
|
||||||
|
|
||||||
- If you have activated "backup & reset" in your phone settings (Settings /
|
|
||||||
Backup & Reset / Back up my data), you should be aware that Android itself
|
|
||||||
will periodically save a copy of your phone's data in Google's servers. The
|
|
||||||
developers of Loop Habit Tracker do not have access to this data.
|
|
||||||
@@ -32,12 +32,12 @@ tasks.compileLint {
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
|
|
||||||
compileSdk = 31
|
compileSdk = 32
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
versionCode = 20101
|
versionCode = 20101
|
||||||
versionName = "2.1.1"
|
versionName = "2.1.1"
|
||||||
minSdk = 23
|
minSdk = 28
|
||||||
targetSdk = 31
|
targetSdk = 31
|
||||||
applicationId = "org.isoron.uhabits"
|
applicationId = "org.isoron.uhabits"
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
@@ -68,12 +68,6 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
lint {
|
|
||||||
isCheckReleaseBuilds = false
|
|
||||||
isAbortOnError = false
|
|
||||||
disable("GoogleAppIndexingWarning")
|
|
||||||
}
|
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
isCoreLibraryDesugaringEnabled = true
|
isCoreLibraryDesugaringEnabled = true
|
||||||
targetCompatibility(JavaVersion.VERSION_1_8)
|
targetCompatibility(JavaVersion.VERSION_1_8)
|
||||||
@@ -86,25 +80,25 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
val daggerVersion = "2.41"
|
val daggerVersion = "2.44.2"
|
||||||
val kotlinVersion = "1.6.21"
|
val kotlinVersion = "1.7.21"
|
||||||
val kxCoroutinesVersion = "1.6.1"
|
val kxCoroutinesVersion = "1.6.4"
|
||||||
val ktorVersion = "1.6.8"
|
val ktorVersion = "1.6.8"
|
||||||
val espressoVersion = "3.4.0"
|
val espressoVersion = "3.5.0"
|
||||||
|
|
||||||
androidTestImplementation("androidx.test.espresso:espresso-contrib:$espressoVersion")
|
androidTestImplementation("androidx.test.espresso:espresso-contrib:$espressoVersion")
|
||||||
androidTestImplementation("androidx.test.espresso:espresso-core:$espressoVersion")
|
androidTestImplementation("androidx.test.espresso:espresso-core:$espressoVersion")
|
||||||
androidTestImplementation("com.google.dagger:dagger:$daggerVersion")
|
androidTestImplementation("com.google.dagger:dagger:$daggerVersion")
|
||||||
androidTestImplementation("com.linkedin.dexmaker:dexmaker-mockito:2.28.1")
|
androidTestImplementation("com.linkedin.dexmaker:dexmaker-mockito:2.28.3")
|
||||||
androidTestImplementation("io.ktor:ktor-client-mock:$ktorVersion")
|
androidTestImplementation("io.ktor:ktor-client-mock:$ktorVersion")
|
||||||
androidTestImplementation("io.ktor:ktor-jackson:$ktorVersion")
|
androidTestImplementation("io.ktor:ktor-jackson:$ktorVersion")
|
||||||
androidTestImplementation("androidx.annotation:annotation:1.3.0")
|
androidTestImplementation("androidx.annotation:annotation:1.5.0")
|
||||||
androidTestImplementation("androidx.test.ext:junit:1.1.3")
|
androidTestImplementation("androidx.test.ext:junit:1.1.4")
|
||||||
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.2.0")
|
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.2.0")
|
||||||
androidTestImplementation("androidx.test:rules:1.4.0")
|
androidTestImplementation("androidx.test:rules:1.5.0")
|
||||||
androidTestImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")
|
androidTestImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")
|
||||||
compileOnly("javax.annotation:jsr250-api:1.0")
|
compileOnly("javax.annotation:jsr250-api:1.0")
|
||||||
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.5")
|
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.2.2")
|
||||||
implementation("com.github.AppIntro:AppIntro:6.2.0")
|
implementation("com.github.AppIntro:AppIntro:6.2.0")
|
||||||
implementation("com.google.code.findbugs:jsr305:3.0.2")
|
implementation("com.google.code.findbugs:jsr305:3.0.2")
|
||||||
implementation("com.google.dagger:dagger:$daggerVersion")
|
implementation("com.google.dagger:dagger:$daggerVersion")
|
||||||
@@ -116,11 +110,11 @@ dependencies {
|
|||||||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion")
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion")
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:$kxCoroutinesVersion")
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:$kxCoroutinesVersion")
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kxCoroutinesVersion")
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kxCoroutinesVersion")
|
||||||
implementation("androidx.appcompat:appcompat:1.4.1")
|
implementation("androidx.appcompat:appcompat:1.5.1")
|
||||||
implementation("androidx.legacy:legacy-preference-v14:1.0.0")
|
implementation("androidx.legacy:legacy-preference-v14:1.0.0")
|
||||||
implementation("androidx.legacy:legacy-support-v4:1.0.0")
|
implementation("androidx.legacy:legacy-support-v4:1.0.0")
|
||||||
implementation("com.google.android.material:material:1.5.0")
|
implementation("com.google.android.material:material:1.7.0")
|
||||||
implementation("com.opencsv:opencsv:5.6")
|
implementation("com.opencsv:opencsv:5.7.1")
|
||||||
implementation(project(":uhabits-core"))
|
implementation(project(":uhabits-core"))
|
||||||
kapt("com.google.dagger:dagger-compiler:$daggerVersion")
|
kapt("com.google.dagger:dagger-compiler:$daggerVersion")
|
||||||
kaptAndroidTest("com.google.dagger:dagger-compiler:$daggerVersion")
|
kaptAndroidTest("com.google.dagger:dagger-compiler:$daggerVersion")
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ package org.isoron.uhabits.acceptance.steps
|
|||||||
|
|
||||||
import android.os.Build
|
import android.os.Build
|
||||||
import android.os.Build.VERSION.SDK_INT
|
import android.os.Build.VERSION.SDK_INT
|
||||||
|
import android.os.Build.VERSION_CODES
|
||||||
import androidx.annotation.StringRes
|
import androidx.annotation.StringRes
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
import androidx.test.espresso.Espresso
|
import androidx.test.espresso.Espresso
|
||||||
@@ -73,7 +74,7 @@ object CommonSteps : BaseUserInterfaceTest() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun offsetHeaders() {
|
fun offsetHeaders() {
|
||||||
device.swipe(750, 160, 600, 160, 20)
|
device.swipe(500, 160, 350, 160, 20)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun scrollToText(text: String?) {
|
fun scrollToText(text: String?) {
|
||||||
|
|||||||
@@ -53,6 +53,7 @@ object ListHabitsSteps {
|
|||||||
clickViewWithId(R.id.action_filter)
|
clickViewWithId(R.id.action_filter)
|
||||||
CommonSteps.clickText(R.string.hide_completed)
|
CommonSteps.clickText(R.string.hide_completed)
|
||||||
}
|
}
|
||||||
|
else -> throw RuntimeException()
|
||||||
}
|
}
|
||||||
device.waitForIdle()
|
device.waitForIdle()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,6 @@ import android.animation.Keyframe;
|
|||||||
import android.animation.ObjectAnimator;
|
import android.animation.ObjectAnimator;
|
||||||
import android.animation.PropertyValuesHolder;
|
import android.animation.PropertyValuesHolder;
|
||||||
import android.annotation.SuppressLint;
|
import android.annotation.SuppressLint;
|
||||||
import android.os.Build;
|
|
||||||
import android.text.format.Time;
|
import android.text.format.Time;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
|
|
||||||
@@ -43,17 +42,13 @@ public class Utils {
|
|||||||
|
|
||||||
static final String SHARED_PREFS_NAME = "com.android.calendar_preferences";
|
static final String SHARED_PREFS_NAME = "com.android.calendar_preferences";
|
||||||
|
|
||||||
public static boolean isJellybeanOrLater() {
|
|
||||||
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Try to speak the specified text, for accessibility. Only available on JB or later.
|
* Try to speak the specified text, for accessibility. Only available on JB or later.
|
||||||
* @param text Text to announce.
|
* @param text Text to announce.
|
||||||
*/
|
*/
|
||||||
@SuppressLint("NewApi")
|
@SuppressLint("NewApi")
|
||||||
public static void tryAccessibilityAnnounce(View view, CharSequence text) {
|
public static void tryAccessibilityAnnounce(View view, CharSequence text) {
|
||||||
if (isJellybeanOrLater() && view != null && text != null) {
|
if (view != null && text != null) {
|
||||||
view.announceForAccessibility(text);
|
view.announceForAccessibility(text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -383,10 +383,6 @@ public abstract class DayPickerView extends ListView implements OnScrollListener
|
|||||||
if (child instanceof MonthView) {
|
if (child instanceof MonthView) {
|
||||||
final CalendarDay focus = ((MonthView) child).getAccessibilityFocus();
|
final CalendarDay focus = ((MonthView) child).getAccessibilityFocus();
|
||||||
if (focus != null) {
|
if (focus != null) {
|
||||||
if (Build.VERSION.SDK_INT == Build.VERSION_CODES.JELLY_BEAN_MR1) {
|
|
||||||
// Clear focus to avoid ListView bug in Jelly Bean MR1.
|
|
||||||
((MonthView) child).clearAccessibilityFocus();
|
|
||||||
}
|
|
||||||
return focus;
|
return focus;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ import org.isoron.uhabits.utils.toPaletteColor
|
|||||||
class ColorPickerDialog : ColorPickerDialog() {
|
class ColorPickerDialog : ColorPickerDialog() {
|
||||||
fun setListener(callback: OnColorPickedCallback) {
|
fun setListener(callback: OnColorPickedCallback) {
|
||||||
super.setOnColorSelectedListener { c: Int ->
|
super.setOnColorSelectedListener { c: Int ->
|
||||||
val pc = c.toPaletteColor(context!!)
|
val pc = c.toPaletteColor(requireContext())
|
||||||
callback.onColorPicked(pc)
|
callback.onColorPicked(pc)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -51,12 +51,12 @@ class HistoryEditorDialog : AppCompatDialogFragment(), CommandRunner.Listener {
|
|||||||
|
|
||||||
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
|
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
|
||||||
clearCurrentDialog()
|
clearCurrentDialog()
|
||||||
val component = (activity!!.application as HabitsApplication).component
|
val component = (requireActivity().application as HabitsApplication).component
|
||||||
commandRunner = component.commandRunner
|
commandRunner = component.commandRunner
|
||||||
habit = component.habitList.getById(arguments!!.getLong("habit"))!!
|
habit = component.habitList.getById(requireArguments().getLong("habit"))!!
|
||||||
preferences = component.preferences
|
preferences = component.preferences
|
||||||
|
|
||||||
val themeSwitcher = AndroidThemeSwitcher(activity!!, preferences)
|
val themeSwitcher = AndroidThemeSwitcher(requireActivity(), preferences)
|
||||||
themeSwitcher.apply()
|
themeSwitcher.apply()
|
||||||
|
|
||||||
chart = HistoryChart(
|
chart = HistoryChart(
|
||||||
@@ -71,10 +71,10 @@ class HistoryEditorDialog : AppCompatDialogFragment(), CommandRunner.Listener {
|
|||||||
onDateClickedListener = onDateClickedListener ?: object : OnDateClickedListener {},
|
onDateClickedListener = onDateClickedListener ?: object : OnDateClickedListener {},
|
||||||
padding = 10.0,
|
padding = 10.0,
|
||||||
)
|
)
|
||||||
dataView = AndroidDataView(context!!, null)
|
dataView = AndroidDataView(requireContext(), null)
|
||||||
dataView.view = chart!!
|
dataView.view = chart!!
|
||||||
|
|
||||||
val dialog = Dialog(context!!).apply {
|
val dialog = Dialog(requireContext()).apply {
|
||||||
val metrics = resources.displayMetrics
|
val metrics = resources.displayMetrics
|
||||||
val maxHeight = resources.getDimensionPixelSize(R.dimen.history_editor_max_height)
|
val maxHeight = resources.getDimensionPixelSize(R.dimen.history_editor_max_height)
|
||||||
setContentView(dataView)
|
setContentView(dataView)
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ class WeekdayPickerDialog :
|
|||||||
|
|
||||||
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
|
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
|
||||||
val builder = AlertDialog.Builder(
|
val builder = AlertDialog.Builder(
|
||||||
activity!!
|
requireActivity()
|
||||||
)
|
)
|
||||||
builder
|
builder
|
||||||
.setTitle(R.string.select_weekdays)
|
.setTitle(R.string.select_weekdays)
|
||||||
|
|||||||
@@ -40,13 +40,13 @@ class HabitTypeDialog : AppCompatDialogFragment() {
|
|||||||
val binding = SelectHabitTypeBinding.inflate(inflater, container, false)
|
val binding = SelectHabitTypeBinding.inflate(inflater, container, false)
|
||||||
|
|
||||||
binding.buttonYesNo.setOnClickListener {
|
binding.buttonYesNo.setOnClickListener {
|
||||||
val intent = IntentFactory().startEditActivity(activity!!, HabitType.YES_NO.value)
|
val intent = IntentFactory().startEditActivity(requireActivity(), HabitType.YES_NO.value)
|
||||||
startActivity(intent)
|
startActivity(intent)
|
||||||
dismiss()
|
dismiss()
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.buttonMeasurable.setOnClickListener {
|
binding.buttonMeasurable.setOnClickListener {
|
||||||
val intent = IntentFactory().startEditActivity(activity!!, HabitType.NUMERICAL.value)
|
val intent = IntentFactory().startEditActivity(requireActivity(), HabitType.NUMERICAL.value)
|
||||||
startActivity(intent)
|
startActivity(intent)
|
||||||
dismiss()
|
dismiss()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -221,6 +221,7 @@ class ShowHabitActivity : AppCompatActivity(), CommandRunner.Listener {
|
|||||||
ShowHabitMenuPresenter.Message.COULD_NOT_EXPORT -> {
|
ShowHabitMenuPresenter.Message.COULD_NOT_EXPORT -> {
|
||||||
showMessage(resources.getString(R.string.could_not_export))
|
showMessage(resources.getString(R.string.could_not_export))
|
||||||
}
|
}
|
||||||
|
else -> {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -22,8 +22,7 @@ import android.app.backup.BackupManager
|
|||||||
import android.content.Intent
|
import android.content.Intent
|
||||||
import android.content.SharedPreferences
|
import android.content.SharedPreferences
|
||||||
import android.content.SharedPreferences.OnSharedPreferenceChangeListener
|
import android.content.SharedPreferences.OnSharedPreferenceChangeListener
|
||||||
import android.os.Build
|
import android.net.Uri
|
||||||
import android.os.Build.VERSION.SDK_INT
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.provider.Settings
|
import android.provider.Settings
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
@@ -45,6 +44,7 @@ import org.isoron.uhabits.core.utils.DateUtils.Companion.getLongWeekdayNames
|
|||||||
import org.isoron.uhabits.notifications.AndroidNotificationTray.Companion.createAndroidNotificationChannel
|
import org.isoron.uhabits.notifications.AndroidNotificationTray.Companion.createAndroidNotificationChannel
|
||||||
import org.isoron.uhabits.notifications.RingtoneManager
|
import org.isoron.uhabits.notifications.RingtoneManager
|
||||||
import org.isoron.uhabits.utils.StyledResources
|
import org.isoron.uhabits.utils.StyledResources
|
||||||
|
import org.isoron.uhabits.utils.startActivitySafely
|
||||||
import org.isoron.uhabits.widgets.WidgetUpdater
|
import org.isoron.uhabits.widgets.WidgetUpdater
|
||||||
import java.util.Calendar
|
import java.util.Calendar
|
||||||
|
|
||||||
@@ -65,7 +65,7 @@ class SettingsFragment : PreferenceFragmentCompat(), OnSharedPreferenceChangeLis
|
|||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
addPreferencesFromResource(R.xml.preferences)
|
addPreferencesFromResource(R.xml.preferences)
|
||||||
val appContext = context!!.applicationContext
|
val appContext = requireContext().applicationContext
|
||||||
if (appContext is HabitsApplication) {
|
if (appContext is HabitsApplication) {
|
||||||
prefs = appContext.component.preferences
|
prefs = appContext.component.preferences
|
||||||
widgetUpdater = appContext.component.widgetUpdater
|
widgetUpdater = appContext.component.widgetUpdater
|
||||||
@@ -94,24 +94,31 @@ class SettingsFragment : PreferenceFragmentCompat(), OnSharedPreferenceChangeLis
|
|||||||
|
|
||||||
override fun onPreferenceTreeClick(preference: Preference): Boolean {
|
override fun onPreferenceTreeClick(preference: Preference): Boolean {
|
||||||
val key = preference.key ?: return false
|
val key = preference.key ?: return false
|
||||||
if (key == "reminderSound") {
|
when (key) {
|
||||||
|
"reminderSound" -> {
|
||||||
showRingtonePicker()
|
showRingtonePicker()
|
||||||
return true
|
return true
|
||||||
} else if (key == "reminderCustomize") {
|
}
|
||||||
if (SDK_INT < Build.VERSION_CODES.O) return true
|
"reminderCustomize" -> {
|
||||||
createAndroidNotificationChannel(context!!)
|
createAndroidNotificationChannel(requireContext())
|
||||||
val intent = Intent(Settings.ACTION_CHANNEL_NOTIFICATION_SETTINGS)
|
val intent = Intent(Settings.ACTION_CHANNEL_NOTIFICATION_SETTINGS)
|
||||||
intent.putExtra(Settings.EXTRA_APP_PACKAGE, context!!.packageName)
|
intent.putExtra(Settings.EXTRA_APP_PACKAGE, requireContext().packageName)
|
||||||
intent.putExtra(Settings.EXTRA_CHANNEL_ID, NotificationTray.REMINDERS_CHANNEL_ID)
|
intent.putExtra(Settings.EXTRA_CHANNEL_ID, NotificationTray.REMINDERS_CHANNEL_ID)
|
||||||
startActivity(intent)
|
startActivity(intent)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
"rateApp" -> {
|
||||||
|
val intent = Intent(Intent.ACTION_VIEW, Uri.parse(getString(R.string.playStoreURL)))
|
||||||
|
activity?.startActivitySafely(intent)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
return super.onPreferenceTreeClick(preference)
|
return super.onPreferenceTreeClick(preference)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onResume() {
|
override fun onResume() {
|
||||||
super.onResume()
|
super.onResume()
|
||||||
ringtoneManager = RingtoneManager(activity!!)
|
ringtoneManager = RingtoneManager(requireActivity())
|
||||||
sharedPrefs = preferenceManager.sharedPreferences
|
sharedPrefs = preferenceManager.sharedPreferences
|
||||||
sharedPrefs!!.registerOnSharedPreferenceChangeListener(this)
|
sharedPrefs!!.registerOnSharedPreferenceChangeListener(this)
|
||||||
if (!prefs.isDeveloper) {
|
if (!prefs.isDeveloper) {
|
||||||
@@ -120,12 +127,8 @@ class SettingsFragment : PreferenceFragmentCompat(), OnSharedPreferenceChangeLis
|
|||||||
}
|
}
|
||||||
updateWeekdayPreference()
|
updateWeekdayPreference()
|
||||||
|
|
||||||
if (SDK_INT < Build.VERSION_CODES.O)
|
|
||||||
findPreference("reminderCustomize").isVisible = false
|
|
||||||
else {
|
|
||||||
findPreference("reminderSound").isVisible = false
|
findPreference("reminderSound").isVisible = false
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
private fun updateWeekdayPreference() {
|
private fun updateWeekdayPreference() {
|
||||||
val weekdayPref = findPreference("pref_first_weekday") as ListPreference
|
val weekdayPref = findPreference("pref_first_weekday") as ListPreference
|
||||||
@@ -154,8 +157,8 @@ class SettingsFragment : PreferenceFragmentCompat(), OnSharedPreferenceChangeLis
|
|||||||
val pref = findPreference(key)
|
val pref = findPreference(key)
|
||||||
pref.onPreferenceClickListener =
|
pref.onPreferenceClickListener =
|
||||||
Preference.OnPreferenceClickListener {
|
Preference.OnPreferenceClickListener {
|
||||||
activity!!.setResult(result)
|
requireActivity().setResult(result)
|
||||||
activity!!.finish()
|
requireActivity().finish()
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -168,7 +168,6 @@ class AndroidNotificationTray
|
|||||||
fun createAndroidNotificationChannel(context: Context) {
|
fun createAndroidNotificationChannel(context: Context) {
|
||||||
val notificationManager = context.getSystemService(Activity.NOTIFICATION_SERVICE)
|
val notificationManager = context.getSystemService(Activity.NOTIFICATION_SERVICE)
|
||||||
as NotificationManager
|
as NotificationManager
|
||||||
if (SDK_INT >= Build.VERSION_CODES.O) {
|
|
||||||
val channel = NotificationChannel(
|
val channel = NotificationChannel(
|
||||||
REMINDERS_CHANNEL_ID,
|
REMINDERS_CHANNEL_ID,
|
||||||
context.resources.getString(R.string.reminder),
|
context.resources.getString(R.string.reminder),
|
||||||
@@ -178,4 +177,3 @@ class AndroidNotificationTray
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
@@ -33,7 +33,8 @@ import org.isoron.uhabits.HabitsApplication
|
|||||||
import org.isoron.uhabits.R
|
import org.isoron.uhabits.R
|
||||||
import org.isoron.uhabits.activities.AndroidThemeSwitcher
|
import org.isoron.uhabits.activities.AndroidThemeSwitcher
|
||||||
import org.isoron.uhabits.core.models.Habit
|
import org.isoron.uhabits.core.models.Habit
|
||||||
import org.isoron.uhabits.core.ui.ThemeSwitcher.Companion.THEME_LIGHT
|
import org.isoron.uhabits.core.ui.views.DarkTheme
|
||||||
|
import org.isoron.uhabits.core.ui.views.LightTheme
|
||||||
import org.isoron.uhabits.receivers.ReminderController
|
import org.isoron.uhabits.receivers.ReminderController
|
||||||
import org.isoron.uhabits.utils.SystemUtils
|
import org.isoron.uhabits.utils.SystemUtils
|
||||||
import java.util.Calendar
|
import java.util.Calendar
|
||||||
@@ -51,11 +52,8 @@ class SnoozeDelayPickerActivity : FragmentActivity(), OnItemClickListener {
|
|||||||
val app = applicationContext as HabitsApplication
|
val app = applicationContext as HabitsApplication
|
||||||
val appComponent = app.component
|
val appComponent = app.component
|
||||||
val themeSwitcher = AndroidThemeSwitcher(this, appComponent.preferences)
|
val themeSwitcher = AndroidThemeSwitcher(this, appComponent.preferences)
|
||||||
if (themeSwitcher.getSystemTheme() == THEME_LIGHT) {
|
themeSwitcher.setTheme()
|
||||||
setTheme(R.style.BaseDialog)
|
|
||||||
} else {
|
|
||||||
setTheme(R.style.BaseDialogDark)
|
|
||||||
}
|
|
||||||
val data = intent.data
|
val data = intent.data
|
||||||
if (data == null) {
|
if (data == null) {
|
||||||
finish()
|
finish()
|
||||||
@@ -75,6 +73,16 @@ class SnoozeDelayPickerActivity : FragmentActivity(), OnItemClickListener {
|
|||||||
SystemUtils.unlockScreen(this)
|
SystemUtils.unlockScreen(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun AndroidThemeSwitcher.setTheme() {
|
||||||
|
if (this.isNightMode) {
|
||||||
|
setTheme(R.style.BaseDialogDark)
|
||||||
|
this.currentTheme = DarkTheme()
|
||||||
|
} else {
|
||||||
|
setTheme(R.style.BaseDialog)
|
||||||
|
this.currentTheme = LightTheme()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun showTimePicker() {
|
private fun showTimePicker() {
|
||||||
val calendar = Calendar.getInstance()
|
val calendar = Calendar.getInstance()
|
||||||
val dialog = TimePickerDialog.newInstance(
|
val dialog = TimePickerDialog.newInstance(
|
||||||
|
|||||||
@@ -21,18 +21,11 @@ package org.isoron.uhabits.utils
|
|||||||
import android.app.Activity
|
import android.app.Activity
|
||||||
import android.app.KeyguardManager
|
import android.app.KeyguardManager
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.os.Build
|
|
||||||
import android.os.Build.VERSION.SDK_INT
|
|
||||||
import android.view.WindowManager
|
|
||||||
|
|
||||||
object SystemUtils {
|
object SystemUtils {
|
||||||
|
|
||||||
fun unlockScreen(activity: Activity) {
|
fun unlockScreen(activity: Activity) {
|
||||||
if (SDK_INT >= Build.VERSION_CODES.O) {
|
|
||||||
val km = activity.getSystemService(Context.KEYGUARD_SERVICE) as KeyguardManager
|
val km = activity.getSystemService(Context.KEYGUARD_SERVICE) as KeyguardManager
|
||||||
km.requestDismissKeyguard(activity, null)
|
km.requestDismissKeyguard(activity, null)
|
||||||
} else {
|
|
||||||
activity.window.addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,9 +21,7 @@ package org.isoron.uhabits.widgets
|
|||||||
|
|
||||||
import android.app.PendingIntent
|
import android.app.PendingIntent
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.os.Build
|
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import androidx.annotation.RequiresApi
|
|
||||||
import org.isoron.platform.gui.toInt
|
import org.isoron.platform.gui.toInt
|
||||||
import org.isoron.uhabits.core.models.Entry
|
import org.isoron.uhabits.core.models.Entry
|
||||||
import org.isoron.uhabits.core.models.Habit
|
import org.isoron.uhabits.core.models.Habit
|
||||||
@@ -49,7 +47,6 @@ open class CheckmarkWidget(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequiresApi(Build.VERSION_CODES.O)
|
|
||||||
override fun refreshData(widgetView: View) {
|
override fun refreshData(widgetView: View) {
|
||||||
(widgetView as CheckmarkWidgetView).apply {
|
(widgetView as CheckmarkWidgetView).apply {
|
||||||
val today = DateUtils.getTodayWithOffset()
|
val today = DateUtils.getTodayWithOffset()
|
||||||
|
|||||||
@@ -7,3 +7,4 @@
|
|||||||
* Add skips to measurable habits
|
* Add skips to measurable habits
|
||||||
* Bring back custom frequencies
|
* Bring back custom frequencies
|
||||||
* Other minor improvements and bug fixes
|
* Other minor improvements and bug fixes
|
||||||
|
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
<!--
|
|
||||||
~ Copyright (C) 2016-2021 Álinson Santos Xavier <git@axavier.org>
|
|
||||||
~
|
|
||||||
~ This file is part of Loop Habit Tracker.
|
|
||||||
~
|
|
||||||
~ Loop Habit Tracker is free software: you can redistribute it and/or modify
|
|
||||||
~ it under the terms of the GNU General Public License as published by the
|
|
||||||
~ Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
~ option) any later version.
|
|
||||||
~
|
|
||||||
~ Loop Habit Tracker is distributed in the hope that it will be useful, but
|
|
||||||
~ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
||||||
~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
||||||
~ more details.
|
|
||||||
~
|
|
||||||
~ You should have received a copy of the GNU General Public License along
|
|
||||||
~ with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
-->
|
|
||||||
|
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
||||||
<item
|
|
||||||
android:top="1dp"
|
|
||||||
android:left="1dp"
|
|
||||||
android:bottom="3dp"
|
|
||||||
android:right="3dp">
|
|
||||||
<ripple
|
|
||||||
android:color="#60ffffff">
|
|
||||||
|
|
||||||
<item android:id="@android:id/mask">
|
|
||||||
<shape android:shape="rectangle">
|
|
||||||
<corners android:radius="5dp"/>
|
|
||||||
<solid android:color="?android:colorPrimary"/>
|
|
||||||
</shape>
|
|
||||||
<color android:color="@color/white"/>
|
|
||||||
</item>
|
|
||||||
</ripple>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</layer-list>
|
|
||||||
@@ -17,18 +17,23 @@
|
|||||||
~ with this program. If not, see <http://www.gnu.org/licenses/>.
|
~ with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<item android:state_enabled="true" android:state_pressed="true">
|
<item
|
||||||
<layer-list>
|
android:top="1dp"
|
||||||
<item android:bottom="3dp"
|
|
||||||
android:left="1dp"
|
android:left="1dp"
|
||||||
android:right="3dp"
|
android:bottom="3dp"
|
||||||
android:top="1dp">
|
android:right="3dp">
|
||||||
|
<ripple
|
||||||
|
android:color="#60ffffff">
|
||||||
|
|
||||||
|
<item android:id="@android:id/mask">
|
||||||
<shape android:shape="rectangle">
|
<shape android:shape="rectangle">
|
||||||
<corners android:radius="5dp"/>
|
<corners android:radius="5dp"/>
|
||||||
<solid android:color="#30ffffff"/>
|
<solid android:color="?android:colorPrimary"/>
|
||||||
</shape>
|
</shape>
|
||||||
|
<color android:color="@color/white"/>
|
||||||
</item>
|
</item>
|
||||||
|
</ripple>
|
||||||
|
</item>
|
||||||
|
|
||||||
</layer-list>
|
</layer-list>
|
||||||
</item>
|
|
||||||
</selector>
|
|
||||||
|
|||||||
0
uhabits-android/src/main/res/mipmap-anydpi
Normal file
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!--
|
|
||||||
~ Copyright (C) 2016-2021 Álinson Santos Xavier <git@axavier.org>
|
|
||||||
~
|
|
||||||
~ This file is part of Loop Habit Tracker.
|
|
||||||
~
|
|
||||||
~ Loop Habit Tracker is free software: you can redistribute it and/or modify
|
|
||||||
~ it under the terms of the GNU General Public License as published by the
|
|
||||||
~ Free Software Foundation, either version 3 of the License, or (at your
|
|
||||||
~ option) any later version.
|
|
||||||
~
|
|
||||||
~ Loop Habit Tracker is distributed in the hope that it will be useful, but
|
|
||||||
~ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
||||||
~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
||||||
~ more details.
|
|
||||||
~
|
|
||||||
~ You should have received a copy of the GNU General Public License along
|
|
||||||
~ with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
-->
|
|
||||||
|
|
||||||
<resources>
|
|
||||||
|
|
||||||
</resources>
|
|
||||||
@@ -160,11 +160,9 @@
|
|||||||
</Preference>
|
</Preference>
|
||||||
|
|
||||||
<Preference
|
<Preference
|
||||||
|
android:key="rateApp"
|
||||||
android:title="@string/pref_rate_this_app"
|
android:title="@string/pref_rate_this_app"
|
||||||
app:iconSpaceReserved="false">
|
app:iconSpaceReserved="false">
|
||||||
<intent
|
|
||||||
android:action="android.intent.action.VIEW"
|
|
||||||
android:data="@string/playStoreURL" />
|
|
||||||
</Preference>
|
</Preference>
|
||||||
|
|
||||||
<Preference
|
<Preference
|
||||||
|
|||||||
3
uhabits-core/assets/test/habitbull4.csv
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
HabitName,HabitDescription,HabitCategory,CalendarDate,Value,CommentText
|
||||||
|
Caffeine,,Coffee Consumption,2022-11-21,80,
|
||||||
|
Caffeine,,Coffee Consumption,2022-11-22,80,
|
||||||
|
@@ -43,13 +43,13 @@ kotlin {
|
|||||||
val jvmMain by getting {
|
val jvmMain by getting {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(kotlin("stdlib-jdk8"))
|
implementation(kotlin("stdlib-jdk8"))
|
||||||
compileOnly("com.google.dagger:dagger:2.41")
|
compileOnly("com.google.dagger:dagger:2.44.2")
|
||||||
implementation("com.google.guava:guava:31.1-android")
|
implementation("com.google.guava:guava:31.1-android")
|
||||||
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.6.21")
|
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.7.21")
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.1")
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4")
|
||||||
implementation("androidx.annotation:annotation:1.3.0")
|
implementation("androidx.annotation:annotation:1.5.0")
|
||||||
implementation("com.google.code.findbugs:jsr305:3.0.2")
|
implementation("com.google.code.findbugs:jsr305:3.0.2")
|
||||||
implementation("com.opencsv:opencsv:5.6")
|
implementation("com.opencsv:opencsv:5.7.1")
|
||||||
implementation("commons-codec:commons-codec:1.15")
|
implementation("commons-codec:commons-codec:1.15")
|
||||||
implementation("org.apache.commons:commons-lang3:3.12.0")
|
implementation("org.apache.commons:commons-lang3:3.12.0")
|
||||||
}
|
}
|
||||||
@@ -59,7 +59,7 @@ kotlin {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation(kotlin("test"))
|
implementation(kotlin("test"))
|
||||||
implementation(kotlin("test-junit"))
|
implementation(kotlin("test-junit"))
|
||||||
implementation("org.xerial:sqlite-jdbc:3.36.0.3")
|
implementation("org.xerial:sqlite-jdbc:3.40.0.0")
|
||||||
implementation("org.hamcrest:hamcrest:2.2")
|
implementation("org.hamcrest:hamcrest:2.2")
|
||||||
implementation("org.apache.commons:commons-io:1.3.2")
|
implementation("org.apache.commons:commons-io:1.3.2")
|
||||||
implementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")
|
implementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")
|
||||||
|
|||||||
@@ -86,10 +86,12 @@ class HabitBullCSVImporter
|
|||||||
logger.info("Found a value of $value, considering this habit as numerical.")
|
logger.info("Found a value of $value, considering this habit as numerical.")
|
||||||
h.type = HabitType.NUMERICAL
|
h.type = HabitType.NUMERICAL
|
||||||
}
|
}
|
||||||
h.originalEntries.add(Entry(timestamp, value, notes))
|
h.originalEntries.add(Entry(timestamp, value * 1000, notes))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
map.forEach { (_, habit) -> habit.recompute() }
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun parseTimestamp(rawValue: String): Timestamp {
|
private fun parseTimestamp(rawValue: String): Timestamp {
|
||||||
|
|||||||
@@ -85,8 +85,8 @@ class ImportTest : BaseUnitTest() {
|
|||||||
assertThat(habit.type, equalTo(HabitType.NUMERICAL))
|
assertThat(habit.type, equalTo(HabitType.NUMERICAL))
|
||||||
assertThat(habit.description, equalTo(""))
|
assertThat(habit.description, equalTo(""))
|
||||||
assertThat(habit.frequency, equalTo(Frequency.DAILY))
|
assertThat(habit.frequency, equalTo(Frequency.DAILY))
|
||||||
assertThat(getValue(habit, 2021, 9, 1), equalTo(30))
|
assertThat(getValue(habit, 2021, 9, 1), equalTo(30000))
|
||||||
assertThat(getValue(habit, 2022, 1, 8), equalTo(100))
|
assertThat(getValue(habit, 2022, 1, 8), equalTo(100000))
|
||||||
|
|
||||||
val habit2 = habitList.getByPosition(1)
|
val habit2 = habitList.getByPosition(1)
|
||||||
assertThat(habit2.name, equalTo("run"))
|
assertThat(habit2.name, equalTo("run"))
|
||||||
@@ -98,6 +98,21 @@ class ImportTest : BaseUnitTest() {
|
|||||||
assertTrue(isChecked(habit2, 2022, 1, 19))
|
assertTrue(isChecked(habit2, 2022, 1, 19))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Throws(IOException::class)
|
||||||
|
fun testHabitBullCSV4() {
|
||||||
|
importFromFile("habitbull4.csv")
|
||||||
|
assertThat(habitList.size(), equalTo(1))
|
||||||
|
|
||||||
|
val habit = habitList.getByPosition(0)
|
||||||
|
assertThat(habit.name, equalTo("Caffeine"))
|
||||||
|
assertThat(habit.type, equalTo(HabitType.NUMERICAL))
|
||||||
|
assertThat(habit.description, equalTo(""))
|
||||||
|
assertThat(habit.frequency, equalTo(Frequency.DAILY))
|
||||||
|
assertThat(getValue(habit, 2022, 11, 21), equalTo(80000))
|
||||||
|
assertThat(getValue(habit, 2022, 11, 22), equalTo(80000))
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Throws(IOException::class)
|
@Throws(IOException::class)
|
||||||
fun testLoopDB() {
|
fun testLoopDB() {
|
||||||
|
|||||||
@@ -34,8 +34,8 @@ application {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
val ktorVersion = "1.6.8"
|
val ktorVersion = "1.6.8"
|
||||||
val kotlinVersion = "1.6.21"
|
val kotlinVersion = "1.7.21"
|
||||||
val logbackVersion = "1.2.11"
|
val logbackVersion = "1.4.5"
|
||||||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion")
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion")
|
||||||
implementation("io.ktor:ktor-server-netty:$ktorVersion")
|
implementation("io.ktor:ktor-server-netty:$ktorVersion")
|
||||||
implementation("ch.qos.logback:logback-classic:$logbackVersion")
|
implementation("ch.qos.logback:logback-classic:$logbackVersion")
|
||||||
@@ -43,9 +43,9 @@ dependencies {
|
|||||||
implementation("io.ktor:ktor-html-builder:$ktorVersion")
|
implementation("io.ktor:ktor-html-builder:$ktorVersion")
|
||||||
implementation("io.ktor:ktor-jackson:$ktorVersion")
|
implementation("io.ktor:ktor-jackson:$ktorVersion")
|
||||||
implementation("org.jetbrains:kotlin-css-jvm:1.0.0-pre.148-kotlin-1.4.30")
|
implementation("org.jetbrains:kotlin-css-jvm:1.0.0-pre.148-kotlin-1.4.30")
|
||||||
implementation("io.prometheus:simpleclient:0.15.0")
|
implementation("io.prometheus:simpleclient:0.16.0")
|
||||||
implementation("io.prometheus:simpleclient_httpserver:0.15.0")
|
implementation("io.prometheus:simpleclient_httpserver:0.16.0")
|
||||||
implementation("io.prometheus:simpleclient_hotspot:0.15.0")
|
implementation("io.prometheus:simpleclient_hotspot:0.16.0")
|
||||||
testImplementation("io.ktor:ktor-server-tests:$ktorVersion")
|
testImplementation("io.ktor:ktor-server-tests:$ktorVersion")
|
||||||
testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")
|
testImplementation("com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0")
|
||||||
testImplementation(kotlin("test"))
|
testImplementation(kotlin("test"))
|
||||||
|
|||||||