Update flatpak manifest, metainfo, desktop, and keyboard shortcuts
This commit is contained in:
parent
05caf7b32d
commit
cffb94605d
4 changed files with 15 additions and 5 deletions
|
|
@ -30,6 +30,12 @@ struct Luminate: App {
|
||||||
.defaultSize(width: 1100, height: 700)
|
.defaultSize(width: 1100, height: 700)
|
||||||
.quitShortcut()
|
.quitShortcut()
|
||||||
.closeShortcut()
|
.closeShortcut()
|
||||||
|
.keyboardShortcut("f".ctrl()) { _ in
|
||||||
|
// Focus search
|
||||||
|
}
|
||||||
|
.keyboardShortcut("r".ctrl()) { _ in
|
||||||
|
// Refresh library
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ Version=1.0
|
||||||
Type=Application
|
Type=Application
|
||||||
|
|
||||||
Name=Luminate
|
Name=Luminate
|
||||||
Comment=A template for creating GNOME apps with Swift
|
Comment=Jellyfin client for GNOME
|
||||||
Categories=Development;GNOME;
|
Categories=AudioVideo;Player;GNOME;
|
||||||
|
|
||||||
Icon=dev.bscubed.Luminate
|
Icon=dev.bscubed.Luminate
|
||||||
Exec=Luminate
|
Exec=Luminate
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<id>dev.bscubed.Luminate</id>
|
<id>dev.bscubed.Luminate</id>
|
||||||
|
|
||||||
<name>Luminate</name>
|
<name>Luminate</name>
|
||||||
<summary>A template for creating GNOME apps with Swift</summary>
|
<summary>GNOME Jellyfin client built with Swift</summary>
|
||||||
|
|
||||||
<metadata_license>MIT</metadata_license>
|
<metadata_license>MIT</metadata_license>
|
||||||
<project_license>LGPL-3.0-or-later</project_license>
|
<project_license>LGPL-3.0-or-later</project_license>
|
||||||
|
|
@ -16,7 +16,10 @@
|
||||||
|
|
||||||
<description>
|
<description>
|
||||||
<p>
|
<p>
|
||||||
This is a <em>long</em> description of this project. Yes - that is required!
|
A native GNOME Jellyfin client built with Swift and Adwaita.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Browse your media library, watch movies and TV shows, and keep track of your progress across devices.
|
||||||
</p>
|
</p>
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,9 @@
|
||||||
"finish-args": [
|
"finish-args": [
|
||||||
"--share=ipc",
|
"--share=ipc",
|
||||||
"--socket=fallback-x11",
|
"--socket=fallback-x11",
|
||||||
|
"--socket=wayland",
|
||||||
"--device=dri",
|
"--device=dri",
|
||||||
"--socket=wayland"
|
"--share=network"
|
||||||
],
|
],
|
||||||
"build-options": {
|
"build-options": {
|
||||||
"append-path": "/usr/lib/sdk/swift6/bin",
|
"append-path": "/usr/lib/sdk/swift6/bin",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue