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
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:
parent
f91ff0f36f
commit
4c4481a9ba
3 changed files with 6 additions and 10 deletions
|
@ -71,7 +71,7 @@ jobs:
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: build
|
name: appimage
|
||||||
path: build/Looper.AppImage
|
path: build/Looper.AppImage
|
||||||
build-gentoo:
|
build-gentoo:
|
||||||
runs-on: gentoo
|
runs-on: gentoo
|
||||||
|
|
13
README.md
13
README.md
|
@ -1,19 +1,14 @@
|
||||||
# Neko Player
|
# Looper
|
||||||
An audio player that can play back files with seamless loops using their metadata.
|
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.
|
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
|
## 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
|
## Themes
|
||||||
This player supports theming! Go to the preferences window, and either select a theme, or open the theme editor.
|
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) |
|
| 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 (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 |
|
||||||
|
|
|
@ -77,6 +77,7 @@ def main() -> None:
|
||||||
p = P.parse_args(argv[1:])
|
p = P.parse_args(argv[1:])
|
||||||
old_dir = os.curdir
|
old_dir = os.curdir
|
||||||
os.chdir(basedir)
|
os.chdir(basedir)
|
||||||
|
os.makedirs("build", exist_ok=True)
|
||||||
os.chdir("build")
|
os.chdir("build")
|
||||||
args=["cmake", ".."]
|
args=["cmake", ".."]
|
||||||
for definition in p.cmake_vars:
|
for definition in p.cmake_vars:
|
||||||
|
|
Loading…
Reference in a new issue