Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions app/resources/linux/com.mindforger.mindforger.metainfo.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>com.mindforger.mindforger</id>

<name>Mindforger</name>
<summary>Thinking notebook and Markdown editor</summary>

<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-2.0-or-later</project_license>
<developer id="com.mindforger">
<name>Martin Dvorak</name>
</developer>

<url type="homepage">https://www.mindforger.com/</url>
<url type="bugtracker">https://github.com/dvorka/mindforger/issues</url>
<url type="faq">https://github.com/dvorka/mindforger/wiki/FAQs</url>
<url type="help">https://github.com/dvorka/mindforger/wiki</url>
<url type="vcs-browser">https://github.com/dvorka/mindforger</url>

<recommends>
<display_length compare="ge">768</display_length>
</recommends>

<description>
<p>
Are you drowning in information, but starving for knowledge?
</p>
<p>
Where do you keep your private remarks like ideas, personal plans, exam preparation notes, gift tips, how-tos, dreams, business visions, finance strategies, meeting minutes and auto coaching notes? Loads of documents, sketches and remarks spread around the file system, cloud, web and Post-it notes? Are you afraid of your knowledge privacy? Are you able to find particular remarks once you create them? Do you know how are the remarks mutually related when you browse, read or write them? No?
</p>
</description>

<content_rating type="oars-1.0"/>

<launchable type="desktop-id">mindforger.desktop</launchable>
<screenshots>
<screenshot type="default">
<image>https://www.mindforger.com/images/screenshots/tayr.png</image>
</screenshot>
<screenshot>
<image>https://www.mindforger.com/images/screenshots/knowledge-graph-navigator-light.png</image>
</screenshot>
<screenshot>
<image>https://www.mindforger.com/images/screenshots/tayw.png</image>
</screenshot>
<screenshot>
<image>https://www.mindforger.com/images/screenshots/markdown-images.png</image>
</screenshot>
<screenshot>
<image>https://www.mindforger.com/images/screenshots/hoisting.png</image>
</screenshot>
<screenshot>
<image>https://www.mindforger.com/images/screenshots/i18n.png</image>
</screenshot>
</screenshots>
</component>
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[Desktop Entry]
Encoding=UTF-8
Name=MindForger
Exec=/usr/bin/mindforger
Icon=/usr/share/icons/mindforger/mindforger.png
Exec=mindforger
Icon=mindforger
Type=Application
Categories=Office;
22 changes: 18 additions & 4 deletions mindforger.pro
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,23 @@ iconfiles.files += app/resources/icons/*
iconfiles.path = $$PREFIX/share/icons/mindforger/
INSTALLS += iconfiles

# experiment w/ file
shortcutfiles.files += app/resources/gnome-shell/mindforger.desktop
shortcutfiles.path = $$PREFIX/share/applications/
INSTALLS += shortcutfiles
# Standard location for svg icon
linuxsvg.files += app/resources/icons/mindforger.svg
linuxsvg.path = $$PREFIX/share/icons/hicolor/scalable/apps/
INSTALLS += linuxsvg

# Standard location for png icon
linuxpng.files += app/resources/icons/mindforger128x128.png
linuxpng.path = $$PREFIX/share/icons/hicolor/128x128/apps/
INSTALLS += linuxpng

linuxdesktopfiles.files += app/resources/linux/mindforger.desktop
linuxdesktopfiles.path = $$PREFIX/share/applications/
INSTALLS += linuxdesktopfiles

# Appstream Metainfo for linux software centers
appstreammetainfofiles.files += app/resources/linux/com.mindforger.mindforger.metainfo.xml
appstreammetainfofiles.path = $$PREFIX/share/metainfo/
INSTALLS += appstreammetainfofiles

# eof