mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-04-28 09:57:47 -05:00
Update the used Flutter version to 3.16.5 and the used packages to their latest version. The Supabase package contained some breaking changes: - `functionUrl` is not exported anymore, so that it must be generated by ourselfs - `Provider` was renamed to `OAuthProvider` - The `signInWithApple` method was removed and is now implemented by us via the `sign_in_with_apple` package. We also renamed the `DesktopLoginManager` to `DesktopSignInManager` to use the same naming as in other places of the app, where we are always using sign in and not login.
36 lines
1.7 KiB
C++
36 lines
1.7 KiB
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <gtk/gtk_plugin.h>
|
|
#include <media_kit_libs_linux/media_kit_libs_linux_plugin.h>
|
|
#include <media_kit_video/media_kit_video_plugin.h>
|
|
#include <screen_retriever/screen_retriever_plugin.h>
|
|
#include <url_launcher_linux/url_launcher_plugin.h>
|
|
#include <window_manager/window_manager_plugin.h>
|
|
|
|
void fl_register_plugins(FlPluginRegistry* registry) {
|
|
g_autoptr(FlPluginRegistrar) gtk_registrar =
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "GtkPlugin");
|
|
gtk_plugin_register_with_registrar(gtk_registrar);
|
|
g_autoptr(FlPluginRegistrar) media_kit_libs_linux_registrar =
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "MediaKitLibsLinuxPlugin");
|
|
media_kit_libs_linux_plugin_register_with_registrar(media_kit_libs_linux_registrar);
|
|
g_autoptr(FlPluginRegistrar) media_kit_video_registrar =
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "MediaKitVideoPlugin");
|
|
media_kit_video_plugin_register_with_registrar(media_kit_video_registrar);
|
|
g_autoptr(FlPluginRegistrar) screen_retriever_registrar =
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "ScreenRetrieverPlugin");
|
|
screen_retriever_plugin_register_with_registrar(screen_retriever_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);
|
|
g_autoptr(FlPluginRegistrar) window_manager_registrar =
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "WindowManagerPlugin");
|
|
window_manager_plugin_register_with_registrar(window_manager_registrar);
|
|
}
|