Skip to content

Commit db6e067

Browse files
committed
wip
1 parent 9900e55 commit db6e067

File tree

14 files changed

+94
-49
lines changed

14 files changed

+94
-49
lines changed

example/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,10 +299,10 @@ packages:
299299
dependency: transitive
300300
description:
301301
name: vm_service
302-
sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
302+
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
303303
url: "https://pub.dev"
304304
source: hosted
305-
version: "14.2.4"
305+
version: "14.2.5"
306306
webdriver:
307307
dependency: transitive
308308
description:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## 0.0.1
22

3-
* TODO: Describe initial release.
3+
* Initial release.

packages/window_manager_linux/LICENSE

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
1-
TODO: Add your license here.
1+
MIT License
2+
3+
Copyright (c) 2024 LiJianying <lijy91@foxmail.com>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
# window_manager_linux
22

3-
A new Flutter plugin project.
3+
[![pub version][pub-image]][pub-url]
44

5-
## Getting Started
5+
[pub-image]: https://img.shields.io/pub/v/window_manager_linux.svg
6+
[pub-url]: https://pub.dev/packages/window_manager_linux
67

7-
This project is a starting point for a Flutter
8-
[plug-in package](https://flutter.dev/to/develop-plugins),
9-
a specialized package that includes platform-specific implementation code for
10-
Android and/or iOS.
8+
The Windows implementation of [window_manager](https://pub.dev/packages/window_manager).
119

12-
For help getting started with Flutter development, view the
13-
[online documentation](https://docs.flutter.dev), which offers tutorials,
14-
samples, guidance on mobile development, and a full API reference.
10+
## License
1511

16-
The plugin project was generated without specifying the `--platforms` flag, no platforms are currently supported.
17-
To add platforms, run `flutter create -t plugin --platforms <platforms> .` in this directory.
18-
You can also find a detailed instruction on how to add platforms in the `pubspec.yaml` at https://flutter.dev/to/pubspec-plugin-platforms.
12+
[MIT](./LICENSE)

packages/window_manager_linux/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: window_manager_linux
2-
description: "A new Flutter plugin project."
2+
description: Linux implementation of the window_manager plugin.
33
version: 0.0.1
4-
homepage:
4+
repository: https://github.com/leanflutter/window_manager/tree/main/packages/window_manager_linux
55

66
environment:
77
sdk: ^3.5.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## 0.0.1
22

3-
* TODO: Describe initial release.
3+
* Initial release.

packages/window_manager_macos/LICENSE

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
1-
TODO: Add your license here.
1+
MIT License
2+
3+
Copyright (c) 2024 LiJianying <lijy91@foxmail.com>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
# window_manager_macos
22

3-
A new Flutter plugin project.
3+
[![pub version][pub-image]][pub-url]
44

5-
## Getting Started
5+
[pub-image]: https://img.shields.io/pub/v/window_manager_macos.svg
6+
[pub-url]: https://pub.dev/packages/window_manager_macos
67

7-
This project is a starting point for a Flutter
8-
[plug-in package](https://flutter.dev/to/develop-plugins),
9-
a specialized package that includes platform-specific implementation code for
10-
Android and/or iOS.
8+
The Windows implementation of [window_manager](https://pub.dev/packages/window_manager).
119

12-
For help getting started with Flutter development, view the
13-
[online documentation](https://docs.flutter.dev), which offers tutorials,
14-
samples, guidance on mobile development, and a full API reference.
10+
## License
1511

12+
[MIT](./LICENSE)

packages/window_manager_macos/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: window_manager_macos
2-
description: "A new Flutter plugin project."
2+
description: macOS implementation of the window_manager plugin.
33
version: 0.0.1
4-
homepage:
4+
repository: https://github.com/leanflutter/window_manager/tree/main/packages/window_manager_macos
55

66
environment:
77
sdk: ^3.5.3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## 0.0.1
22

3-
* TODO: Describe initial release.
3+
* Initial release.

0 commit comments

Comments
 (0)