Change app-id to me.gapixels.Megapixels

This commit is contained in:
Martijn Braam
2023-12-02 11:23:31 +01:00
parent 7f5c7c1c4c
commit 8ca9028d45
10 changed files with 21 additions and 18 deletions

View File

@@ -4,7 +4,7 @@ Exec=megapixels
Terminal=false
Type=Application
Categories=GTK;Photography;Graphics;
Icon=org.postmarketos.Megapixels
Icon=me.gapixels.Megapixels
X-Purism-FormFactor=Workstation;Mobile;
X-Phosh-UsesFeedback=true
StartupNotify=true

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<schemalist>
<schema path="/org/postmarketos/megapixels/" id="org.postmarketos.Megapixels">
<schema path="/me/gapixels/megapixels/" id="me.gapixels.Megapixels">
<key name="save-raw" type='b'>
<default>true</default>
<summary>Don't throw away the .dng file after post processing</summary>

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2020 Martijn Braam -->
<component type="desktop-application">
<id>org.postmarketos.Megapixels</id>
<id>me.gapixels.Megapixels</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0</project_license>
<name>Megapixels</name>
@@ -14,7 +14,7 @@
quality pictures.
</p>
</description>
<launchable type="desktop-id">org.postmarketos.Megapixels.desktop</launchable>
<launchable type="desktop-id">me.gapixels.Megapixels.desktop</launchable>
<provides>
<binary>megapixels</binary>
</provides>

View File

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@@ -1,20 +1,20 @@
resources = gnome.compile_resources('megapixels-resources',
'org.postmarketos.Megapixels.gresource.xml')
'me.gapixels.Megapixels.gresource.xml')
install_data(['org.postmarketos.Megapixels.desktop'],
install_data(['me.gapixels.Megapixels.desktop'],
install_dir: get_option('datadir') / 'applications')
install_data(['org.postmarketos.Megapixels.metainfo.xml'],
install_data(['me.gapixels.Megapixels.metainfo.xml'],
install_dir: get_option('datadir') / 'metainfo')
install_data('org.postmarketos.Megapixels.svg',
install_data('me.gapixels.Megapixels.svg',
install_dir: join_paths(get_option('datadir'), 'icons/hicolor/scalable/apps'))
install_data(['postprocess.sh'],
install_dir: get_option('datadir') / 'megapixels/',
install_mode: 'rwxr-xr-x')
settings_schemas = ['org.postmarketos.Megapixels.gschema.xml']
settings_schemas = ['me.gapixels.Megapixels.gschema.xml']
schemas_dir = get_option('datadir') / 'glib-2.0' / 'schemas'
install_data(settings_schemas, install_dir: schemas_dir)
gnome.compile_schemas(depend_files: files(settings_schemas))