Skip to content

Commit 038ad3e

Browse files
author
Jonas Heinle
committed
pumping up version
1 parent b9c348c commit 038ad3e

File tree

6 files changed

+26
-17
lines changed

6 files changed

+26
-17
lines changed

Diff for: .github/workflows/dart.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
uses: flutter-actions/[email protected]
6767
with:
6868
channel: stable
69-
version: 3.24.4
69+
version: 3.24.5
7070

7171
# Note: This workflow uses the latest stable version of the Dart SDK.
7272
# You can specify other versions if desired, see documentation here:

Diff for: .metadata

+20-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file should be version controlled and should not be manually edited.
55

66
version:
7-
revision: "5dcb86f68f239346676ceb1ed1ea385bd215fba1"
7+
revision: "dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668"
88
channel: "stable"
99

1010
project_type: app
@@ -13,11 +13,26 @@ project_type: app
1313
migration:
1414
platforms:
1515
- platform: root
16-
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
17-
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
16+
create_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
17+
base_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
18+
- platform: android
19+
create_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
20+
base_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
21+
- platform: ios
22+
create_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
23+
base_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
24+
- platform: linux
25+
create_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
26+
base_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
27+
- platform: macos
28+
create_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
29+
base_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
1830
- platform: web
19-
create_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
20-
base_revision: 5dcb86f68f239346676ceb1ed1ea385bd215fba1
31+
create_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
32+
base_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
33+
- platform: windows
34+
create_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
35+
base_revision: dec2ee5c1f98f8e84a7d5380c05eb8a3d0a81668
2136

2237
# User provided section
2338

Diff for: pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version: 1.3.5
99

1010
environment:
1111
sdk: ">=3.4.4 <4.0.0"
12-
flutter: ">=3.24.4"
12+
flutter: ">=3.24.5"
1313

1414
dependencies:
1515
flutter:
@@ -22,7 +22,7 @@ dependencies:
2222
sdk: flutter
2323
intl: ^0.19.0
2424

25-
go_router: any
25+
go_router: 14.6.0
2626
font_awesome_flutter: any
2727
dev_dependencies:
2828
mockito: ^5.4.4

Diff for: windows/runner/runner.exe.manifest

-6
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@
99
<application>
1010
<!-- Windows 10 and Windows 11 -->
1111
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
12-
<!-- Windows 8.1 -->
13-
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
14-
<!-- Windows 8 -->
15-
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
16-
<!-- Windows 7 -->
17-
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
1812
</application>
1913
</compatibility>
2014
</assembly>

Diff for: windows/runner/utils.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ std::string Utf8FromUtf16(const wchar_t* utf16_string) {
4545
if (utf16_string == nullptr) {
4646
return std::string();
4747
}
48-
int target_length = ::WideCharToMultiByte(
48+
unsigned int target_length = ::WideCharToMultiByte(
4949
CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string,
5050
-1, nullptr, 0, nullptr, nullptr)
5151
-1; // remove the trailing null character
5252
int input_length = (int)wcslen(utf16_string);
5353
std::string utf8_string;
54-
if (target_length <= 0 || target_length > utf8_string.max_size()) {
54+
if (target_length == 0 || target_length > utf8_string.max_size()) {
5555
return utf8_string;
5656
}
5757
utf8_string.resize(target_length);

0 commit comments

Comments
 (0)