Skip to content

Commit

Permalink
v1.8.2 (#264)
Browse files Browse the repository at this point in the history
* hotfix: wrong default value for ascending sort preference

* chore: prepare v1.8.2
  • Loading branch information
maelchiotti authored Nov 23, 2024
1 parent 7d324d8 commit 52faa2e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.8.2 - 2024-11-13

### Fixed

- Error at startup because of the ascending sorting setting

## 1.8.1 - 2024-11-13

### Fixed

- Crash at startup because of the sorting setting
- Crash at startup because of the sorting method setting

## 1.8.0 - 2024-11-23

Expand Down
2 changes: 1 addition & 1 deletion fastlane/metadata/android/en-US/changelogs/180.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FIXED
- Crash at startup because of the sorting setting
- Crash at startup because of the sorting method setting
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/190.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
FIXED
- Error at startup because of the ascending sorting setting
2 changes: 1 addition & 1 deletion fastlane/metadata/android/fr-FR/changelogs/180.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
CORRIGÉ
- Crash au démarrage à cause du paramètre de tri
- Crash au démarrage à cause du paramètre de méthode de tri
2 changes: 2 additions & 0 deletions fastlane/metadata/android/fr-FR/changelogs/190.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CORRIGÉ
- Erreur au démarrage à cause du paramètre de tri ascendant
2 changes: 1 addition & 1 deletion lib/common/preferences/preference_key.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ enum PreferenceKey {

// Notes
sortMethod(SortMethod.editedDate),
sortAscending(bool),
sortAscending(false),
layout(Layout.list),
;

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: localmaterialnotes
description: Simple, local, material design notes
repository: https://github.com/maelchiotti/LocalMaterialNotes

version: 1.8.1+18
version: 1.8.2+19
publish_to: none

environment:
Expand Down

0 comments on commit 52faa2e

Please sign in to comment.