[sound-juicer] Change application id to org.gnome.SoundJuicer



commit d9a4c3c531441b9ab7ad6cbbf4ab9b15e9b2fe04
Author: Phillip Wood <phillip wood dunelm org uk>
Date:   Wed Jan 25 18:46:52 2017 +0000

    Change application id to org.gnome.SoundJuicer
    
    Flatpak doesn’t like application ids with dashes in their name¹
    
    ¹ https://mail.gnome.org/archives/gtk-devel-list/2016-February/msg00000.html
    
    https://bugzilla.gnome.org/show_bug.cgi?id=777785

 src/sj-main.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/sj-main.c b/src/sj-main.c
index d36e9ce..b27d731 100644
--- a/src/sj-main.c
+++ b/src/sj-main.c
@@ -2151,8 +2151,9 @@ int main (int argc, char **argv)
 
   g_set_application_name (_("Sound Juicer"));
 
-  app = gtk_application_new ("org.gnome.sound-juicer",
+  app = gtk_application_new ("org.gnome.SoundJuicer",
                              G_APPLICATION_FLAGS_NONE);
+  g_application_set_resource_base_path (G_APPLICATION (app), "/org/gnome/sound-juicer");
   g_application_add_main_option_entries (G_APPLICATION (app), entries);
   g_application_add_option_group (G_APPLICATION (app), gst_init_get_option_group ());
   g_application_add_option_group (G_APPLICATION (app), brasero_media_get_option_group ());


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