Update dependencies and fix label handler bug

This commit is contained in:
CodeDoctorDE
2023-12-25 22:31:26 +01:00
parent 9f00eaeec4
commit 2b34fe413f
6 changed files with 6 additions and 7 deletions

View File

@@ -208,7 +208,7 @@ jobs:
- name: Get flutter version
if: ${{ github.ref == 'refs/heads/develop' }}
run: |
FLUTTER_VERSION=$(cat app/FLUTTER_VERSION)
FLUTTER_VERSION=$(cat FLUTTER_VERSION)
echo "FLUTTER_VERSION=${FLUTTER_VERSION}" >> $GITHUB_ENV
- name: Get flutter version
if: ${{ github.ref == 'refs/heads/main' }}

View File

@@ -25,9 +25,6 @@
---
**2.0 will be released soon...**
**It would be nice if you help me translating the app: <https://linwood.crowdin.com/butterfly>**
Butterfly is a note taking app where your ideas come first. You can paint, add texts, and export them easily on every device. This app works on android, windows, linux, and in the web.
## Features

View File

@@ -257,6 +257,7 @@ class LabelHandler extends Handler<LabelTool>
}
bloc.refresh();
_refreshToolbar(bloc);
_connection?.setEditingState(currentTextEditingValue);
}
void _refreshToolbar(DocumentBloc bloc) {

View File

@@ -643,10 +643,10 @@ packages:
dependency: "direct main"
description:
name: go_router
sha256: c5fa45fa502ee880839e3b2152d987c44abae26d064a2376d4aad434cf0f7b15
sha256: ca7e4a2249f96773152f1853fa25933ac752495cdd7fdf5dafb9691bd05830fd
url: "https://pub.dev"
source: hosted
version: "12.1.3"
version: "13.0.0"
graphs:
dependency: transitive
description:

View File

@@ -40,7 +40,7 @@ dependencies:
share_plus: ^7.2.1
package_info_plus: ^5.0.1
idb_shim: ^2.3.2
go_router: ^12.1.3
go_router: ^13.0.0
xml: ^6.5.0
collection: ^1.18.0
bloc_concurrency: ^0.2.3

View File

@@ -0,0 +1 @@
* Add support for multi character input languages ([#539](https://github.com/LinwoodDev/Butterfly/issues/539))