Skip to content

Commit

Permalink
Initial version based on Waterfox 56.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed May 4, 2019
0 parents commit 6ffa8b6
Show file tree
Hide file tree
Showing 17 changed files with 664 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# This file is for unifying the coding style for different editors and IDEs.
# More information at http://editorconfig.org

root = true

[*]
charset = utf-8
indent_size = 2
indent_style = space
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

[*.go]
indent_style = tab
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Intellij
/.idea
/*.iml

# App
/.dev
/bin
/vendor
/*.syso
/*.exe
/versioninfo.json
48 changes: 48 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
os: windows
language: shell

env:
global:
- GOVERSION: 1.12.4
- NODEJS_VERSION: 11.14.0

before_install:
- git clone https://github.com/portapps/portapps ${TRAVIS_BUILD_DIR}/../portapps
- source ${TRAVIS_BUILD_DIR}/../portapps/.travis/prepare.sh
- bash ${TRAVIS_BUILD_DIR}/../portapps/.travis/java.sh
- bash ${TRAVIS_BUILD_DIR}/../portapps/.travis/ant.sh
- bash ${TRAVIS_BUILD_DIR}/../portapps/.travis/nodejs.sh
- bash ${TRAVIS_BUILD_DIR}/../portapps/.travis/go.sh
- set

script:
- ant release

after_success:
- export APP_VERSION=$(cat $TRAVIS_BUILD_DIR/bin/tmp/version.dat)
- echo ${APP_VERSION}

before_deploy:
- git config --local user.email "builds@travis-ci.com"
- git config --local user.name "Travis CI"
- export TRAVIS_TAG="${APP_VERSION}"
- git tag $TRAVIS_TAG
- ls -al bin/release

deploy:
provider: releases
api_key:
secure: XjDveFZyrOnCzOy/bp0KUXr/Y5DYvXpBdvCGXuebyDXVUmFsH7ScAaQ9GwOFgUmnLnnLUJ+HxLBN9x5yP11shigFiCc+93J+p4+pmJAW2849KTiwwHzoB79sJsBoCq+ddxG0rM7R+Wbs9G80mFaeFxVVwXiscUK6J8ldvSlpsuc5fGoAp40mXN7sLUKdZ1br0TKd0iNHjWt0dAH5Hroj4uxacks9swrhOWD7b1qr12Tc1jTHYBZ5GX/ur5A+p6KGpuQ+i8Yi+j3q37iLFWB8ST88l5iwNBiJnDGsuqClzQ2/A581spUBUEK4ZcAoDNVGRPm0lrZrhSuIf3NVV5fDyPjuF3H6k0FZWztQcJc0jQoi0JEvJuZ8vqEZiKK+iItdA58tj1QwIvDs8r2X1Rs8YYINwwOt09o/dF3mH0sYE31e03tgo69njmlPjFRqNiB3fDbbZndOz+E8tUM8NJc8IuxEfusCmL9xjCKHh/ghruv/3BBo2kOjzV7NxwSPNF/2a+GzcdEwMA97k9aO38SaYh/GlKnxV4y1k8pKnm8Nm9wbK6e4nR9zj9HTXT36rUztfiqhO7YbkbQT39OpnyMaNJGAF1YoCsy3NoUTC/rvcLMgjp14odKHWq+N359btG328LBmZJWYqv26ZP8lKYOKow7ws3ylLkAMfEiRsL2bEIM=
file_glob: true
file: bin/release/*
skip_cleanup: true
draft: true
on:
tags: false

notifications:
email:
recipients:
- travisci@portapps.io
on_success: always
on_failure: always
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## 56.2.9-1 (2019/05/04)

* Initial version based on Waterfox 56.2.9
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 CrazyMax

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<p align="center"><a href="https://portapps.io/app/waterfox-portable/" target="_blank"><img width="100" src="https://github.com/portapps/waterfox-portable/blob/master/res/papp.png"></a></p>

<p align="center">
<a href="https://portapps.io/app/waterfox-portable/#download"><img src="https://img.shields.io/github/release/portapps/waterfox-portable.svg?style=flat-square" alt="GitHub release"></a>
<a href="https://portapps.io/app/waterfox-portable/#download"><img src="https://img.shields.io/github/downloads/portapps/waterfox-portable/total.svg?style=flat-square" alt="Total downloads"></a>
<a href="https://travis-ci.com/portapps/waterfox-portable"><img src="https://img.shields.io/travis/com/portapps/waterfox-portable/master.svg?style=flat-square" alt="Build Status"></a>
<a href="https://github.com/portapps/portapps"><img src="https://img.shields.io/badge/portapps-1.22.2-479fdb.svg?style=flat-square" alt="Portapps version"></a>
<a href="https://goreportcard.com/report/github.com/portapps/waterfox-portable"><img src="https://goreportcard.com/badge/github.com/portapps/waterfox-portable?style=flat-square" alt="Go Report"></a>
<a href="https://www.codacy.com/app/portapps/waterfox-portable"><img src="https://img.shields.io/codacy/grade/f4ff55cc864e44a6b04d660944f96422.svg?style=flat-square" alt="Code Quality"></a>
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WQD7AQGPDEPSG"><img src="https://img.shields.io/badge/donate-paypal-7057ff.svg?style=flat-square" alt="Donate Paypal"></a>
</p>

## About

[Waterfox](https://www.waterfox.net/) portable app made with 🚀 [Portapps](https://portapps.io).<br />
Documentation and downloads can be found on https://portapps.io/app/waterfox-portable/

## How can I help ?

All kinds of contributions are welcome :raised_hands:!<br />
The most basic way to show your support is to star :star2: the project, or to raise issues :speech_balloon:<br />
But we're not gonna lie to each other, I'd rather you buy me a beer or two :beers:!

[![Paypal Donate](https://portapps.io/img/paypal-donate.png)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WQD7AQGPDEPSG)

## License

MIT. See `LICENSE` for more details.<br />
Rocket icon credit to [Squid Ink](http://thesquid.ink).
Loading

0 comments on commit 6ffa8b6

Please sign in to comment.