-
-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Further improvements for the 'Lite' Flatpak variant
These changes should only affect the Linux build.
- Loading branch information
Showing
14 changed files
with
73 additions
and
48 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
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,24 @@ | ||
set(APPDATA_NAME_REGULAR ${APP_NAME}) | ||
set(APPDATA_NAME_LITE "${APP_NAME} Lite") | ||
set(APPDATA_SUMMARY_REGULAR "Simple, yet powerful news feed reader") | ||
set(APPDATA_SUMMARY_LITE "${APPDATA_SUMMARY_REGULAR} (no built-in web browser)") | ||
|
||
if(USE_WEBENGINE) | ||
set(APPDATA_NAME "${APPDATA_NAME_REGULAR}") | ||
set(APPDATA_SUMMARY "${APPDATA_SUMMARY_REGULAR}") | ||
else() | ||
set(APPDATA_NAME "${APPDATA_NAME_LITE}") | ||
set(APPDATA_SUMMARY "${APPDATA_SUMMARY_LITE}") | ||
endif() | ||
|
||
configure_file( | ||
rssguard.desktop.in | ||
${CMAKE_BINARY_DIR}/${APP_REVERSE_NAME}.desktop | ||
) | ||
configure_file( | ||
rssguard.metainfo.xml.in | ||
${CMAKE_BINARY_DIR}/${APP_REVERSE_NAME}.metainfo.xml | ||
) | ||
|
||
set(APPDATA_NAME ${APPDATA_NAME} PARENT_SCOPE) | ||
set(APPDATA_SUMMARY ${APPDATA_SUMMARY} PARENT_SCOPE) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,11 @@ | ||
[Desktop Entry] | ||
Type=Application | ||
Name=@APPDATA_NAME@ | ||
Comment=@APPDATA_SUMMARY@ | ||
Icon=@APP_REVERSE_NAME@ | ||
Exec=@APP_LOW_NAME@ | ||
Categories=Feed;News;Network;Qt; | ||
StartupWMClass=@APP_LOW_NAME@ | ||
X-GNOME-SingleWindow=true | ||
X-GNOME-Autostart-Delay=15 | ||
X-LXQt-Need-Tray=true |
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,16 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Copyright 2017-2022 Martin Rotter <[email protected]> --> | ||
<component type="desktop-application"> | ||
<id>io.github.martinrotter.rssguard</id> | ||
<id>@APP_REVERSE_NAME@</id> | ||
<metadata_license>CC0-1.0</metadata_license> | ||
<project_license>GPL-3.0</project_license> | ||
<name>RSS Guard</name> | ||
<name>@APPDATA_NAME@</name> | ||
<developer_name>Martin Rotter</developer_name> | ||
<update_contact>rotter.martinos_AT_gmail.com</update_contact> | ||
<summary>Simple (yet powerful) feed reader</summary> | ||
<summary>@APPDATA_SUMMARY@</summary> | ||
<description> | ||
<p> | ||
RSS Guard is a simple (yet powerful) feed reader, written in C++ and Qt. | ||
@APPDATA_NAME@ is a news feed reader, written in C++ and Qt. | ||
</p> | ||
<p> | ||
It supports many feed formats, such as: | ||
|
@@ -31,7 +31,7 @@ | |
<li>Tiny Tiny RSS</li> | ||
</ul> | ||
</description> | ||
<launchable type="desktop-id">io.github.martinrotter.rssguard.desktop</launchable> | ||
<launchable type="desktop-id">@APP_REVERSE_NAME@.desktop</launchable> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<image>https://raw.githubusercontent.com/martinrotter/rssguard/master/resources/docs/images/rssguard-window.png</image> | ||
|
@@ -63,6 +63,6 @@ | |
<release version="4.2.5" date="2022-12-08" /> | ||
</releases> | ||
<provides> | ||
<binary>rssguard</binary> | ||
<binary>@APP_LOW_NAME@</binary> | ||
</provides> | ||
</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
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
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
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