Skip to content

Commit

Permalink
add appdata info
Browse files Browse the repository at this point in the history
  • Loading branch information
pa committed May 3, 2017
1 parent 5da7d06 commit acf4f2e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ set (DATADIR "/usr/share/nasc")
set (PKGDATADIR "${DATADIR}")
set (GETTEXT_PACKAGE "nasc")
set (RELEASE_NAME "nasc")
set (VERSION "0.3")
set (VERSION "0.4")
set (VERSION_INFO "Release")
set (PREFIX ${CMAKE_INSTALL_PREFIX})
set (DOLLAR "$")
Expand Down
15 changes: 14 additions & 1 deletion data/com.github.parnold-x.nasc.appdata.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2017 Your Name <you@email.com> -->
<!-- Copyright 2017 Peter Arnold <parnold1@gmail.com> -->
<component type="desktop">
<id>com.github.parnold-x.nasc.desktop</id>
<metadata_license>CC0</metadata_license>
<project_license>GPL-3.0+</project_license>
<name>NaSC</name>
<summary>Do maths like a normal person</summary>
<description>
<p>Its an app where you do maths like a normal person. It lets you type whatever you want and smartly figures out what is math and spits out an answer on the right pane. Then you can plug those answers in to future equations and if that answer changes, so does the equations its used in.</p>
</description>
<provides>
<binary>nasc</binary>
</provides>
<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/parnold-x/nasc/master/Screenshot.png</image>
</screenshot>
</screenshots>
<developer_name>Peter Arnold</developer_name>
<url type="homepage">https://github.com/parnold-x/nasc</url>
<url type="bugtracker">https://github.com/parnold-x/nasc/issues</url>
<url type="help">https://github.com/parnold-x/nasc/issues</url>
<custom>
<value key="x-appcenter-color-primary">#3278cd</value>
<value key="x-appcenter-color-primary-text">rgb(157, 200, 236)</value>
Expand Down
5 changes: 3 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
com.github.parnold-x.nasc (0.3.3) UNSTABLE; urgency=low
com.github.parnold-x.nasc (0.4) UNSTABLE; urgency=low

* update appdata.xml
* Move to github
* Redesign
* Initial release.

-- Peter Arnold <parnold1@gmail.com> Thu, 02 May 2017 18:31:16 +0100
-- Peter Arnold <parnold1@gmail.com> Wed, 03 May 2017 22:31:16 +0100
2 changes: 1 addition & 1 deletion src/config.vala
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ namespace Constants {
public const string PKGDATADIR = "/usr/share/nasc";
public const string GETTEXT_PACKAGE = "nasc";
public const string RELEASE_NAME = "nasc";
public const string VERSION = "0.3";
public const string VERSION = "0.4";
public const string VERSION_INFO = "Release";
}

0 comments on commit acf4f2e

Please sign in to comment.