Skip to content

Commit

Permalink
1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
KerlosGirgis committed Feb 2, 2025
1 parent 5407d4f commit 72980ef
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ jobs:
name: Todo ${{ github.ref_name }}
body: |
## Release Notes
- Notes Reorder
- UI Improvements
- UI Fixes and improvements
- Home Screen Widget Font Options
2 changes: 1 addition & 1 deletion android/app/src/main/java/com/k/todo/Note.kt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Note : AppWidgetProvider() {
context.getSharedPreferences("HomeWidgetPreferences", Context.MODE_PRIVATE)
val useCasualFont: Boolean = prefs.getBoolean("useCasualFont", false)
var textSize=22f
val textSizeString = prefs.getString("widgetTextSize", "22")
val textSizeString = prefs.getString("widgetTextSize", "1")
if(textSizeString!=null){
val tempTextSize = textSizeString.toFloatOrNull()
if(tempTextSize!=null){
Expand Down
2 changes: 2 additions & 0 deletions metadata/en-US/changelogs/2005.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
UI Fixes and improvements
Home Screen Widget Font Options
Binary file modified metadata/en-US/images/featureGraphic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.5.2+4
version: 1.5.3+5

environment:
sdk: '>=3.4.4 <4.0.0'
Expand Down

0 comments on commit 72980ef

Please sign in to comment.