New upstream version 4.8.1
Norbert Preining
2 years ago
|
0 |
cinnamon-menus (4.8.1) ulyssa; urgency=medium
|
|
1 |
|
|
2 |
[ Cobinja ]
|
|
3 |
* Fix handling of malformed desktop files (#40)
|
|
4 |
|
|
5 |
-- Clement Lefebvre <root@linuxmint.com> Thu, 26 Nov 2020 13:47:03 +0000
|
|
6 |
|
0 | 7 |
cinnamon-menus (4.8.0) ulyssa; urgency=medium
|
1 | 8 |
|
2 | 9 |
[ Clement Lefebvre ]
|
35 | 35 |
static void
|
36 | 36 |
update_app_data (GMenuDesktopAppInfo *info)
|
37 | 37 |
{
|
38 | |
const gchar *exec;
|
39 | |
const gchar *id;
|
40 | |
const gchar *startup_wm_class;
|
|
38 |
gchar *exec = NULL;
|
|
39 |
gchar *id = NULL;
|
|
40 |
gchar *startup_wm_class = NULL;
|
41 | 41 |
|
42 | 42 |
g_free (info->desktop_id);
|
43 | 43 |
info->desktop_id = NULL;
|
|
50 | 50 |
|
51 | 51 |
if (info->super_appinfo != NULL)
|
52 | 52 |
{
|
53 | |
exec = g_app_info_get_executable (G_APP_INFO (info->super_appinfo));
|
54 | |
id = g_app_info_get_id (G_APP_INFO (info->super_appinfo));
|
55 | |
startup_wm_class = g_desktop_app_info_get_startup_wm_class (info->super_appinfo);
|
56 | |
|
57 | |
if (strstr (exec, "flatpak") || strstr (exec, "bwrap"))
|
|
53 |
exec = (gchar *) g_app_info_get_executable (G_APP_INFO (info->super_appinfo));
|
|
54 |
id = (gchar *) g_app_info_get_id (G_APP_INFO (info->super_appinfo));
|
|
55 |
startup_wm_class = (gchar *) g_desktop_app_info_get_startup_wm_class (info->super_appinfo);
|
|
56 |
|
|
57 |
if (exec && (strstr (exec, "flatpak") || strstr (exec, "bwrap")))
|
58 | 58 |
{
|
59 | 59 |
info->desktop_id = g_strconcat (id, GMENU_DESKTOPAPPINFO_FLATPAK_SUFFIX, NULL);
|
60 | 60 |
if (startup_wm_class)
|
0 | |
project('cinnamon-menus', 'c', version : '4.8.0', meson_version: '>=0.40.0')
|
|
0 |
project('cinnamon-menus', 'c', version : '4.8.1', meson_version: '>=0.40.0')
|
1 | 1 |
|
2 | 2 |
gnome = import('gnome')
|
3 | 3 |
|