Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create an AppData file #235

Merged
merged 1 commit into from
Mar 26, 2015
Merged
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
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,9 @@ install(FILES src/icons/${PROJECT_NAME}.png

install(FILES distri/${PROJECT_NAME}.desktop
DESTINATION share/applications/)

install(FILES distri/${PROJECT_NAME}.desktop.appdata.xml
DESTINATION share/appdata/)
endif(UNIX AND NOT APPLE)

#cpack
Expand Down
45 changes: 45 additions & 0 deletions distri/sqlitebrowser.desktop.appdata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop">
<id>sqlitebrowser.desktop</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>MPL-2.0 and GPL-3.0+</project_license>
<name>DB Browser for SQLite</name>
<summary>DB Browser for SQLite is a light GUI editor for SQLite databases</summary>
<description>
<p>DB Browser for SQLite is a high quality, visual, open source tool to create, design, and edit database files compatible with SQLite.</p>
<p>It is for users and developers wanting to create databases, search, and edit data. It uses a familiar spreadsheet-like interface, and you don't need to learn complicated SQL commands.</p>
<p>Controls and wizards are available for users to:</p>
<ul>
<li>Create and compact database files</li>
<li>Create, define, modify and delete tables</li>
<li>Create, define and delete indexes</li>
<li>Browse, edit, add and delete records</li>
<li>Search records</li>
<li>Import and export records as text</li>
<li>Import and export tables from/to CSV files</li>
<li>Import and export databases from/to SQL dump files</li>
<li>Issue SQL queries and inspect the results</li>
<li>Examine a log of all SQL commands issued by the application</li>
</ul>
</description>
<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/sqlitebrowser/db4s-screenshots/master/v3.3/gnome3_2-execute.png</image>
<caption>DB Browser for SQLite, executing query</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/sqlitebrowser/db4s-screenshots/master/v3.3/gnome3_1-plot.png</image>
<caption>DB Browser for SQLite, browsing data with plot</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/sqlitebrowser/db4s-screenshots/master/v3.3/kde413_2-blob.png</image>
<caption>DB Browser for SQLite, browing a blob field</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/sqlitebrowser/db4s-screenshots/master/v3.3/kde413_1-create_table.png</image>
<caption>DB Browser for SQLite, creating a table</caption>
</screenshot>
</screenshots>
<url type="homepage">http://sqlitebrowser.org/</url>
<url type="bugtracker">https://github.com/sqlitebrowser/sqlitebrowser/issues</url>
</component>