Skip to content
This repository was archived by the owner on Dec 30, 2020. It is now read-only.

Commit cbddc6e

Browse files
committed
doc: Update README, add CHANGELOG, roll version to 0.4.0
1 parent c1c6e1d commit cbddc6e

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# 0.4.0 (2020-02-15)
2+
3+
## Features
4+
5+
- Brought up to Rust 2018 (thanks to https://github.com/udoprog)
6+
7+
## Bugfixes
8+
9+
- Updated libappindicator to compile on modern rust
10+
11+
# 0.3.0 (2018-04-28)
12+
13+
## Bugfixes
14+
15+
- Update gtk so linux version will run again
16+
17+
# 0.2.0 (2017-05-04)
18+
19+
## Features
20+
21+
- Add Linux Support
22+
23+
# 0.1.1 (2017-02-28)
24+
25+
## Bugfixes
26+
27+
- Some cleanup and CI work
28+
29+
# 0.1.0 (2017-02-22)
30+
31+
## Features
32+
33+
- Basic Win32 systray support

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "systray"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Kyle Machulis <[email protected]>"]
55
description = "Rust library for making minimal cross-platform systray GUIs"
66
license = "BSD-3-Clause"

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# systray-rs
22

3+
[![Crates.io](https://img.shields.io/crates/v/systray)](https://crates.io/crates/systray) [![Crates.io](https://img.shields.io/crates/d/systray)](https://crates.io/crates/systray)
4+
35
[![Build Status](https://travis-ci.org/qdot/systray-rs.svg?branch=master)](https://travis-ci.org/qdot/systray-rs) [![Build status](https://ci.appveyor.com/api/projects/status/lhqm3lucb5w5559b?svg=true)](https://ci.appveyor.com/project/qdot/systray-rs)
46

57
systray-rs is a Rust library that makes it easy for applications to
@@ -10,6 +12,13 @@ add menu entries.
1012
systray-rs is heavily influenced by
1113
[the systray library for the Go Language](https://github.com/getlantern/systray).
1214

15+
systray-rs currently supports:
16+
17+
- Linux GTK
18+
- Win32
19+
20+
Cocoa core still needed!
21+
1322
# License
1423

1524
systray-rs includes some code
@@ -19,7 +28,7 @@ once winapi-rs has a 0.3 crate available.
1928

2029
systray-rs is BSD licensed.
2130

22-
Copyright (c) 2016, Kyle Machulis
31+
Copyright (c) 2016-2020, Nonpolynomial Labs, LLC
2332
All rights reserved.
2433

2534
Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)