-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from soyersoyer/appfix
Add icon, desktop file, metainfo for easier packaging; use GtkApplication for better DE integration
- Loading branch information
Showing
7 changed files
with
188 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[Desktop Entry] | ||
Type=Application | ||
Version=1.0 | ||
Name=MPK3 Settings | ||
Comment=AKAI MPK Mini MK3 settings | ||
Exec=mpk3-settings | ||
Icon=com.github.tsmetana.mpk3-settings | ||
Terminal=false | ||
Categories=Settings; |
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,32 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop-application"> | ||
<id>com.github.tsmetana.mpk3-settings</id> | ||
<launchable type="desktop-id">com.github.tsmetana.mpk3-settings</launchable> | ||
<name>MPK3 Settings</name> | ||
<summary>AKAI MPK Mini MK3 settings</summary> | ||
<description> | ||
<p> | ||
This is a GTK UI that allows to configure the Akai MPK mini III MIDI keyboard. | ||
It currently allows for reading the programs settings, changing them and writing back | ||
to the device and reading and writing the settings to a file. | ||
It's in a very early stage of development and has not been thoroughly tested. | ||
</p> | ||
</description> | ||
<metadata_license>FSFAP</metadata_license> | ||
<project_license>GPL-3.0-or-later</project_license> | ||
<supports> | ||
<control>pointing</control> | ||
<control>keyboard</control> | ||
<display_length compare="ge">large</display_length> | ||
</supports> | ||
<content_rating type="oars-1.0"/> | ||
<url type="homepage">https://github.com/tsmetana/mpk3-settings</url> | ||
<url type="bugtracker">https://github.com/tsmetana/mpk3-settings/issues</url> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<image>https://github.com/tsmetana/mpk3-settings/raw/main/pkg/gui_screen_1.png</image> | ||
</screenshot> | ||
</screenshots> | ||
<releases> | ||
</releases> | ||
</component> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#ifndef APP_WIN_H | ||
#define APP_WIN_H | ||
|
||
GtkWidget *app_win_create(void); | ||
GtkWidget *app_win_create(GtkApplication *app); | ||
|
||
#endif |
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