forked from novnc/noVNC
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
127 changed files
with
121,525 additions
and
49,909 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
**/xtscancodes.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Publish | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
npm: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
# Needs to be explicitly specified for auth to work | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm install | ||
- run: npm publish --access public | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | ||
if: ${{ !github.event.release.prerelease }} | ||
- run: npm publish --access public --tag beta | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | ||
if: ${{ github.event.release.prerelease }} | ||
snap: | ||
runs-on: ubuntu-latest | ||
container: snapcore/snapcraft | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
- run: npm install | ||
- run: ./utils/use_require.js --clean --as commonjs --with-app | ||
- run: | | ||
cp utils/launch.sh build/launch.sh | ||
cp snap/local/svc_wrapper.sh build/svc_wrapper.sh | ||
- run: | | ||
VERSION=$(grep '"version"' package.json | cut -d '"' -f 4) | ||
echo $VERSION | ||
sed -i "s/@VERSION@/$VERSION/g" snap/snapcraft.yaml | ||
- run: snapcraft | ||
- run: | | ||
mkdir .snapcraft | ||
echo ${SNAPCRAFT_LOGIN} | base64 --decode --ignore-garbage > .snapcraft/snapcraft.cfg | ||
env: | ||
SNAPCRAFT_LOGIN: ${{secrets.SNAPCRAFT_LOGIN}} | ||
- run: snapcraft push --release=stable *.snap | ||
if: ${{ !github.event.release.prerelease }} | ||
- run: snapcraft push --release=beta *.snap | ||
if: ${{ github.event.release.prerelease }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Lint | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
eslint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
- run: npm install | ||
- run: npm run lint | ||
html: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
- run: npm install | ||
- run: git ls-tree --name-only -r HEAD | grep -E "[.](html|css)$" | xargs ./utils/validate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Test | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- windows-latest | ||
browser: | ||
- ChromeHeadless | ||
- FirefoxHeadless | ||
include: | ||
- os: macos-latest | ||
browser: Safari | ||
- os: windows-latest | ||
browser: EdgeHeadless | ||
- os: windows-latest | ||
browser: IE | ||
fail-fast: false | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
- run: npm install | ||
- run: npm run test | ||
env: | ||
TEST_BROWSER_NAME: ${{ matrix.browser }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
maintainers: | ||
- Joel Martin (@kanaka) | ||
- Solly Ross (@directxman12) | ||
- Samuel Mannehed for Cendio AB (@samhed) | ||
- Pierre Ossman for Cendio AB (@CendioOssman) | ||
maintainersEmeritus: | ||
- @astrand | ||
contributors: | ||
# There are a bunch of people that should be here. | ||
# If you want to be on this list, feel free send a PR | ||
# to add yourself. | ||
- jalf <[email protected]> | ||
- NTT corp. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
noVNC is Copyright (C) 2011 Joel Martin <[email protected]> | ||
noVNC is Copyright (C) 2019 The noVNC Authors | ||
(./AUTHORS) | ||
|
||
The noVNC core library files are licensed under the MPL 2.0 (Mozilla | ||
Public License 2.0). The noVNC core library is composed of the | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.