-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: v4.3 * chore: shellcheck * fix: remove slashes from filename (#216) * fix: subtitle download fix & docs update for V4.3 (#218) * fix: update decryption api to lobster-decryption.netlify * fix: download subtitles with -d * doc: update for v4.3 * fix: SC2312 & eval the ffmpeg command * fix: chokerman's suggestions & fix sub var parsing * fix: add labels to mkv downloads and make multiple subs work * choke: remove threads from ffmpeg command --------- Co-authored-by: justchokingaround <[email protected]> * chore: merge conflicts * fix: make history function properly and fix player stuff * fix: make windows player work * fix: windows scoop mpv watch_later path * chore: shfmt * chore: shellcheck * docs: update rpc docs --------- Co-authored-by: Med Anis Jbara <[email protected]>
- Loading branch information
1 parent
623d4e7
commit 942ad9f
Showing
9 changed files
with
696 additions
and
545 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,4 @@ | ||
[*.sh] | ||
indent_style = space | ||
indent_size = 4 | ||
switch_case_indent = true |
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 |
---|---|---|
@@ -1,28 +1,28 @@ | ||
name: 'lobster checks' | ||
name: "lobster checks" | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
paths: | ||
- "**lobster" | ||
paths: | ||
- "lobster.sh" | ||
|
||
jobs: | ||
sh-checker: | ||
name: Shellcheck + Shfmt | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Run the sh-checker | ||
uses: luizm/action-sh-checker@master | ||
env: | ||
SHELLCHECK_OPTS: -s sh -o all -e 2250 | ||
SHFMT_OPTS: -i 4 -ci -d | ||
- uses: actions/checkout@v3 | ||
- name: Run the sh-checker | ||
uses: luizm/action-sh-checker@master | ||
env: | ||
SHELLCHECK_OPTS: -s sh -o all -e 2250 | ||
SHFMT_OPTS: -i 4 -ci -d | ||
|
||
check-exec: | ||
name: Executable Bit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: test exec bit | ||
run: test -x "./lobster.sh" | ||
- uses: actions/checkout@v3 | ||
- name: test exec bit | ||
run: test -x "./lobster.sh" |
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,16 +1,15 @@ | ||
name: 'lobster checks' | ||
name: "lobster checks" | ||
on: | ||
pull_request: | ||
paths: | ||
- "**lobster" | ||
|
||
paths: | ||
- "lobster.sh" | ||
jobs: | ||
version-bump: | ||
name: Version Bump | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: check version bump | ||
run: git diff origin/master | grep LOBSTER_VERSION | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: check version bump | ||
run: git diff origin/main | grep LOBSTER_VERSION |
Oops, something went wrong.