Skip to content

Commit

Permalink
v0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lijy91 committed Feb 6, 2023
1 parent 0eb9772 commit d3d4f87
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ on:
branches: [main]

jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
- run: |
sudo apt-get update -y
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev
- run: flutter config --enable-linux-desktop
- run: cd example && flutter build linux -v
# build-linux:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: subosito/flutter-action@v2
# - run: |
# sudo apt-get update -y
# sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev
# - run: flutter config --enable-linux-desktop
# - run: cd example && flutter build linux -v
build-macos:
runs-on: macos-latest
steps:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.1.6

* Update Display to have final fields (#8)
* Fix compilation issues related to getAllDisplays (#7)

## 0.1.5

* Implement "display-added" and "display-removed" for Linux #5
Expand Down
2 changes: 1 addition & 1 deletion README-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

```yaml
dependencies:
screen_retriever: ^0.1.5
screen_retriever: ^0.1.6
```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Add this to your package's pubspec.yaml file:

```yaml
dependencies:
screen_retriever: ^0.1.5
screen_retriever: ^0.1.6
```
Or
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.5"
version: "0.1.6"
sky_engine:
dependency: transitive
description: flutter
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: screen_retriever
description: This plugin allows Flutter desktop apps to Retrieve information about screen size, displays, cursor position, etc.
version: 0.1.5
version: 0.1.6
homepage: https://github.com/leanflutter/screen_retriever

platforms:
Expand Down

0 comments on commit d3d4f87

Please sign in to comment.