Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/development' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
Aktheysay committed Jan 10, 2025
2 parents 73169db + 41b13e1 commit d475a1d
Show file tree
Hide file tree
Showing 20 changed files with 55 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: "๐Ÿงช Code coverage"
run: ./gradlew test
- name: "๐Ÿ“ค Upload code coverage"
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: "๐Ÿงช Android LINT"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: "๐Ÿงช Code coverage"
run: ./gradlew jacocoTestReport
- name: "๐Ÿ“ค Upload code coverage"
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
yml: .codecov.yml
Expand Down
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*.aar
*.ap_
*.aab
app/release

# Files for the ART/Dalvik VM
*.dex
Expand Down Expand Up @@ -49,7 +50,7 @@ render.experimental.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
.idea/libraries/
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
Expand Down Expand Up @@ -92,4 +93,7 @@ lint/tmp/

# Android Profiling
*.hprof
*.dm
*.dm

# Kotlin
.kotlin/sessions/
Binary file added .idea/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/Crazy-Marvin/ToDont/CI/development)](https://github.com/Crazy-Marvin/ToDont/actions)
[![License](https://img.shields.io/github/license/Crazy-Marvin/ToDont.svg)](https://github.com/Crazy-Marvin/ToDont/blob/development/LICENSE)
[![Figma Mockups](https://img.shields.io/badge/Figma-black?logo=figma)](https://www.figma.com/file/RoX4IQYdduFH1TxXV3fxla/To-Don%E2%80%99t?node-id=0%3A1)
[![Last commit](https://img.shields.io/github/last-commit/Crazy-Marvin/ToDont.svg?style=flat)](https://github.com/Crazy-Marvin/ToDont/commits)
[![Releases](https://img.shields.io/github/downloads/Crazy-Marvin/ToDont/total.svg?style=flat)](https://github.com/Crazy-Marvin/ToDont/releases)
[![Latest tag](https://img.shields.io/github/tag/Crazy-Marvin/ToDont.svg?style=flat)](https://github.com/Crazy-Marvin/ToDont/tags)
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
applicationId "rocks.poopjournal.todont"
minSdkVersion 26
targetSdkVersion 35
versionCode 401
versionName "4.0.1"
versionCode 400
versionName "4.0.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
multiDexEnabled true
Expand Down Expand Up @@ -62,7 +62,7 @@ android {
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.core:core-ktx:1.15.0'
implementation 'androidx.core:core:1.10.1' // Check for the latest version
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.appcompat:appcompat:1.7.0'
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values-dum/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<resources></resources>
2 changes: 2 additions & 0 deletions app/src/main/res/values-eo/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<resources></resources>
6 changes: 1 addition & 5 deletions app/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
<item>Italiano</item>
<item>Francรฉs</item>
</string-array>

<string-array name="month_names">
<item>Enero</item>
<item>Febrero</item>
Expand All @@ -25,7 +24,6 @@
<item>Noviembre</item>
<item>Diciembre</item>
</string-array>

<string name="delete_habit">ยฟEstรกs seguro de que quieres eliminar este hรกbito?</string>
<string name="LightMode">To Don\'t</string>
<string name="onboarding_reverse">Invertir la lista To Do</string>
Expand Down Expand Up @@ -79,12 +77,10 @@
<item>Comida y Bebidas</item>
<item>Estudio</item>
</string-array>

<!-- Toasts -->
<string name="toast_system">To Don\'t ahora sigue tu sistema.</string>
<string name="toast_light">To Don\'t ahora estรก en modo claro.</string>
<string name="toast_dark">To Don\'t ahora estรก en modo oscuro.</string>

<!-- Here are the non-translateable strings -->

<!-- Here are the contentDescription strings -->
Expand Down Expand Up @@ -136,4 +132,4 @@
<string name="back_up">Respaldo</string>
<string name="restore">Restaurar</string>
<string name="dracula">Dracula</string>
</resources>
</resources>
2 changes: 2 additions & 0 deletions app/src/main/res/values-ia/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<resources></resources>
6 changes: 1 addition & 5 deletions app/src/main/res/values-it/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
<item>Italiano</item>
<item>Francese</item>
</string-array>

<string-array name="month_names">
<item>Gennaio</item>
<item>Febbraio</item>
Expand All @@ -25,7 +24,6 @@
<item>Novembre</item>
<item>Dicembre</item>
</string-array>

<string name="delete_habit">Sei sicuro di voler eliminare questa abitudine?</string>
<string name="LightMode">To Don\'t</string>
<string name="onboarding_reverse">Inverti la lista To Do</string>
Expand Down Expand Up @@ -79,12 +77,10 @@
<item>Cibo e Bevande</item>
<item>Studio</item>
</string-array>

<!-- Toasts -->
<string name="toast_system">To Don\'t ora segue il tuo sistema.</string>
<string name="toast_light">To Don\'t ora รจ in modalitร  chiara.</string>
<string name="toast_dark">To Don\'t ora รจ in modalitร  scura.</string>

<!-- Here are the non-translateable strings -->

<!-- Here are the contentDescription strings -->
Expand Down Expand Up @@ -136,4 +132,4 @@
<string name="back_up">Backup</string>
<string name="restore">Ripristina</string>
<string name="dracula">Dracula</string>
</resources>
</resources>
2 changes: 2 additions & 0 deletions app/src/main/res/values-lt/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<resources></resources>
2 changes: 2 additions & 0 deletions app/src/main/res/values-pt-rBR/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<resources></resources>
2 changes: 2 additions & 0 deletions app/src/main/res/values-zh-rCN/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<resources></resources>
2 changes: 2 additions & 0 deletions app/src/main/res/values-zh-rTW/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<resources></resources>
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "2.0.20"
ext.kotlin_version = "2.1.0"
repositories {
jcenter()
google()
mavenCentral()

}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.20"
classpath 'com.android.tools.build:gradle:8.7.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.0"
// classpath 'com.google.gms:google-services:4.4.1'


Expand Down
13 changes: 13 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/300.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Enhanced:
- Extended Tutorial ๐Ÿฆฎ
- Android 15 Support ๐Ÿค–
- Translation Updates ๐Ÿ—บ๏ธ
- Refined UX ๐ŸŽจ

New features:
- Multiple avoids & dones per day ๐Ÿชฌ
- Notifications ๐Ÿ›Ž๏ธ
- Local Backup & Restore ๐Ÿ›Ÿ

A huge thank you to all contributors and translators. ๐Ÿ˜˜
Feel welcome to report issues and submit fixes on https://github.com/Crazy-Marvin/ToDont/ or translations on https://hosted.weblate.org/engage/todont/. ๐Ÿš€
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/400.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Rewrite of To Don't in Kotlin to enhance maintainablity, performance, efficiency, UX and security ๐Ÿ’ฃ
9 changes: 9 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/410.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
New feature: add a cover image for entries ๐Ÿ–ผ๏ธ
New feature: homescreen widget ๐Ÿก
Translation updates ๐Ÿ—บ๏ธ
Bug fixes ๐Ÿคข
Updated dependencies ๐Ÿ”ฉ
Housekeeping ๐Ÿงน

A huge thank you to all contributors and translators, especially @theftzoku. ๐Ÿ˜˜
Feel welcome to report issues and submit fixes on https://github.com/Crazy-Marvin/ToDont/ or translations on https://hosted.weblate.org/engage/todont/. ๐Ÿš€
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Sep 06 00:28:53 BST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit d475a1d

Please sign in to comment.