Skip to content

Commit 5e5a066

Browse files
authored
Merge branch 'dev' into stable
2 parents 9a59245 + e7cc55c commit 5e5a066

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [1.12.1+1]
2+
* Fixed a typo in the December abbreviation displayed in the `MacosDatePicker`.
3+
14
## [1.12.1]
25
* Fix SidebarItem's leading icons not respecting the theme's primary color
36

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ class BlurryContainerViewController: NSViewController {
261261
self.addChild(flutterViewController)
262262

263263
flutterViewController.view.frame = self.view.bounds
264-
+ flutterViewController.backgroundColor = .clear // **Required post-Flutter 3.7.0**
264+
flutterViewController.backgroundColor = .clear // **Required post-Flutter 3.7.0**
265265
flutterViewController.view.autoresizingMask = [.width, .height]
266266
self.view.addSubview(flutterViewController.view)
267267
}

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ packages:
9797
path: ".."
9898
relative: true
9999
source: path
100-
version: "1.12.1"
100+
version: "1.12.1+1"
101101
matcher:
102102
dependency: transitive
103103
description:

lib/src/utils.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ String intToMonthAbbr(int month) {
8282
case 11:
8383
return 'Nov';
8484
case 12:
85-
return 'Dev';
85+
return 'Dec';
8686
default:
8787
throw Exception('Unsupported value');
8888
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: macos_ui
22
description: Flutter widgets and themes implementing the current macOS design language.
3-
version: 1.12.1
3+
version: 1.12.1+1
44
homepage: "https://macosui.dev"
55
repository: "https://github.com/GroovinChip/macos_ui"
66

0 commit comments

Comments
 (0)