A few small fixes #586 (#591)

* Trimmed trailing whitespace
* Fixed erroneous newline at beginning of blacklist
* Fixed erroneous instructions for adding remote in contribution guide (Fixes #586)
This commit is contained in:
Chad Bailey
2020-02-15 16:11:57 -06:00
committed by GitHub
parent 55500fc010
commit eaf5ac47f3
4 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
name: Upload To Chrome Web Store name: Upload To Chrome Web Store
# This workflow is triggered on pushes to the repository. # This workflow is triggered on pushes to the repository.
on: on:
push: push:
tags: tags:
- v** - v**
@@ -11,13 +11,13 @@ jobs:
steps: steps:
- name: checkout - name: checkout
uses: actions/checkout@v1 uses: actions/checkout@v1
- name: zip - name: zip
uses: montudor/action-zip@v0.1.0 uses: montudor/action-zip@v0.1.0
with: with:
args: zip -r ./vscd.zip . -i * -x *.git* args: zip -r ./vscd.zip . -i * -x *.git*
- name: Upload to - name: Upload to
uses: trmcnvn/chrome-addon@v1 uses: trmcnvn/chrome-addon@v1
with: with:
# extension is only necessary when updating an existing addon, # extension is only necessary when updating an existing addon,

View File

@@ -79,7 +79,7 @@ pre-commit checks before committing via `pre-commit run --all-files`
You should always be working with the latest version of the tool to make pull You should always be working with the latest version of the tool to make pull
requests easy. If you want to do this easily, just add a second remote to your requests easy. If you want to do this easily, just add a second remote to your
local git repo like this local git repo like this
`git push --set-upstream origin feature/578-prettier.io-formatting` `git remote add upstream https://github.com/igrigorik/videospeed.git`
Now any time you like to pull the latest version in to your local branch you can Now any time you like to pull the latest version in to your local branch you can
simply issue the command `git pull upstream master` simply issue the command `git pull upstream master`

View File

@@ -12,7 +12,7 @@ var tc = {
startHidden: false, // default: false startHidden: false, // default: false
controllerOpacity: 0.3, // default: 0.3 controllerOpacity: 0.3, // default: 0.3
keyBindings: [], keyBindings: [],
blacklist: ` blacklist: `\
www.instagram.com www.instagram.com
twitter.com twitter.com
vine.co vine.co

View File

@@ -17,7 +17,7 @@ var tcDefaults = {
{ action: "reset", key: 82, value: 1, force: false, predefined: true }, // R { action: "reset", key: 82, value: 1, force: false, predefined: true }, // R
{ action: "fast", key: 71, value: 1.8, force: false, predefined: true } // G { action: "fast", key: 71, value: 1.8, force: false, predefined: true } // G
], ],
blacklist: ` blacklist: `\
www.instagram.com www.instagram.com
twitter.com twitter.com
vine.co vine.co
@@ -143,9 +143,9 @@ function add_shortcut() {
<option value="mark">Set marker</option> <option value="mark">Set marker</option>
<option value="jump">Jump to marker</option> <option value="jump">Jump to marker</option>
<option value="display">Show/hide controller</option> <option value="display">Show/hide controller</option>
</select> </select>
<input class="customKey" type="text" placeholder="press a key"/> <input class="customKey" type="text" placeholder="press a key"/>
<input class="customValue" type="text" placeholder="value (0.10)"/> <input class="customValue" type="text" placeholder="value (0.10)"/>
<select class="customForce"> <select class="customForce">
<option value="false">Do not disable website key bindings</option> <option value="false">Do not disable website key bindings</option>
<option value="true">Disable websites key bindings</option> <option value="true">Disable websites key bindings</option>