Skip to content

Latest commit

 

History

History
230 lines (184 loc) · 11.6 KB

CHANGELOG.md

File metadata and controls

230 lines (184 loc) · 11.6 KB

Changelog

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

1.0.1 - 2024-05-06

Added

  • Support for visionOS. See PR #86 and #87

1.0.0 - 2024-04-20

Added

  • Move to 1.0! MSRV has now been defined too.

Fixed

  • Unix: default to standard unix implementation, instead of whitelisting each flavour of unix
  • WASM: return an error on dry_run if window object isn't available

0.8.15 - 2024-04-10

Fixed

  • Fix crash on iOS. See #83 and #84

0.8.14 - 2024-04-06

Added

  • Illumos: experimental support. See PR #82

Fixed

  • Previously configured MSRV was stale (i.e. wouldn't have compiled), and has been modified to 1.60. This is being treated as bug, and as such not requiring a major release.

0.8.13 - 2024-03-05

Added

  • AIX: experimental support. See PR #79

0.8.12 - 2023-10-11

Fixed

  • Linux: fix message about BROWSER env variable. See PR #76

0.8.11 - 2023-08-17

Fixed

  • WSL: handle & in URL correctly in WSL environment. See issue #73 and PR #74

0.8.10 - 2023-04-12

Changed

  • Linux: move to home as a dependency, instead of dirs

0.8.9 - 2023-04-12

Added

  • Linux: add support for running under Flatpak sandboxes. See issue #67 and PR #70

Fixed

  • Windows: fix a bug where browser command parsing failed. See issue #68 and PR #69

0.8.8 - 2023-01-30

Changed

  • Android: bumped jni dependency version to 0.21

0.8.7 - 2023-01-30

Fixed

  • Fixes a bug on WSL, when xdg-settings executes successfully but returns no default browser name. Thanks to @krsh732. See #64.

0.8.6 - 2023-01-26

Fixed

  • For Windows 32-bit, fix ABI to be used, which was broken in v0.8.5. Thanks to @alula. See #62 and #63.

0.8.5 - 2022-12-31

Fixed

  • For Windows platform, removes the windows crate dependency, relying on selective FFI bindings instead, thus avoiding the large dependency. See #62. Thanks to @Jake-Shadle.

0.8.4 - 2022-12-31

Fixed

  • Urgent bug fix for windows, where rendering broke on Firefox & Chrome. See #60

0.8.3 - 2022-12-30

Added

  • Web browser is guaranteed to open for local files even if local file association was to a non-browser app (say an editor). This now is formally incorporated as part of this crate's Consistent Behaviour
  • WSL support, thanks to @Nachtalb. This works even if wslu is not installed in WSL environments.
  • A new feature hardened now available for applications which require only http(s) urls to be opened. This acts as a security feature.

Changed

  • On macOS, we now use CoreFoundation library instead of open command.
  • On Linux/*BSD, we now parse xdg configuration to execute the command directly, instead of using xdg-open command. This allows us to open the browser for local html files, even if the .html extension was associated with an edit (see #55)

Fixed

  • The guarantee of web browser being opened (instead of local file association), now solves for the scenario where the URL is crafted to be an executable. This was reported privately by @offalltn.

0.8.2 - 2022-11-08

Fixed

  • Fix app crashes when running under termux on Android. See #53 and #54.

0.8.1 - 2022-11-01

Fixed

  • On Android, app crashes due to ndk-glue dependency. See #51 and #52. Thanks to @rib for the fix.

0.8.0 - 2022-09-09

Added

  • Support for iOS is finally here. Thanks to hakolao for this. See PR #48

Changed

  • Updated all dependencies to current versions

0.7.1 - 2022-04-27

Added

  • Introduce Browser::is_available() and Browser::exists(&self) to check availability of browsers without opening a URL

Changed

  • Modify BrowserOptions to be constructable only via the builder pattern, to prevent future API compatibility issues

0.7.0 - 2022-04-24

Added

  • Introduce way to provide a target hint to the browser via BrowserOptions::target_hint PR #45

Changed

  • Breaking API change for users of BrowserOptions. We've now shifted to a non-consuming builder pattern to avoid future breakages, as more items get added to BrowserOptions

0.6.0 - 2022-02-19

Changed

Fixed

  • On WASM, by default URLs are opened with a target of _blank. See #39. Thanks to @vbeffa for pointing out the issue.
  • @tokusumi fixed #41 where addition of open command (done for Haiku) was breaking things in some places.

0.5.5 - 2020-07-20

Added

0.5.4 - 2020-06-09

Fixed

  • Fix README to reflect platform support for Android and Haiku

0.5.3 - 2020-06-09

Changed

  • Added support for Haiku (Untested right now!) PR #21
  • Added support for Android PR #19
  • Added support for kioclient and x-www-browser PR #17

0.5.2 - 2019-08-22

Fixed

  • Fix a COM leak bug on Windows PR #15

0.5.1 - 2019-04-01

Fixed

  • Fix the behaviour that open() was blocking on Linux and BSD family. Issue #13
  • Fix tests on macos

0.5.0 - 2019-03-31

Added

  • Add BSD family to supported platforms. PR #12

0.4.0 - 2018-12-18

Changed

  • Use ShellExecuteW on Windows as the earlier approach of using cmd.exe was breaking on special characters. PR #11

Fixed

  • Fixed Apache Licensing format

0.3.1 - 2018-06-22

Fixed

  • Fix broken examples header. PR #7
  • Fix undeclared reference to env that breaks Linux. PR #8

0.3.0 - 2018-06-18

Changed

  • Change the OS test to use conditional complication and raise a compile error if the target OS is unsupported. PR #6
  • Implement useful trait from StdLib for Browser such as Display, Default and FromStr. PR #6

Fixed

  • Fix the command in open_on_windows to use cmd.exe instead of start. PR #5

0.2.2 - 2017-01-23

Fixed

  • Honour the right syntax for $BROWSER. Closes #3
  • Include gvfs-open and gnome-open for #2

0.2.1 - 2017-01-22

Changed

  • Honour $BROWSER env var on Linux, before choosing to fallback to xdg-open. Issue #2

0.1.3 - 2016-01-11

Added

[0.1.2] - 2015-12-09

Added

  • Initial release.