/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * Copyright (C) 2018-2024 Matthias Klumpp * * Licensed under the GNU Lesser General Public License Version 2.1 * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2.1 of the license, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library. If not, see . */ #if !defined(__APPSTREAM_H) && !defined(AS_COMPILATION) #error "Only can be included directly." #endif #ifndef __AS_NEWS_CONVERT_H #define __AS_NEWS_CONVERT_H #include #include "as-release.h" G_BEGIN_DECLS /** * AsNewsFormatKind: * @AS_NEWS_FORMAT_KIND_UNKNOWN: Unknown release info format. * @AS_NEWS_FORMAT_KIND_YAML: YAML release information. * @AS_NEWS_FORMAT_KIND_TEXT: Pure text release information. * @AS_NEWS_FORMAT_KIND_MARKDOWN: Release information formatted in Markdown. * * Format of a NEWS file. **/ typedef enum { AS_NEWS_FORMAT_KIND_UNKNOWN, AS_NEWS_FORMAT_KIND_YAML, AS_NEWS_FORMAT_KIND_TEXT, AS_NEWS_FORMAT_KIND_MARKDOWN, /*< private >*/ AS_NEWS_FORMAT_KIND_LAST } AsNewsFormatKind; const gchar *as_news_format_kind_to_string (AsNewsFormatKind kind); AsNewsFormatKind as_news_format_kind_from_string (const gchar *kind_str); GPtrArray *as_news_to_releases_from_data (const gchar *data, AsNewsFormatKind kind, gint entry_limit, gint translatable_limit, GError **error); GPtrArray *as_news_to_releases_from_filename (const gchar *fname, AsNewsFormatKind kind, gint entry_limit, gint translatable_limit, GError **error); gchar *as_releases_to_metainfo_xml_chunk (GPtrArray *releases, GError **error); gboolean as_releases_to_news_data (GPtrArray *releases, AsNewsFormatKind kind, gchar **news_data, GError **error); gboolean as_releases_to_news_file (GPtrArray *releases, const gchar *fname, AsNewsFormatKind kind, GError **error); G_END_DECLS #endif /* __AS_NEWS_CONVERT_H */