├── .travis.yml ├── LICENSE ├── OLD_VERSION ├── README.md ├── monitor.sh ├── screenshot.png └── snap ├── snapcraft.yaml └── snapcraft.yaml.in /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapcrafters/brave/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapcrafters/brave/HEAD/LICENSE -------------------------------------------------------------------------------- /OLD_VERSION: -------------------------------------------------------------------------------- 1 | OLD_VERSION=v0.23.19dev 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapcrafters/brave/HEAD/README.md -------------------------------------------------------------------------------- /monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapcrafters/brave/HEAD/monitor.sh -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapcrafters/brave/HEAD/screenshot.png -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapcrafters/brave/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /snap/snapcraft.yaml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapcrafters/brave/HEAD/snap/snapcraft.yaml.in --------------------------------------------------------------------------------