File tree Expand file tree Collapse file tree 19 files changed +39
-8
lines changed
local_auth/local_auth_windows
pigeon/platform_tests/test_plugin/windows Expand file tree Collapse file tree 19 files changed +39
-8
lines changed Original file line number Diff line number Diff line change 1
- ## NEXT
1
+ ## 0.2.1+6
2
2
3
+ * Sets a cmake_policy compatibility version to fix build warnings.
3
4
* Aligns Dart and Flutter SDK constraints.
4
5
5
6
## 0.2.1+5
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: camera_windows
2
2
description : A Flutter plugin for getting information about and controlling the camera on Windows.
3
3
repository : https://github.com/flutter/packages/tree/main/packages/camera/camera_windows
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+camera%22
5
- version : 0.2.1+5
5
+ version : 0.2.1+6
6
6
7
7
environment :
8
8
sdk : " >=2.17.0 <4.0.0"
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 3.14)
2
2
set (PROJECT_NAME "camera_windows" )
3
3
project (${PROJECT_NAME} LANGUAGES CXX )
4
4
5
+ cmake_policy (VERSION 3.14...3.24 )
6
+
5
7
# This value is used when generating builds using this plugin, so it must
6
8
# not be changed
7
9
set (PLUGIN_NAME "${PROJECT_NAME} _plugin" )
Original file line number Diff line number Diff line change
1
+ ## 0.9.1+3
2
+
3
+ * Sets a cmake_policy compatibility version to fix build warnings.
4
+
1
5
## 0.9.1+2
2
6
3
7
* Clarifies explanation of endorsement in README.
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 3.10)
2
2
set (PROJECT_NAME "file_selector_linux" )
3
3
project (${PROJECT_NAME} LANGUAGES CXX )
4
4
5
+ cmake_policy (VERSION 3.10...3.24 )
6
+
5
7
set (PLUGIN_NAME "${PROJECT_NAME} _plugin" )
6
8
7
9
list (APPEND PLUGIN_SOURCES
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: file_selector_linux
2
2
description : Liunx implementation of the file_selector plugin.
3
3
repository : https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector_linux
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
5
- version : 0.9.1+2
5
+ version : 0.9.1+3
6
6
7
7
environment :
8
8
sdk : " >=2.17.0 <4.0.0"
Original file line number Diff line number Diff line change 1
- ## NEXT
1
+ ## 0.9.1+8
2
2
3
+ * Sets a cmake_policy compatibility version to fix build warnings.
3
4
* Updates minimum Flutter version to 3.3.
4
5
5
6
## 0.9.1+7
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: file_selector_windows
2
2
description : Windows implementation of the file_selector plugin.
3
3
repository : https://github.com/flutter/packages/tree/main/packages/file_selector/file_selector_windows
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+file_selector%22
5
- version : 0.9.1+7
5
+ version : 0.9.1+8
6
6
7
7
environment :
8
8
sdk : " >=2.18.0 <4.0.0"
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 3.14)
2
2
set (PROJECT_NAME "file_selector_windows" )
3
3
project (${PROJECT_NAME} LANGUAGES CXX )
4
4
5
+ cmake_policy (VERSION 3.14...3.24 )
6
+
5
7
set (PLUGIN_NAME "${PROJECT_NAME} _plugin" )
6
8
7
9
list (APPEND PLUGIN_SOURCES
Original file line number Diff line number Diff line change
1
+ ## 1.0.8
2
+
3
+ * Sets a cmake_policy compatibility version to fix build warnings.
4
+
1
5
## 1.0.7
2
6
3
7
* Clarifies explanation of endorsement in README.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: local_auth_windows
2
2
description : Windows implementation of the local_auth plugin.
3
3
repository : https://github.com/flutter/packages/tree/main/packages/local_auth/local_auth_windows
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+local_auth%22
5
- version : 1.0.7
5
+ version : 1.0.8
6
6
7
7
environment :
8
8
sdk : " >=2.17.0 <4.0.0"
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.15 )
2
2
set (PROJECT_NAME "local_auth_windows" )
3
+ cmake_policy (VERSION 3.15...3.24 )
3
4
set (WIL_VERSION "1.0.220201.1" )
4
5
set (CPPWINRT_VERSION "2.0.220418.1" )
5
6
project (${PROJECT_NAME} LANGUAGES CXX )
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ cmake_minimum_required(VERSION 3.14)
8
8
set (PROJECT_NAME "test_plugin" )
9
9
project (${PROJECT_NAME} LANGUAGES CXX )
10
10
11
+ cmake_policy (VERSION 3.14...3.24 )
12
+
11
13
# This value is used when generating builds using this plugin, so it must
12
14
# not be changed
13
15
set (PLUGIN_NAME "test_plugin_plugin" )
Original file line number Diff line number Diff line change
1
+ ## 3.0.5
2
+
3
+ * Sets a cmake_policy compatibility version to fix build warnings.
4
+
1
5
## 3.0.4
2
6
3
7
* Clarifies explanation of endorsement in README.
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 3.10)
2
2
set (PROJECT_NAME "url_launcher_linux" )
3
3
project (${PROJECT_NAME} LANGUAGES CXX )
4
4
5
+ cmake_policy (VERSION 3.10...3.24 )
6
+
5
7
set (PLUGIN_NAME "${PROJECT_NAME} _plugin" )
6
8
7
9
list (APPEND PLUGIN_SOURCES
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: url_launcher_linux
2
2
description : Linux implementation of the url_launcher plugin.
3
3
repository : https://github.com/flutter/packages/tree/main/packages/url_launcher/url_launcher_linux
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+url_launcher%22
5
- version : 3.0.4
5
+ version : 3.0.5
6
6
7
7
environment :
8
8
sdk : " >=2.17.0 <4.0.0"
Original file line number Diff line number Diff line change
1
+ ## 3.0.6
2
+
3
+ * Sets a cmake_policy compatibility version to fix build warnings.
4
+
1
5
## 3.0.5
2
6
3
7
* Clarifies explanation of endorsement in README.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: url_launcher_windows
2
2
description : Windows implementation of the url_launcher plugin.
3
3
repository : https://github.com/flutter/packages/tree/main/packages/url_launcher/url_launcher_windows
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+url_launcher%22
5
- version : 3.0.5
5
+ version : 3.0.6
6
6
7
7
environment :
8
8
sdk : " >=2.17.0 <4.0.0"
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ cmake_minimum_required(VERSION 3.10)
2
2
set (PROJECT_NAME "url_launcher_windows" )
3
3
project (${PROJECT_NAME} LANGUAGES CXX )
4
4
5
+ cmake_policy (VERSION 3.10...3.24 )
6
+
5
7
set (PLUGIN_NAME "${PROJECT_NAME} _plugin" )
6
8
7
9
list (APPEND PLUGIN_SOURCES
You can’t perform that action at this time.
0 commit comments