forked from ShareASmile/NewPipeZing
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from Thompson3142/fix_subtitle_size
Fix subtitle size and merge from NewPipe upstream to dev2
- Loading branch information
Showing
1,503 changed files
with
40,897 additions
and
10,841 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
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 |
---|---|---|
@@ -1,8 +1,11 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: ❓ Question | ||
url: https://github.com/TeamNewPipe/NewPipe/discussions/new?category=questions | ||
about: Ask about anything NewPipe-related | ||
- name: 💬 Matrix | ||
url: https://matrix.to/#/#newpipe:matrix.newpipe-ev.de | ||
about: Chat with us via Matrix for quick Q/A | ||
- name: 💬 IRC | ||
url: https://web.libera.chat/#newpipe | ||
about: Chat with us via IRC for quick Q/A | ||
- name: 💬 Matrix | ||
url: https://matrix.to/#/#newpipe:libera.chat | ||
about: Chat with us via Matrix for quick Q/A |
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,17 @@ | ||
# Add 'size/small' label to any changes with less than 50 lines | ||
size/small: | ||
max: 49 | ||
|
||
# Add 'size/medium' label to any changes between 50 and 249 lines | ||
size/medium: | ||
min: 50 | ||
max: 249 | ||
|
||
# Add 'size/large' label to any changes between 250 and 749 lines | ||
size/large: | ||
min: 250 | ||
max: 749 | ||
|
||
# Add 'size/giant' label to any changes for more than 749 lines | ||
size/giant: | ||
min: 750 |
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,38 @@ | ||
name: "Build unsigned release APK on master" | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: 'master' | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '21' | ||
cache: 'gradle' | ||
|
||
- name: "Build release APK" | ||
run: ./gradlew assembleRelease --stacktrace | ||
|
||
- name: "Rename APK" | ||
run: | | ||
VERSION_NAME="$(jq -r ".elements[0].versionName" "app/build/outputs/apk/release/output-metadata.json")" | ||
echo "Version name: $VERSION_NAME" >> "$GITHUB_STEP_SUMMARY" | ||
echo '```json' >> "$GITHUB_STEP_SUMMARY" | ||
cat "app/build/outputs/apk/release/output-metadata.json" >> "$GITHUB_STEP_SUMMARY" | ||
echo >> "$GITHUB_STEP_SUMMARY" | ||
echo '```' >> "$GITHUB_STEP_SUMMARY" | ||
# assume there is only one APK in that folder | ||
mv app/build/outputs/apk/release/*.apk "app/build/outputs/apk/release/NewPipe_v$VERSION_NAME.apk" | ||
- name: "Upload APK" | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: app | ||
path: app/build/outputs/apk/release/*.apk |
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.