-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide flatpak manifest, Appstream XML
- Loading branch information
Showing
6 changed files
with
248 additions
and
1 deletion.
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,6 +1,9 @@ | ||
*.pyc | ||
build/ | ||
dist/ | ||
/venv/ | ||
/.flatpak/ | ||
/io.github.pympress.flatpak | ||
|
||
pympress.egg-info/ | ||
|
||
|
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,54 @@ | ||
id: io.github.pympress | ||
runtime: org.gnome.Platform | ||
runtime-version: "46" | ||
sdk: org.gnome.Sdk | ||
command: pympress | ||
finish-args: | ||
- "--socket=wayland" | ||
- "--socket=fallback-x11" | ||
- "--socket=pulseaudio" | ||
- "--device=dri" | ||
- "--share=ipc" | ||
- "--filesystem=xdg-documents" | ||
- "--filesystem=xdg-run/gvfs" | ||
- "--filesystem=xdg-run/gvfsd" | ||
- "--own-name=io.github.pympress.*" | ||
- "--talk-name=org.gtk.vfs.*" | ||
build-options: | ||
build-args: | ||
- "--share=network" | ||
test-args: | ||
- "--socket=x11" | ||
- "--share=network" | ||
modules: | ||
- name: poppler | ||
buildsystem: cmake-ninja | ||
config-opts: | ||
- "-DCMAKE_POSITION_INDEPENDENT_CODE=ON" | ||
- "-DCMAKE_INSTALL_LIBDIR=/app/lib" | ||
- "-DCMAKE_INSTALL_INCLUDEDIR=/app/include" | ||
- "-DENABLE_BOOST=OFF" | ||
- "-DENABLE_LIBOPENJPEG=none" | ||
- "-DENABLE_QT5=OFF" | ||
- "-DENABLE_QT6=OFF" | ||
- "-DENABLE_CPP=OFF" | ||
- "-DENABLE_UTILS=OFF" | ||
sources: | ||
- type: archive | ||
url: "https://poppler.freedesktop.org/poppler-24.04.0.tar.xz" | ||
sha256: 1e804ec565acf7126eb2e9bb3b56422ab2039f7e05863a5dfabdd1ffd1bb77a7 | ||
- name: poppler-data | ||
buildsystem: cmake-ninja | ||
config-opts: | ||
- "-DCMAKE_BUILD_TYPE=RelWithDebInfo" | ||
sources: | ||
- type: archive | ||
url: "https://poppler.freedesktop.org/poppler-data-0.4.12.tar.gz" | ||
sha256: c835b640a40ce357e1b83666aabd95edffa24ddddd49b8daff63adb851cdab74 | ||
- name: pympress | ||
buildsystem: simple | ||
build-commands: | ||
- pip3 install --prefix=/app . | ||
sources: | ||
- type: dir | ||
path: ../ |
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
133 changes: 133 additions & 0 deletions
133
pympress/share/icons/hicolor/scalable/apps/io.github.pympress.svg
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop-application"> | ||
<id>io.github.pympress</id> | ||
<metadata_license>CC0</metadata_license> | ||
<project_license>GPL-2.0-or-later</project_license> | ||
<name translatable="no">Pympress</name> | ||
<launchable type="desktop-id">io.github.pympress.desktop</launchable> | ||
<summary>A simple and powerful dual-screen PDF reader designed for presentations</summary> | ||
|
||
<categories> | ||
<category>Graphics</category> | ||
<category>Education</category> | ||
<category>Office</category> | ||
<category>GNOME</category> | ||
<category>GTK</category> | ||
</categories> | ||
|
||
<description> | ||
<p> | ||
Pympress is a PDF presentation tool designed for dual-screen setups such as presentations and public talks. | ||
Highly configurable, fully-featured, and portable. | ||
</p> | ||
</description> | ||
|
||
<screenshots> | ||
<screenshot type="default"> | ||
<image> https://pympress.github.io/resources/pympress-screenshot.png</image> | ||
<caption>A screenshot with Pympress’ 2 screens</caption> | ||
</screenshot> | ||
</screenshots> | ||
|
||
<recommends> | ||
<control>keyboard</control> | ||
<control>pointing</control> | ||
<display_length compare="ge">500</display_length> | ||
</recommends> | ||
|
||
<url type="homepage">https://pympress.github.io/</url> | ||
<url type="bugtracker">https://github.com/Cimbali/pympress/issues</url> | ||
<developer_name>The Pympress Authors</developer_name> | ||
<update_contact>me@cimba.li</update_contact> | ||
<content_rating type="oars-1.0" /> | ||
|
||
<provides> | ||
<binary>pympress</binary> | ||
</provides> | ||
|
||
<releases> | ||
<release version="1.8.5" date="2023-12-15"> | ||
<description> | ||
see: https://github.com/Cimbali/pympress/releases/latest | ||
</description> | ||
</release> | ||
</releases> | ||
</component> |
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