mirror of
https://github.com/rzuasti/oott.git
synced 2026-07-08 19:21:54 +02:00
Implements the /about route with app description, version info, clickable links to the source repo and AGPL-3.0 license, and third-party copyright notices. Adds url_launcher for cross-platform link handling. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
672 B
C++
20 lines
672 B
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <encrypter/encrypter_plugin.h>
|
|
#include <url_launcher_linux/url_launcher_plugin.h>
|
|
|
|
void fl_register_plugins(FlPluginRegistry* registry) {
|
|
g_autoptr(FlPluginRegistrar) encrypter_registrar =
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "EncrypterPlugin");
|
|
encrypter_plugin_register_with_registrar(encrypter_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);
|
|
}
|