Skip to content

Commit 6afe9af

Browse files
committed
[skip ci] update status of platforms
1 parent 48414a5 commit 6afe9af

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ if webbrowser::open("http://github.com").is_ok() {
3333

3434
| Platform | Supported | Browsers | Test status |
3535
|----------|-----------|----------|-------------|
36-
| macos || default + [others](https://docs.rs/webbrowser/latest/webbrowser/enum.Browser.html) |. Non-ascii UTF-8 URLs currently fail on Github, but works locally, so YMMV |
36+
| macos || default + [others](https://docs.rs/webbrowser/latest/webbrowser/enum.Browser.html) | (unencoded non-ascii URLs currently fail on Github, but work locally, so YMMV) |
3737
| windows || default only ||
38-
| linux/*bsd | | default only (respects $BROWSER env var, so can be used with other browsers) ||
38+
| linux/*bsd || default only (respects $BROWSER env var, so can be used with other browsers) ||
3939
| android || default only ||
40-
| wasm |(experimental) | default only | |
40+
| wasm | | default only | |
4141
| haiku | ✅ (experimental) | default only ||
42-
| ios | | default only ||
42+
| ios || default only ||
4343

4444
## Looking to contribute?
4545

src/lib.rs

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@
22
//!
33
//! Inspired by the [webbrowser](https://docs.python.org/2/library/webbrowser.html) python library.
44
//!
5-
//! Currently state of platform support is:
5+
//! ### Platform Support Status
66
//!
7-
//! * macos => default, as well as browsers listed under [Browser](enum.Browser.html)
8-
//! * windows => default browser only
9-
//! * linux or *bsd => default browser only (uses $BROWSER env var, failing back to xdg-open, gvfs-open and
10-
//! gnome-open, in that order)
11-
//! * android => default browser only
12-
//! * ios => not supported right now
7+
//! | Platform | Supported | Browsers | Test status |
8+
//! |----------|-----------|----------|-------------|
9+
//! | macos | ✅ | default + [others](https://docs.rs/webbrowser/latest/webbrowser/enum.Browser.html) | ✅ (unencoded non-ascii URLs currently fail on Github, but work locally, so YMMV) |
10+
//! | windows | ✅ | default only | ✅ |
11+
//! | linux/*bsd | ✅ | default only (respects $BROWSER env var, so can be used with other browsers) | ✅ |
12+
//! | android | ✅ | default only | ✅ |
13+
//! | wasm | ✅ | default only | ✅ |
14+
//! | haiku | ✅ (experimental) | default only | ❌ |
15+
//! | ios | ❌ | unsupported | ❌ |
1316
//!
1417
//! Important note:
1518
//!

0 commit comments

Comments
 (0)