Skip to content

Commit f1f942d

Browse files
authored
v2.1.5 (#540)
* feat: disable emoji auto replace (#538) * fix: menu crash when opening from label page (#539) * fix: labels providers updates (#541) * fix: make value text disabled on disabled settings tiles (#542) * chore: add back rust version (#543) * fix: ask for authentication when required (toggling lock state, deleting locked label, toggling lock preference...) (#544) * feat: suggest to select a backup location (#545) * feat: add markdown emojis render (#547)
1 parent 5a94f62 commit f1f942d

52 files changed

Lines changed: 1641 additions & 317 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.fvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"flutter": "stable"
2+
"flutter": "3.44.0"
33
}

.run/Build APK (split per ABI).run.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration name="Build APK (split per ABI)" default="false" type="ShConfigurationType">
3-
<option name="SCRIPT_TEXT" value="flutter build apk --release --split-per-abi" />
2+
<configuration default="false" name="Build APK (split per ABI)" type="ShConfigurationType">
3+
<option name="SCRIPT_TEXT" value="fvm flutter build apk --release --split-per-abi" />
44
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
55
<option name="SCRIPT_PATH" value="" />
66
<option name="SCRIPT_OPTIONS" value="" />

.run/Build APK.run.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration name="Build APK" default="false" type="ShConfigurationType">
3-
<option name="SCRIPT_TEXT" value="flutter build apk --release" />
2+
<configuration default="false" name="Build APK" type="ShConfigurationType">
3+
<option name="SCRIPT_TEXT" value="fvm flutter build apk --release" />
44
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
55
<option name="SCRIPT_PATH" value="" />
66
<option name="SCRIPT_OPTIONS" value="" />

.run/Generate files (watch).run.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration name="Generate files (watch)" default="false" type="ShConfigurationType">
2+
<configuration default="false" name="Generate files (watch)" type="ShConfigurationType">
33
<option name="SCRIPT_TEXT"
4-
value="dart run build_runner watch --delete-conflicting-outputs" />
4+
value="fvm dart run build_runner watch --delete-conflicting-outputs" />
55
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
66
<option name="SCRIPT_PATH" value="" />
77
<option name="SCRIPT_OPTIONS" value="" />

.run/Generate files.run.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration name="Generate files" default="false" type="ShConfigurationType">
2+
<configuration default="false" name="Generate files" type="ShConfigurationType">
33
<option name="SCRIPT_TEXT"
4-
value="dart run build_runner build --delete-conflicting-outputs" />
4+
value="fvm dart run build_runner build --delete-conflicting-outputs" />
55
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
66
<option name="SCRIPT_PATH" value="" />
77
<option name="SCRIPT_OPTIONS" value="" />

.run/Generate launcher icons.run.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration name="Generate launcher icons" default="false" type="ShConfigurationType">
3-
<option name="SCRIPT_TEXT" value="dart run flutter_launcher_icons" />
2+
<configuration default="false" name="Generate launcher icons" type="ShConfigurationType">
3+
<option name="SCRIPT_TEXT" value="fvm dart run flutter_launcher_icons" />
44
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
55
<option name="SCRIPT_PATH" value="" />
66
<option name="SCRIPT_OPTIONS" value="" />

.run/Generate localizations.run.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration name="Generate localizations" default="false" type="ShConfigurationType">
3-
<option name="SCRIPT_TEXT" value="flutter gen-l10n" />
2+
<configuration default="false" name="Generate localizations" type="ShConfigurationType">
3+
<option name="SCRIPT_TEXT" value="fvm flutter gen-l10n" />
44
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
55
<option name="SCRIPT_PATH" value="" />
66
<option name="SCRIPT_OPTIONS" value="" />

.run/Generate splash screen.run.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration name="Generate splash screen" default="false" type="ShConfigurationType">
3-
<option name="SCRIPT_TEXT" value="dart run flutter_native_splash:create" />
2+
<configuration default="false" name="Generate splash screen" type="ShConfigurationType">
3+
<option name="SCRIPT_TEXT" value="fvm dart run flutter_native_splash:create" />
44
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
55
<option name="SCRIPT_PATH" value="" />
66
<option name="SCRIPT_OPTIONS" value="" />

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
66
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 2.1.5 - 2026-06-14
9+
10+
### Added
11+
12+
- Prompt to select a save location
13+
- Display emojis in Markdown notes when viewing
14+
15+
### Changed
16+
17+
- Disabled automatic emoji replacement in rich text notes
18+
19+
### Fixed
20+
21+
- Prompt for authentication when necessary
22+
- Crash when opening the tags menu
23+
- Update tags after editing/deleting
24+
- Show the parameter value as disabled when the tile is disabled
25+
826
## 2.1.4 - 2026-04-07
927

1028
### Miscellaneous

android/app/build.gradle

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
plugins {
22
id "com.android.application"
3-
id "kotlin-android"
43
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
54
id "dev.flutter.flutter-gradle-plugin"
65
}
@@ -38,17 +37,13 @@ android.applicationVariants.all { variant ->
3837
android {
3938
namespace = "com.maelchiotti.localmaterialnotes"
4039
compileSdk = flutter.compileSdkVersion
41-
ndkVersion = "27.0.12077973"
40+
ndkVersion = "27.3.13750724"
4241

4342
compileOptions {
4443
sourceCompatibility = JavaVersion.VERSION_17
4544
targetCompatibility = JavaVersion.VERSION_17
4645
}
4746

48-
kotlinOptions {
49-
jvmTarget = JavaVersion.VERSION_17
50-
}
51-
5247
dependenciesInfo {
5348
includeInApk = false
5449
includeInBundle = false
@@ -84,6 +79,13 @@ android {
8479
}
8580
}
8681

82+
kotlin {
83+
compilerOptions {
84+
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17
85+
}
86+
}
87+
88+
8789
flutter {
8890
source = "../.."
8991
}

0 commit comments

Comments
 (0)