Skip to content

Commit

Permalink
Updated version code for v5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
OmGodse committed Feb 25, 2023
1 parent b3424c2 commit 2c07199
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
5. 🇨🇿 Czech by [tomo90](https://github.com/tomo90)
6. 🇯🇵 Japanese by [kato-k](https://github.com/kato-k)
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)
10. 🇮🇩 Indonesian by [zmni](https://github.com/zmni)
11. 🇮🇹 Italian by Luigi Sforza, [IlmastroStefanuzzo](https://github.com/IlmastroStefanuzzo)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ All translations are crowd sourced. To contribute or point out any errors, email
### Roadmap
These are in works but they'll take time as this is a side project.
- [ ] Images
- [ ] Auto backup
- [X] Auto backup
- [ ] Batch selection
5 changes: 2 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId "com.omgodse.notally"
minSdk 21
targetSdk 32
versionCode 45
versionName "5.0"
versionCode 46
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"
vectorDrawables.generatedDensities = []
}
Expand Down Expand Up @@ -62,6 +62,5 @@ dependencies {
implementation "org.ocpsoft.prettytime:prettytime:4.0.6.Final"
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"
}
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class NotallyModel(app: Application, private val type: Type) : AndroidViewModel(
private fun getBaseNote(): BaseNote {
val spans = getFilteredSpans(body)
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)
}

Expand Down
3 changes: 3 additions & 0 deletions app/src/main/res/raw/keep.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools"
tools:shrinkMode="strict" />
6 changes: 6 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/46.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion fastlane/metadata/android/en-US/full_description.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Add clickable links to notes with support for phone numbers, email addresses and

<b>Convenience</b>

• Auto save
• Dark mode
• Completely free
• Auto save and backup
• Adjustable text size
• No permissions required
• APK size of 1.2 MB (1.6 MB uncompressed)
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ org.gradle.jvmargs=-Xmx1536m -XX:+UseParallelGC
# When configured, Gradle will run in incubating parallel mode.
# 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
org.gradle.parallel=true
org.gradle.parallel=true
android.experimental.enableNewResourceShrinker.preciseShrinking=true

0 comments on commit 2c07199

Please sign in to comment.