Skip to content

Commit

Permalink
update: bilibili to v1.14.2.3575
Browse files Browse the repository at this point in the history
  • Loading branch information
msojocs committed Sep 22, 2024
1 parent b2b03e4 commit bc8b174
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 20 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ jobs:
mv ./tmp/build/extensions-${{ steps.tag.outputs.tag }}.tar.gz ./tmp/build/extensions-${version}-continuous.tar.gz
- name: Upload artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
# Artifact name
name: bilibili-app.src
path: tmp/src
- name: Upload artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
# Artifact name
name: bilibili-app.build
Expand All @@ -109,7 +109,7 @@ jobs:
with:
submodules: 'recursive'
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: bilibili-app.src
path: tmp/src
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
mv ./tmp/build/bilibili-${version}-${{ steps.tag.outputs.tag }}-${{ matrix.ARCH }}.tar.gz ./tmp/build/bilibili-${{ steps.tag.outputs.tag }}-${{ matrix.ARCH }}.tar.gz
- name: Upload artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
# Artifact name
name: bilibili-${{ matrix.ARCH }}.build
Expand All @@ -182,7 +182,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: bilibili-app.src
path: tmp/src
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
# tools/build-appimage.sh ${{ steps.tag.outputs.tag }} ${{ matrix.ARCH }}
- name: Upload artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
# Artifact name
name: bilibili-${{ matrix.ARCH }}.build
Expand All @@ -248,7 +248,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: bilibili-app.src
path: tmp/src
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
# tools/build-appimage.sh ${{ steps.tag.outputs.tag }} ${{ matrix.ARCH }}
- name: Upload artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
# Artifact name
name: bilibili-${{ matrix.ARCH }}.build
Expand All @@ -331,7 +331,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: bilibili-app.src
path: tmp/src
Expand Down Expand Up @@ -395,7 +395,7 @@ jobs:
fi
- name: Upload artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v3
with:
# Artifact name
name: bilibili-${{ matrix.ARCH }}.build
Expand Down Expand Up @@ -472,7 +472,7 @@ jobs:
# ls -l

# - name: Upload artifact
# uses: actions/upload-artifact@v2.3.1
# uses: actions/upload-artifact@v3
# with:
# # Artifact name
# name: bilibili-${{ matrix.ARCH }}.build
Expand Down Expand Up @@ -512,7 +512,7 @@ jobs:
# mkdir -p tmp/build
# mv *.snap tmp/build
# - name: Upload artifact
# uses: actions/upload-artifact@v2.3.1
# uses: actions/upload-artifact@v3
# with:
# # Artifact name
# name: bilibili-${{ matrix.ARCH }}.build
Expand All @@ -528,7 +528,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
- name: Inspect directory after downloading artifacts
run: |
rm -rf ./bilibili-app.src
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 🌈 v1.14.2-1 / 2024-09-22

## 🚀 功能

- bilibili: update to v1.14.2.3575

# 🌈 v1.14.0-2 / 2024-07-27

## 🐞 修复
Expand Down
2 changes: 1 addition & 1 deletion conf/bilibili_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.14.0.3432
1.14.2.3575
12 changes: 6 additions & 6 deletions tools/fix-other.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ cat "$root_dir/res/scripts/injectIndex.js" > "app/index.js"
notice "====app.js===="

notice "屏蔽检测"
grep -lr 'if (!dg' --exclude="app.asar" .
sed -i 's#if (!dg#if(false\&\&!dg#g' "app/main/app.js"
grep -lr 'if (!dj' --exclude="app.asar" .
sed -i 's#if (!dj#if(false\&\&!dj#g' "app/main/app.js"
# ==='win';if(! 警告9
grep -lr 'if (!im)' --exclude="app.asar" .
sed -i 's#if (!im)#if(false\&\&!im)#' "app/main/app.js"
grep -lr 'if (!iI)' --exclude="app.asar" .
sed -i 's#if (!iI)#if(false\&\&!iI)#' "app/main/app.js"
# global['bootstrapApp']();
grep -lr 'if (dg)' --exclude="app.asar" .
sed -i 's#if (dg)#if(!dg)#' "app/main/app.js"
grep -lr 'if (dj)' --exclude="app.asar" .
sed -i 's#if (dj)#if(!dj)#' "app/main/app.js"
#grep -lr '};!fb' --exclude="app.asar" .
#sed -i 's#};!fb#};false\&\&!fb#' "app/main/app.js"

Expand Down

0 comments on commit bc8b174

Please sign in to comment.