Permalink
Browse files

Make asglib read current component-type names

  • Loading branch information...
1 parent 435ad10 commit ea8b160c8f05ae018dcf54181204cc5740c2aa1c @ximion ximion committed Aug 11, 2016
Showing with 11 additions and 2 deletions.
  1. +11 −2 libappstream-glib/as-app.c
View
@@ -193,15 +193,15 @@ as_app_kind_to_string (AsAppKind kind)
AsAppKind
as_app_kind_from_string (const gchar *kind)
{
- if (g_strcmp0 (kind, "desktop") == 0)
+ if (g_strcmp0 (kind, "desktop-application") == 0)
return AS_APP_KIND_DESKTOP;
if (g_strcmp0 (kind, "codec") == 0)
return AS_APP_KIND_CODEC;
if (g_strcmp0 (kind, "font") == 0)
return AS_APP_KIND_FONT;
if (g_strcmp0 (kind, "inputmethod") == 0)
return AS_APP_KIND_INPUT_METHOD;
- if (g_strcmp0 (kind, "webapp") == 0)
+ if (g_strcmp0 (kind, "web-application") == 0)
return AS_APP_KIND_WEB_APP;
if (g_strcmp0 (kind, "source") == 0)
return AS_APP_KIND_SOURCE;
@@ -221,6 +221,15 @@ as_app_kind_from_string (const gchar *kind)
return AS_APP_KIND_SHELL_EXTENSION;
if (g_strcmp0 (kind, "localization") == 0)
return AS_APP_KIND_LOCALIZATION;
+
+ /* legacy */
+ if (g_strcmp0 (kind, "desktop") == 0)
+ return AS_APP_KIND_DESKTOP;
+ if (g_strcmp0 (kind, "desktop-app") == 0)
+ return AS_APP_KIND_DESKTOP;
+ if (g_strcmp0 (kind, "webapp") == 0)
+ return AS_APP_KIND_WEB_APP;
+
return AS_APP_KIND_UNKNOWN;
}

0 comments on commit ea8b160

Please sign in to comment.