79dce1a01c
Adds discussArticle() to BriefingApi and wires it through to the RSS news cards in BriefingScreen so tapping Discuss opens a chat conversation seeded with the article. Also caps RSS cards per message at 3 to avoid overly long briefing threads. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
28 lines
1.2 KiB
C++
28 lines
1.2 KiB
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <flutter_timezone/flutter_timezone_plugin.h>
|
|
#include <open_file_linux/open_file_linux_plugin.h>
|
|
#include <record_linux/record_linux_plugin.h>
|
|
#include <url_launcher_linux/url_launcher_plugin.h>
|
|
|
|
void fl_register_plugins(FlPluginRegistry* registry) {
|
|
g_autoptr(FlPluginRegistrar) flutter_timezone_registrar =
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "FlutterTimezonePlugin");
|
|
flutter_timezone_plugin_register_with_registrar(flutter_timezone_registrar);
|
|
g_autoptr(FlPluginRegistrar) open_file_linux_registrar =
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "OpenFileLinuxPlugin");
|
|
open_file_linux_plugin_register_with_registrar(open_file_linux_registrar);
|
|
g_autoptr(FlPluginRegistrar) record_linux_registrar =
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "RecordLinuxPlugin");
|
|
record_linux_plugin_register_with_registrar(record_linux_registrar);
|
|
g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
|
|
url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);
|
|
}
|