From 78978552491018cb19b57b4740542aecaf0ecb2c Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Mon, 24 Dec 2018 13:43:47 +1300 Subject: [PATCH] dep updates --- Gopkg.lock | 10 +++--- Gopkg.toml | 2 +- .../github.com/cortesi/moddwatch/Gopkg.lock | 8 ++--- .../github.com/toqueteos/webbrowser/README.md | 36 +++++++++++++------ 4 files changed, 35 insertions(+), 21 deletions(-) diff --git a/Gopkg.lock b/Gopkg.lock index 9419a93..437a8b5 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -41,14 +41,14 @@ [[projects]] branch = "master" - digest = "1:a4ed0f60085a36f35212a54e6d337aef5b87a094d142485a4de88f6f844e164e" + digest = "1:b81cc72793c11720782736076b75f319b94cbd86cbfed7cd46fb27ecdbd98e06" name = "github.com/cortesi/moddwatch" packages = [ ".", "filter", ] pruneopts = "" - revision = "5f01cc16f2a5c412d22c623c02662f09f7b73ae2" + revision = "0a1e0881aa8823d4dbec04c5b65a32a33f467e46" [[projects]] branch = "master" @@ -147,12 +147,12 @@ revision = "629144ba06a1c6af28c1e42c228e3d42594ce081" [[projects]] - digest = "1:e1cd343b3883ced86b6873fe4d2f76799259fba3d1656df6ac0a7fa92644c049" + branch = "master" + digest = "1:d089162cc267222030914842f3a89ac096eba7cd3a4d5812e25ae793ffbf0826" name = "github.com/toqueteos/webbrowser" packages = ["."] pruneopts = "" - revision = "3232c91b8ede8ca86e8962981d881af78875542f" - version = "v1.1.0" + revision = "43eedf9c266f511c55ef7eace9ee549e269b54b4" [[projects]] branch = "master" diff --git a/Gopkg.toml b/Gopkg.toml index 5eb1134..5fff69e 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -59,7 +59,7 @@ [[constraint]] name = "github.com/toqueteos/webbrowser" - version = "1.0.0" + branch = "master" [[constraint]] branch = "master" diff --git a/vendor/github.com/cortesi/moddwatch/Gopkg.lock b/vendor/github.com/cortesi/moddwatch/Gopkg.lock index 600e4bb..1dd8ac6 100644 --- a/vendor/github.com/cortesi/moddwatch/Gopkg.lock +++ b/vendor/github.com/cortesi/moddwatch/Gopkg.lock @@ -24,19 +24,19 @@ [[projects]] branch = "master" - digest = "1:b5dd054ec8f13579d3b6520b57edf8bfb2bfb6f6a674bf73f63fab822fb8db18" + digest = "1:b434ecf65028920da12e3c375ee17e67bdb9ba2d6e6d39ac11f54679155ac4a7" name = "github.com/rjeczalik/notify" packages = ["."] pruneopts = "" - revision = "352c463f90a00c0cf83b1148f11ada779308f411" + revision = "629144ba06a1c6af28c1e42c228e3d42594ce081" [[projects]] branch = "master" - digest = "1:3f5c191d90f1cf365ff1f88e4b08eb766ee6ade1cb2e4efd7c316cf7e015ac17" + digest = "1:e6d1805ead5b8f2439808f76187f54042ed35ee26eb9ca63127259a0e612b119" name = "golang.org/x/sys" packages = ["unix"] pruneopts = "" - revision = "66b7b1311ac80bbafcd2daeef9a5e6e2cd1e2399" + revision = "b4a75ba826a64a70990f11a225237acd6ef35c9f" [solve-meta] analyzer-name = "dep" diff --git a/vendor/github.com/toqueteos/webbrowser/README.md b/vendor/github.com/toqueteos/webbrowser/README.md index ae6a979..2ce0876 100644 --- a/vendor/github.com/toqueteos/webbrowser/README.md +++ b/vendor/github.com/toqueteos/webbrowser/README.md @@ -1,12 +1,18 @@ # webbrowser [![Build Status](https://travis-ci.org/toqueteos/webbrowser.png?branch=master)](https://travis-ci.org/toqueteos/webbrowser) [![GoDoc](http://godoc.org/github.com/toqueteos/webbrowser?status.png)](http://godoc.org/github.com/toqueteos/webbrowser) -webbrowser provides a simple API for opening web pages on your default browser. It's inspired on [Python's webbrowser](http://docs.python.org/3/library/webbrowser.html) package but lacks some of its features (open new window). +webbrowser provides a simple API for opening web pages on your default browser. + +It's inspired on [Python's webbrowser](http://docs.python.org/3/library/webbrowser.html) package but lacks some of its features (open new window). It just opens a webpage, most browsers will open it on a new tab. ## Installation -As simple as: `go get -u github.com/toqueteos/webbrowser` +As simple as: + +```bash +go get -u github.com/toqueteos/webbrowser +``` ## Usage @@ -22,21 +28,29 @@ func main() { That's it! -## Already disliking it? - -No problem! There's alternative libraries that may be better to your needs: - -- https://github.com/pkg/browser, it does what webbrowser does and more! -- https://github.com/skratchdot/open-golang, it even provides a `xdg-open` implementation in case you don't have it! - ## Crossplatform support -The package is guaranteed to work on `windows`, `linux` and `darwin`. It also has default support for `freebsd`, `openbsd` and `netbsd` but these three have not been tested yet (that I'm aware of). +The package works on: + +- [x] `android` (verified by 3rd party) +- [x] `darwin` +- [x] `freebsd` (verified by 3rd party) +- [x] `linux` +- [x] `netbsd` (verified by 3rd party) +- [x] `openbsd` (verified by 3rd party) +- [x] `windows` ## License -It is licensed under the MIT open source license, please see the [LICENSE.md] file for more information. +It is licensed under the MIT open source license, please see the [LICENSE.md](https://github.com/toqueteos/webbrowser/blob/master/LICENSE.md) file for more information. ## Thanks... Miki Tebeka wrote a nicer version that wasn't on godoc.org when I did this, [check it out!](https://bitbucket.org/tebeka/go-wise/src/d8db9bf5c4d1/desktop.go?at=default). + +## Already disliking it? + +No problem! There's alternative libraries that may be better to your needs: + +- https://github.com/pkg/browser, it does what webbrowser does and more! +- https://github.com/skratchdot/open-golang, it even provides a `xdg-open` implementation in case you don't have it!