File tree Expand file tree Collapse file tree 5 files changed +7
-4
lines changed Expand file tree Collapse file tree 5 files changed +7
-4
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 1.12.1+1]
2
+ * Fixed a typo in the December abbreviation displayed in the ` MacosDatePicker ` .
3
+
1
4
## [ 1.12.1]
2
5
* Fix SidebarItem's leading icons not respecting the theme's primary color
3
6
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ class BlurryContainerViewController: NSViewController {
261
261
self .addChild (flutterViewController)
262
262
263
263
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**
265
265
flutterViewController.view .autoresizingMask = [.width , .height ]
266
266
self .view .addSubview (flutterViewController.view )
267
267
}
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ packages:
97
97
path: ".."
98
98
relative: true
99
99
source: path
100
- version: "1.12.1"
100
+ version: "1.12.1+1 "
101
101
matcher:
102
102
dependency: transitive
103
103
description:
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ String intToMonthAbbr(int month) {
82
82
case 11 :
83
83
return 'Nov' ;
84
84
case 12 :
85
- return 'Dev ' ;
85
+ return 'Dec ' ;
86
86
default :
87
87
throw Exception ('Unsupported value' );
88
88
}
Original file line number Diff line number Diff line change 1
1
name : macos_ui
2
2
description : Flutter widgets and themes implementing the current macOS design language.
3
- version : 1.12.1
3
+ version : 1.12.1+1
4
4
homepage : " https://macosui.dev"
5
5
repository : " https://github.com/GroovinChip/macos_ui"
6
6
You can’t perform that action at this time.
0 commit comments