Skip to content

Commit 911c8de

Browse files
committed
ci: Start using our "Extras" release
Instead of having files scattered across various releases, this unifies them all to one place
1 parent 3b8f8af commit 911c8de

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/build_and_release.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ jobs:
5353
sudo apt-get install -y \
5454
libgif7 \
5555
wget
56-
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/j/jpeg-xl/libjxl-dev_0.10.3-4ubuntu1_amd64.deb
57-
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/j/jpeg-xl/libjxl0.10_0.10.3-4ubuntu1_amd64.deb
58-
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/h/highway/libhwy-dev_1.2.0-3ubuntu2_amd64.deb
59-
wget http://old-releases.ubuntu.com/ubuntu/pool/universe/h/highway/libhwy1t64_1.2.0-3ubuntu2_amd64.deb
60-
wget http://mirrors.edge.kernel.org/ubuntu/pool/main/l/lcms2/liblcms2-dev_2.14-2build1_amd64.deb
61-
curl -L -o lrclib-solver https://github.com/Taiko2k/Tauon/releases/download/v8.1.4/lrclib-solver-linux
56+
wget https://github.com/Taiko2k/Tauon/releases/download/Extras/libjxl-dev_0.10.3-4ubuntu1_amd64.deb
57+
wget https://github.com/Taiko2k/Tauon/releases/download/Extras/libjxl0.10_0.10.3-4ubuntu1_amd64.deb
58+
wget https://github.com/Taiko2k/Tauon/releases/download/Extras/libhwy-dev_1.2.0-3ubuntu2_amd64.deb
59+
wget https://github.com/Taiko2k/Tauon/releases/download/Extras/libhwy1t64_1.2.0-3ubuntu2_amd64.deb
60+
wget https://github.com/Taiko2k/Tauon/releases/download/Extras/liblcms2-dev_2.14-2build1_amd64.deb
61+
curl -L -o lrclib-solver https://github.com/Taiko2k/Tauon/releases/download/Extras/lrclib-solver-linux
6262
sudo dpkg -i *.deb
6363
# libsdl2-image-dev \
6464

@@ -225,7 +225,7 @@ jobs:
225225

226226
- name: Download lirclib solver
227227
run: |
228-
curl -L -o lrclib-solver https://github.com/Taiko2k/Tauon/releases/download/v8.1.4/lrclib-solver-macos
228+
curl -L -o lrclib-solver https://github.com/Taiko2k/Tauon/releases/download/Extras/lrclib-solver-macos
229229
230230
- name: Build macOS Now Playing helper
231231
run: |
@@ -411,9 +411,9 @@ jobs:
411411
- name: Download optionals from latest release files and notofonts' GitHub
412412
shell: msys2 {0}
413413
run: |
414-
curl -L -o lrclib-solver.exe https://github.com/Taiko2k/Tauon/releases/download/v8.1.4/lrclib-solver.exe
415-
curl -L -o librespot.exe https://github.com/Taiko2k/Tauon/releases/download/v8.1.4/librespot.exe # v0.6.0 - https://github.com/librespot-org/librespot/releases
416-
curl -L -o TauonSMTC.dll https://github.com/Taiko2k/Tauon/releases/download/v8.1.4/TauonSMTC.dll
414+
curl -L -o lrclib-solver.exe https://github.com/Taiko2k/Tauon/releases/download/Extras/lrclib-solver.exe
415+
curl -L -o librespot.exe https://github.com/Taiko2k/Tauon/releases/download/Extras/librespot.exe # v0.6.0 - https://github.com/librespot-org/librespot/releases
416+
curl -L -o TauonSMTC.dll https://github.com/Taiko2k/Tauon/releases/download/Extras/TauonSMTC.dll
417417
mkdir fonts
418418
curl -L -o fonts/NotoSans-ExtraCondensed.ttf https://github.com/notofonts/notofonts.github.io/raw/refs/heads/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensed.ttf # 800KB
419419
curl -L -o fonts/NotoSans-ExtraCondensedBold.ttf https://github.com/notofonts/notofonts.github.io/raw/refs/heads/main/fonts/NotoSans/full/ttf/NotoSans-ExtraCondensedBold.ttf # 800KB

src/tauon/t_modules/t_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7768,7 +7768,7 @@ def toggle_milky(self, _track_object: TrackClass) -> None:
77687768
def download_presets() -> None:
77697769
self.show_message(_("Downloading..."))
77707770
def dl() -> None:
7771-
url = "https://github.com/Taiko2k/Tauon/releases/download/v8.2.2/creamingsodav1.zip"
7771+
url = "https://github.com/Taiko2k/Tauon/releases/download/Extras/creamingsodav1.zip"
77727772
assert url
77737773
target_directory = self.user_directory / "presets"
77747774
target_directory.mkdir(parents=True, exist_ok=True)

0 commit comments

Comments
 (0)