Skip to content

Commit

Permalink
1.0.4 version bump and fix appimage build script
Browse files Browse the repository at this point in the history
  • Loading branch information
justin025 committed Dec 13, 2024
1 parent aaa37fb commit a5673d6
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg desktop-file-utils fuse patchelf wget
sudo apt-get install -y libgssapi-krb5-2 libxcb-cursor0 libxcb-xinerama0 libxcb1 ffmpeg desktop-file-utils fuse patchelf wget
- name: Run AppImage Build Script
run: scripts/build_appimage.sh
Expand Down
2 changes: 1 addition & 1 deletion distros/arch/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pkgname=onthespot-git
pkgver=1.0.3
pkgver=1.0.4
_branch="main"
pkgrel=1
pkgdesc="Qt based music downloader written in python"
Expand Down
6 changes: 3 additions & 3 deletions distros/fedora/onthespot.spec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Name: onthespot
Version: 1.0.3
Version: 1.0.4
Release: 1%{?dist}
Summary: A music downloader
License: GPL-2.0
Source0: onthespot-1.0.3-py3-none-any.whl
Source0: onthespot-1.0.4-py3-none-any.whl
Source1: org.onthespot.OnTheSpot.desktop
Source2: onthespot.png
BuildArch: noarch
Expand Down Expand Up @@ -47,5 +47,5 @@ install -m 0644 %{SOURCE2} %{buildroot}/usr/share/icons/hicolor/256x256/apps/
/usr/share/applications/org.onthespot.OnTheSpot.desktop

%changelog
* Sat Nov 30 2024 Justin Donofrio <[email protected]> - 1.0.3-1
* Sat Nov 30 2024 Justin Donofrio <[email protected]> - 1.0.4-1
- Initial package creation
12 changes: 5 additions & 7 deletions scripts/build_appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,11 @@ chmod +x AppRun
cp $(which ffmpeg) ../OnTheSpot.AppDir/usr/bin
cp $(which ffplay) ../OnTheSpot.AppDir/usr/bin

cp $(ldd $(which ffmpeg) | grep "=> /" | awk '{print $3}' | xargs -I {} cp {} ../OnTheSpot.AppDir/usr/lib)
cp $(ldd $(which ffplay) | grep "=> /" | awk '{print $3}' | xargs -I {} cp {} ../OnTheSpot.AppDir/usr/lib)

cp /lib/x86_64-linux-gnu/libssl.so.1.1 ../OnTheSpot.AppDir/usr/lib/
cp /lib/x86_64-linux-gnu/libz.so.1 ../OnTheSpot.AppDir/usr/lib/
cp /usr/lib/x86_64-linux-gnu/libffi.so.7 ../OnTheSpot.AppDir/usr/lib/

cp /usr/lib/x86_64-linux-gnu/libxcb-cursor.so* ../OnTheSpot.AppDir/usr/lib/
cp /usr/lib/x86_64-linux-gnu/libxcb-xinerama.so* ../OnTheSpot.AppDir/usr/lib/
cp /usr/lib/x86_64-linux-gnu/libxcb.so* ../OnTheSpot.AppDir/usr/lib/
cp /usr/lib/x86_64-linux-gnu/libxcb.so* ../OnTheSpot.AppDir/usr/lib/
cp /usr/lib/x86_64-linux-gnu/libgssapi_krb5.so* ../OnTheSpot.AppDir/usr/lib

echo " => Build OnTheSpot AppImage"
cd ..
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = onthespot
version = 1.0.3
version = 1.0.4
description = A simple and easy to use media downloader.
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion src/onthespot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def main():
config.set_("file_hertz", int(config.get("file_hertz")))

# Set Application Version
version = "v1.0.3"
version = "v1.0.4"
logger.info(f'OnTheSpot Version: {version}')
config.set_("version", version)

Expand Down

0 comments on commit a5673d6

Please sign in to comment.