Fix some inconsistencies
Some checks failed
Build / download-system-deps (push) Successful in 49s
Build / build-gentoo (push) Successful in 1m37s
Build / get-source-code (push) Successful in 3m46s
Build / build-appimage (push) Successful in 45s
Build / build-android (push) Failing after 4m8s
Build / build-windows (push) Failing after 3m53s

This commit is contained in:
Zachary Hall 2024-11-06 15:22:53 -08:00
parent f91ff0f36f
commit 4c4481a9ba
3 changed files with 6 additions and 10 deletions

View file

@ -71,7 +71,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: build
name: appimage
path: build/Looper.AppImage
build-gentoo:
runs-on: gentoo

View file

@ -1,19 +1,14 @@
# Neko Player
# Looper
An audio player that can play back files with seamless loops using their metadata.
It can also change the pitch, tempo, and speed (which is pitch and tempo at the same time) using the SoundTouch libraries found on the system.
## Downloads
Flatpak:
AppImage:
[Nightlies](https://complecwaft.com/catmeow/neko-player/raw/branch/main/flatpakref/nightly.flatpakref)
[Nightlies](https://complecwaft.com/catmeow/looper/runs/latest/artifacts/appimage)
[Latest release](https://complecwaft.com/catmeow/neko-player/raw/branch/main/flatpakref/stable.flatpakref)
Windows:
[Latest release](https://complecwaft.com/catmeow/neko-player/releases/latest)
## Themes
This player supports theming! Go to the preferences window, and either select a theme, or open the theme editor.
@ -24,4 +19,4 @@ In addition, themes support changing the accent color to have the hue you select
|----------------------------------|---------------------------------------------------|--------------------------------------|-------------------------------------------------|
| Main Window | ![Screenshot](screenshots/main_window.png) | Dark mode with a custom accent color | ![Screenshot](screenshots/dark_with_accent.png) |
| Theme editor (Sizes tab) | ![Screenshot](screenshots/theme_editor_sizes.png) | Playback with the above settings | ![Screenshot](screenshots/playing.png) |
| Theme editor (Colors tab) | ![Screenshot](screenshots/theme_editor.png) | N/A | N/A |
| Theme editor (Colors tab) | ![Screenshot](screenshots/theme_editor.png) | N/A | N/A |

View file

@ -77,6 +77,7 @@ def main() -> None:
p = P.parse_args(argv[1:])
old_dir = os.curdir
os.chdir(basedir)
os.makedirs("build", exist_ok=True)
os.chdir("build")
args=["cmake", ".."]
for definition in p.cmake_vars: