Updated version code for v5.1

This commit is contained in:
Om Godse 2023-02-25 12:21:23 +05:30
parent b3424c2fb6
commit 2c07199999
8 changed files with 17 additions and 8 deletions

View file

@ -6,7 +6,7 @@
5. 🇨🇿 Czech by [tomo90](https://github.com/tomo90) 5. 🇨🇿 Czech by [tomo90](https://github.com/tomo90)
6. 🇯🇵 Japanese by [kato-k](https://github.com/kato-k) 6. 🇯🇵 Japanese by [kato-k](https://github.com/kato-k)
7. 🇦🇩 Catalan by retiolus 7. 🇦🇩 Catalan by retiolus
8. 🇵🇱 Polish by [ZiomaleQ](https://github.com/ZiomaleQ) 8. 🇵🇱 Polish by [ZiomaleQ](https://github.com/ZiomaleQ), [rehork](https://github.com/rehork)
9. 🇸🇰 Slovak by [Juraj Liso](https://github.com/LiJu09) 9. 🇸🇰 Slovak by [Juraj Liso](https://github.com/LiJu09)
10. 🇮🇩 Indonesian by [zmni](https://github.com/zmni) 10. 🇮🇩 Indonesian by [zmni](https://github.com/zmni)
11. 🇮🇹 Italian by Luigi Sforza, [IlmastroStefanuzzo](https://github.com/IlmastroStefanuzzo) 11. 🇮🇹 Italian by Luigi Sforza, [IlmastroStefanuzzo](https://github.com/IlmastroStefanuzzo)

View file

@ -29,5 +29,5 @@ All translations are crowd sourced. To contribute or point out any errors, email
### Roadmap ### Roadmap
These are in works but they'll take time as this is a side project. These are in works but they'll take time as this is a side project.
- [ ] Images - [ ] Images
- [ ] Auto backup - [X] Auto backup
- [ ] Batch selection - [ ] Batch selection

View file

@ -13,8 +13,8 @@ android {
applicationId "com.omgodse.notally" applicationId "com.omgodse.notally"
minSdk 21 minSdk 21
targetSdk 32 targetSdk 32
versionCode 45 versionCode 46
versionName "5.0" versionName "5.1"
resConfigs "en", "ca", "cs", "da", "de", "el", "es", "fr", "hu", "in", "it", "ja", "nb", "nl", "nn", "pl", "pt-rBR", "pt-rPT", "ru", "sk", "sv", "tl", "tr", "uk", "vi", "zh-rCN" resConfigs "en", "ca", "cs", "da", "de", "el", "es", "fr", "hu", "in", "it", "ja", "nb", "nl", "nn", "pl", "pt-rBR", "pt-rPT", "ru", "sk", "sv", "tl", "tr", "uk", "vi", "zh-rCN"
vectorDrawables.generatedDensities = [] vectorDrawables.generatedDensities = []
} }
@ -62,6 +62,5 @@ dependencies {
implementation "org.ocpsoft.prettytime:prettytime:4.0.6.Final" implementation "org.ocpsoft.prettytime:prettytime:4.0.6.Final"
implementation "com.google.android.material:material:1.4.0" implementation "com.google.android.material:material:1.4.0"
implementation "org.greenrobot:eventbus:3.3.1"
implementation "ru.rambler.android:swipe-layout:1.1.0" implementation "ru.rambler.android:swipe-layout:1.1.0"
} }

View file

@ -97,7 +97,7 @@ class NotallyModel(app: Application, private val type: Type) : AndroidViewModel(
private fun getBaseNote(): BaseNote { private fun getBaseNote(): BaseNote {
val spans = getFilteredSpans(body) val spans = getFilteredSpans(body)
val trimmedBody = body.toString().trimEnd() val trimmedBody = body.toString().trimEnd()
val filteredItems = items.filter { (body) -> body.isNotBlank() } val filteredItems = items.filter { item -> item.body.isNotEmpty() }
return BaseNote(id, type, folder, color, title, pinned, timestamp, labels, trimmedBody, spans, filteredItems) return BaseNote(id, type, folder, color, title, pinned, timestamp, labels, trimmedBody, spans, filteredItems)
} }

View file

@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools"
tools:shrinkMode="strict" />

View file

@ -0,0 +1,6 @@
While other apps get slower and worse with every update, Notally gets faster and better. This update brings 2 highly requested features -
• Auto backup
• Adjustable text size
Updated Chinese (Simplified) and Polish translations

View file

@ -18,9 +18,9 @@ Add clickable links to notes with support for phone numbers, email addresses and
<b>Convenience</b> <b>Convenience</b>
• Auto save
• Dark mode • Dark mode
• Completely free • Completely free
• Auto save and backup
• Adjustable text size • Adjustable text size
• No permissions required • No permissions required
• APK size of 1.2 MB (1.6 MB uncompressed) • APK size of 1.2 MB (1.6 MB uncompressed)

View file

@ -19,3 +19,4 @@ org.gradle.jvmargs=-Xmx1536m -XX:+UseParallelGC
# This option should only be used with decoupled projects. More details, visit # This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
org.gradle.parallel=true org.gradle.parallel=true
android.experimental.enableNewResourceShrinker.preciseShrinking=true