forked from FreeTubeApp/FreeTube
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 3fae2ef Author: Emma <[email protected]> Date: Fri Oct 20 17:18:17 2023 -0400 Add script for pushing to release branch This was previously a python script in a separate repo. Now, it is in the `_scripts/` folder and is in javascript. commit 4bdfe84 Author: Emma <[email protected]> Date: Fri Oct 20 15:17:16 2023 -0400 Increase end margin of flexBox on mobile in order to make the "Fetch more results" button not overflow off the bottom of the page. commit e780abf Merge: d3ad30a b55ad5d Author: Emma <[email protected]> Date: Fri Oct 20 15:15:44 2023 -0400 Merge remote-tracking branch 'upstream/development' into development ... **Full Changelog**: 0.18.0.107...0.19.1.108
- Loading branch information
Showing
404 changed files
with
28,407 additions
and
33,334 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,5 @@ | ||
.gitignore | ||
.prettierrc | ||
Dockerfile | ||
LICENSE | ||
README.md |
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
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,65 @@ | ||
'B: visual': | ||
- '(visual bug)' | ||
|
||
'B: Unofficial Download': | ||
- '(AUR \(Unofficial\)|Chocolatey \(Unofficial\)|\.apk \(Android, FreeTubeCordova Unofficial\)|PortableApps \(Unofficial\)|winget \(Unofficial\)|Scoop \(Unofficial\)|Snapcraft \(Unofficial\)|MPR \(Unofficial\)|Nix \(Unofficial\))' | ||
|
||
'B: keyboard control': | ||
- '(keyboard control not working)' | ||
|
||
'B: text/string': | ||
- '(text/string issue)' | ||
|
||
'B: content not loading': | ||
- '(content not loading)' | ||
|
||
'B: accessibility': | ||
- '(accessibility issue)' | ||
|
||
'B: usability': | ||
- '(usability issue)' | ||
|
||
'B: crash': | ||
- '(causes crash)' | ||
|
||
'B: feature stopped working': | ||
- '(feature stopped working)' | ||
|
||
'B: inconsistent behavior': | ||
- '(inconsistent behavior)' | ||
|
||
'B: data loss': | ||
- '(data loss)' | ||
|
||
'B: race condition': | ||
- '(race condition)' | ||
|
||
'B: API issue': | ||
- '(API issue)' | ||
|
||
'B: developer mode': | ||
- '(only happens in developer mode)' | ||
|
||
'E: improvement existing feature': | ||
- '(improvement to existing feature)' | ||
|
||
'E: new optional setting': | ||
- '(new optional setting)' | ||
|
||
'E: visual improvement': | ||
- '(visual improvement)' | ||
|
||
'E: display more information': | ||
- '(display more information to user)' | ||
|
||
'E: ease of use improvement': | ||
- '(ease of use improvement)' | ||
|
||
'E: support external software': | ||
- '(support for external software)' | ||
|
||
'E: new feature': | ||
- '(new feature)' | ||
|
||
'E: keyboard shortcut': | ||
- '(new keyboard shortcut)' |
File renamed without changes.
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
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 |
---|---|---|
|
@@ -69,6 +69,20 @@ jobs: | |
- name: 📦 Pack for 🕸web with Node.js | ||
run: yarn pack:web | ||
|
||
- name: 🐋 Build docker image | ||
run: | | ||
docker build -t ghcr.io/marmadilemanteater/freetubecordova-nightly:${{ steps.versionNumber.outputs.result }} . | ||
docker build -t ghcr.io/marmadilemanteater/freetubecordova-nightly:latest . | ||
- name: 🗝 Login to Github Container Registry | ||
run: | | ||
echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u MarmadileManteater --password-stdin | ||
- name: 📡 Push docker image to Github Container Registry | ||
run: | | ||
docker push ghcr.io/marmadilemanteater/freetubecordova-nightly:${{ steps.versionNumber.outputs.result }} | ||
docker push ghcr.io/marmadilemanteater/freetubecordova-nightly:latest | ||
- name: 📡 Upload PWA Artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
|
@@ -78,6 +92,11 @@ jobs: | |
- name: 🚧 Setup Android SDK Tools | ||
uses: android-actions/[email protected] | ||
|
||
- name: ⬇ Download dependency `cordova-plugin-run-in-background` | ||
run: | | ||
git clone https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background.git | ||
sed -i 's@git+https://bitbucket.org/TheBosZ/cordova-plugin-run-in-background.git@../../cordova-plugin-run-in-background@g' ./src/cordova/package.js | ||
- name: 📦 Pack for 📱Android with Node.js & Cordova | ||
run: yarn pack:cordova | ||
|
||
|
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
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,18 @@ | ||
name: "Issue Labeler" | ||
on: | ||
issues: | ||
types: [opened] | ||
|
||
permissions: | ||
issues: write | ||
contents: read | ||
|
||
jobs: | ||
triage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: github/[email protected] | ||
with: | ||
configuration-path: .github/issue-labeler.yml | ||
enable-versioned-regex: 0 | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
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
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.