Skip to content

Commit 2c07199

Browse files
committed
Updated version code for v5.1
1 parent b3424c2 commit 2c07199

File tree

8 files changed

+17
-8
lines changed

8 files changed

+17
-8
lines changed

CONTRIBUTORS.md

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

README.md

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

app/build.gradle

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
applicationId "com.omgodse.notally"
1414
minSdk 21
1515
targetSdk 32
16-
versionCode 45
17-
versionName "5.0"
16+
versionCode 46
17+
versionName "5.1"
1818
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"
1919
vectorDrawables.generatedDensities = []
2020
}
@@ -62,6 +62,5 @@ dependencies {
6262
implementation "org.ocpsoft.prettytime:prettytime:4.0.6.Final"
6363
implementation "com.google.android.material:material:1.4.0"
6464

65-
implementation "org.greenrobot:eventbus:3.3.1"
6665
implementation "ru.rambler.android:swipe-layout:1.1.0"
6766
}

app/src/main/java/com/omgodse/notally/viewmodels/NotallyModel.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class NotallyModel(app: Application, private val type: Type) : AndroidViewModel(
9797
private fun getBaseNote(): BaseNote {
9898
val spans = getFilteredSpans(body)
9999
val trimmedBody = body.toString().trimEnd()
100-
val filteredItems = items.filter { (body) -> body.isNotBlank() }
100+
val filteredItems = items.filter { item -> item.body.isNotEmpty() }
101101
return BaseNote(id, type, folder, color, title, pinned, timestamp, labels, trimmedBody, spans, filteredItems)
102102
}
103103

app/src/main/res/raw/keep.xml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources xmlns:tools="http://schemas.android.com/tools"
3+
tools:shrinkMode="strict" />
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
While other apps get slower and worse with every update, Notally gets faster and better. This update brings 2 highly requested features -
2+
3+
• Auto backup
4+
• Adjustable text size
5+
6+
Updated Chinese (Simplified) and Polish translations

fastlane/metadata/android/en-US/full_description.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Add clickable links to notes with support for phone numbers, email addresses and
1818

1919
<b>Convenience</b>
2020

21-
• Auto save
2221
• Dark mode
2322
• Completely free
23+
• Auto save and backup
2424
• Adjustable text size
2525
• No permissions required
2626
• APK size of 1.2 MB (1.6 MB uncompressed)

gradle.properties

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ org.gradle.jvmargs=-Xmx1536m -XX:+UseParallelGC
1818
# When configured, Gradle will run in incubating parallel mode.
1919
# This option should only be used with decoupled projects. More details, visit
2020
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
21-
org.gradle.parallel=true
21+
org.gradle.parallel=true
22+
android.experimental.enableNewResourceShrinker.preciseShrinking=true

0 commit comments

Comments
 (0)