Skip to content

Commit

Permalink
publish new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed May 8, 2021
1 parent ff1ab43 commit 2a90e63
Show file tree
Hide file tree
Showing 8 changed files with 73 additions and 73 deletions.
5 changes: 0 additions & 5 deletions .changes/doc.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/gtk-menu.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/gtk-status.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/menu-builder.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/menu-flag.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/status-bar.md

This file was deleted.

21 changes: 21 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,21 @@
# Changelog

## \[0.2.0]

- Update README and bump version.
- [324eca05](https://github.com/tauri-apps/tao/commit/324eca05d3075e5610f83d1161e23ace656f586e) Update README.md on 2021-05-08
- Implement menu item varients for Linux.
- [0637570f](https://github.com/tauri-apps/tao/commit/0637570f151f3ad6d5fcaa37dbacb84a5b53624a) Add change file on 2021-05-06
- Implement status bar on Linux.
- [e17bce40](https://github.com/tauri-apps/tao/commit/e17bce40df35f4b8e9ff018a5e9b14f446eee899) Add change file on 2021-05-07
- [86743720](https://github.com/tauri-apps/tao/commit/867437209f820f461239505201e7b21d8d66495c) \[skip ci] Update change file description on 2021-05-07
- Implement basic menu builder for macOS, Windows and Linux.
- [ecd528d6](https://github.com/tauri-apps/tao/commit/ecd528d6c137c7d3ca8d5f16bb3f082b961db6d9) Add change file on 2021-05-04
- [47640216](https://github.com/tauri-apps/tao/commit/476402167ce7209b57a180453733132b777c44f5) \[skip ci] Update changelog on 2021-05-05
- Add menu feature flag and rename status bar to system tray.
- [06d95ad0](https://github.com/tauri-apps/tao/commit/06d95ad03c15b3da1601007ef1b81ea90310d177) Cargo fmt & clippy on 2021-05-08
- Implement basic menu builder for macOS, Windows and Linux.
- [63868365](https://github.com/tauri-apps/tao/commit/63868365613bfd3f6c6d2155e9b3120f7fb9962e) Add change file on 2021-05-05
- [94254074](https://github.com/tauri-apps/tao/commit/942540745e3c8365ac4d0813e9ae40dc7090a2cd) \[ci skip] Update changelog on 2021-05-06
- [e17bce40](https://github.com/tauri-apps/tao/commit/e17bce40df35f4b8e9ff018a5e9b14f446eee899) Add change file on 2021-05-07
- [86743720](https://github.com/tauri-apps/tao/commit/867437209f820f461239505201e7b21d8d66495c) \[skip ci] Update change file description on 2021-05-07
95 changes: 52 additions & 43 deletions Cargo.toml
@@ -1,92 +1,101 @@
[package]
name = "tao"
version = "0.1.0"
version = "0.2.0"
description = "Cross-platform window manager library."
authors = [ "Tauri Programme within The Commons Conservancy", "The winit contributors"]
authors = [
"Tauri Programme within The Commons Conservancy",
"The winit contributors"
]
edition = "2018"
keywords = ["windowing"]
keywords = [ "windowing" ]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/tauri-apps/tao"
documentation = "https://docs.rs/tao"
categories = ["gui"]
categories = [ "gui" ]

[package.metadata.docs.rs]
features = ["serde"]
features = [ "serde" ]
default-target = "x86_64-unknown-linux-gnu"
targets = ["i686-pc-windows-msvc", "x86_64-pc-windows-msvc", "i686-unknown-linux-gnu", "x86_64-unknown-linux-gnu", "x86_64-apple-darwin"]
targets = [
"i686-pc-windows-msvc",
"x86_64-pc-windows-msvc",
"i686-unknown-linux-gnu",
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin"
]

[features]
default = ["menu"]
menu = ["sourceview", "libappindicator"]
default = [ "menu" ]
menu = [ "sourceview", "libappindicator" ]

[dependencies]
instant = "0.1"
lazy_static = "1"
libc = "0.2"
log = "0.4"
serde = { version = "1", optional = true, features = ["serde_derive"] }
serde = { version = "1", optional = true, features = [ "serde_derive" ] }
raw-window-handle = "0.3"
bitflags = "1"

[dev-dependencies]
image = "0.23"
simple_logger = "1.9"

[target.'cfg(target_os = "android")'.dependencies]
[target."cfg(target_os = \"android\")".dependencies]
ndk = "0.3"
ndk-sys = "0.2"
ndk-glue = "0.3"

[target.'cfg(any(target_os = "ios", target_os = "macos"))'.dependencies]
[target."cfg(any(target_os = \"ios\", target_os = \"macos\"))".dependencies]
objc = "0.2"

[target.'cfg(target_os = "macos")'.dependencies]
[target."cfg(target_os = \"macos\")".dependencies]
cocoa = "0.24"
core-foundation = "0.9"
core-graphics = "0.22"
dispatch = "0.2"
scopeguard = "1.1"

[target.'cfg(target_os = "macos")'.dependencies.core-video-sys]
version = "0.1"
default_features = false
features = ["display_link"]
[target."cfg(target_os = \"macos\")".dependencies.core-video-sys]
version = "0.1"
default_features = false
features = [ "display_link" ]

[target.'cfg(target_os = "windows")'.dependencies]
[target."cfg(target_os = \"windows\")".dependencies]
parking_lot = "0.11"

[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3"
features = [
"combaseapi",
"commctrl",
"dwmapi",
"errhandlingapi",
"imm",
"hidusage",
"libloaderapi",
"objbase",
"ole2",
"processthreadsapi",
"shellapi",
"shellscalingapi",
"shobjidl_core",
"unknwnbase",
"winbase",
"windowsx",
"winerror",
"wingdi",
"winnt",
"winuser",
"impl-default",
[target."cfg(target_os = \"windows\")".dependencies.winapi]
version = "0.3"
features = [
"combaseapi",
"commctrl",
"dwmapi",
"errhandlingapi",
"imm",
"hidusage",
"libloaderapi",
"objbase",
"ole2",
"processthreadsapi",
"shellapi",
"shellscalingapi",
"shobjidl_core",
"unknwnbase",
"winbase",
"windowsx",
"winerror",
"wingdi",
"winnt",
"winuser",
"impl-default"
]

[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
cairo-rs = "0.9"
gio = "0.9"
glib = "0.10"
gtk = { version = "0.9", features = ["v3_16"] }
gtk = { version = "0.9", features = [ "v3_16" ] }
gdk = "0.13"
gdk-pixbuf = "0.9"
image = "0.23"
Expand Down

0 comments on commit 2a90e63

Please sign in to comment.