-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from enteraname74/develop
v0.7.0-Desktop
- Loading branch information
Showing
11 changed files
with
160 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
/build | ||
.gradle | ||
|
||
soulSearchingDatabase.db | ||
soulSearchingDatabase.db | ||
|
||
# Flatpak | ||
build-dir | ||
repo | ||
.flatpak-builder | ||
*.flatpak |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Soul Searching Desktop | ||
|
||
Originally an Android application, *Soul Searching* is now also available as a desktop application. | ||
For now, it works for Linux. The best way to use the application is with a flatpak, as it holds all the needed dependencies for the app to work properly. | ||
|
||
## Building the application | ||
Use the `packageFlatpakReleaseDistributable` gradle task to build a flatpak of the application. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[Desktop Entry] | ||
Name=Soul Searching | ||
GenericName=Music Player | ||
Exec=SoulSearching | ||
Comment=Music player application. | ||
Icon=io.github.enteraname74.soulsearching | ||
Terminal=false | ||
Type=Application | ||
Categories=Audio;Player;Music; | ||
Keywords=Music;Player;Audio;Songs;Playlist;Albums;Artists; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
app-id: io.github.enteraname74.soulsearching | ||
runtime: org.freedesktop.Platform | ||
runtime-version: '22.08' | ||
sdk: org.freedesktop.Sdk | ||
command: SoulSearching | ||
build-options: | ||
env: | ||
BUILDCC: gcc | ||
finish-args: | ||
- --share=network | ||
- --share=ipc | ||
- --socket=pulseaudio | ||
- --filesystem=home | ||
- --device=dri | ||
- --socket=x11 | ||
modules: | ||
- name: vlc | ||
buildsystem: autotools | ||
config-opts: | ||
- --disable-lua | ||
- --disable-a52 | ||
build-commands: | ||
- export BUILDCC=gcc | ||
- ./configure --prefix=/app --disable-lua --disable-a52 | ||
- make -j$(nproc) | ||
- make install | ||
sources: | ||
- type: archive | ||
url: https://get.videolan.org/vlc/3.0.20/vlc-3.0.20.tar.xz | ||
sha256: adc7285b4d2721cddf40eb5270cada2aaa10a334cb546fd55a06353447ba29b5 | ||
|
||
|
||
- name: SoulSearching | ||
buildsystem: simple | ||
build-commands: | ||
- install -Dm 644 -t /app/share/applications io.github.enteraname74.soulsearching.desktop | ||
- install -Dm 644 app_icon_bg.png /app/share/icons/hicolor/128x128/apps/io.github.enteraname74.soulsearching.png | ||
- cp -ru * /app | ||
sources: | ||
- type: archive | ||
path: build/distributions/soulsearching-0.7.0-linux.tar.gz | ||
- type: file | ||
path: src/main/composeResources/drawable/app_icon_bg.png | ||
- type: file | ||
path: io.github.enteraname74.soulsearching.desktop |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...src/desktopMain/kotlin/com/github/enteraname74/soulsearching/domain/AppVersion.desktop.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package com.github.enteraname74.soulsearching.domain | ||
|
||
actual object AppVersion { | ||
actual val versionName = "0.1.0" | ||
actual val versionName = "0.7.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters