Skip to content

Commit 88449ae

Browse files
committed
correct AppImage metainfo file
1 parent c807f7b commit 88449ae

File tree

6 files changed

+26
-46
lines changed

6 files changed

+26
-46
lines changed

sdk/appimage-maker.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ else
2323
cp -f ./peb ./peb.app/peb
2424
fi
2525

26-
cp ./sdk/peb.desktop ./peb.app/peb.desktop
27-
cp ./sdk/camel.png ./peb.app/peb.png
28-
mkdir -p ./peb.app/usr/share
29-
cp ./sdk/metainfo ./peb.app/usr/share/metainfo
26+
cp ./sdk/appimage/peb.desktop ./peb.app/peb.desktop
27+
cp ./sdk/appimage/camel.png ./peb.app/peb.png
28+
mkdir -p ./peb.app/usr/share/metainfo
29+
cp ./sdk/appimage/peb.appdata.xml ./peb.app/usr/share/metainfo/peb.appdata.xml
3030

3131
for i in "$@"
3232
do
File renamed without changes.

sdk/appimage/peb.appdata.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<component type="desktop-application">
3+
<id>peb</id>
4+
<metadata_license>FSFAP</metadata_license>
5+
<project_license>LGPL-3.0</project_license>
6+
<name>peb</name>
7+
<summary>HTML interface for Perl 5 desktop applications</summary>
8+
<description>
9+
<p>Perl Executing Browser (PEB) is an HTML5 user interface for Perl 5 desktop applications. By default it runs local Perl 5 scripts as child processes with no server and is implemented as a C++ executable based on the Qt 5 libraries. Inspired by Electron and NW.js, PEB is another reuse of web technologies in desktop applications with Perl doing the heavy lifting instead of Node.js.</p>
10+
</description>
11+
<launchable type="desktop-id">peb.desktop</launchable>
12+
<url type="homepage">https://github.com/ddmitov/perl-executing-browser</url>
13+
<screenshots>
14+
<screenshot type="default">
15+
<image>https://github.com/ddmitov/perl-executing-browser/raw/master/doc/screenshot.png</image>
16+
</screenshot>
17+
</screenshots>
18+
<provides>
19+
<id>peb.desktop</id>
20+
</provides>
21+
</component>
File renamed without changes.

sdk/metainfo

Lines changed: 0 additions & 41 deletions
This file was deleted.

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ int main(int argc, char **argv)
4545
// ==============================
4646
// Application version:
4747
// ==============================
48-
application.setApplicationVersion("0.9.0");
48+
application.setApplicationVersion("0.9.1");
4949

5050
// ==============================
5151
// UTF-8 encoding application-wide:

0 commit comments

Comments
 (0)