[gnome-nibbles] app: Make app ID consistent with data files



commit b8d3bba29f726db0ed512c2cd0df595cd294a4f7
Author: Florian Müllner <fmuellner gnome org>
Date:   Thu Mar 16 02:57:45 2017 +0100

    app: Make app ID consistent with data files
    
    The app ID used by .desktop and .appdata files is currently
    inconsistent with the app ID claimed on D-Bus. This isn't a
    problem if the application is installed through normal
    distribution channels, however flatpak requires a single
    consistent ID for all exported files. Some of this can
    be tweaked when building a flatpak, but it's much easier
    to just use the same ID from the get-go.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=780121

 data/gnome-nibbles.gresource.xml |    2 +-
 src/gnome-nibbles.vala           |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/data/gnome-nibbles.gresource.xml b/data/gnome-nibbles.gresource.xml
index fc331ae..8648686 100644
--- a/data/gnome-nibbles.gresource.xml
+++ b/data/gnome-nibbles.gresource.xml
@@ -8,7 +8,7 @@
     <file>controls-grid.ui</file>
     <file>preferences-dialog.ui</file>
   </gresource>
-  <gresource prefix="/org/gnome/nibbles/gtk">
+  <gresource prefix="/org/gnome/Nibbles/gtk">
     <file alias="menus.ui">nibbles-menus.ui</file>
   </gresource>
 </gresources>
diff --git a/src/gnome-nibbles.vala b/src/gnome-nibbles.vala
index 6cd0190..1e78d64 100644
--- a/src/gnome-nibbles.vala
+++ b/src/gnome-nibbles.vala
@@ -108,7 +108,7 @@ public class Nibbles : Gtk.Application
 
     public Nibbles ()
     {
-        Object (application_id: "org.gnome.nibbles", flags: ApplicationFlags.FLAGS_NONE);
+        Object (application_id: "org.gnome.Nibbles", flags: ApplicationFlags.FLAGS_NONE);
 
         add_main_option_entries (option_entries);
     }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]