chore: upgrade packages (#304)

Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
This commit is contained in:
PartyDonut 2025-04-06 15:20:50 +02:00 committed by GitHub
parent 5bf4579a49
commit 370a5038cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 163 additions and 175 deletions

View file

@ -18,6 +18,7 @@
#include <screen_retriever_windows/screen_retriever_windows_plugin_c_api.h>
#include <share_plus/share_plus_windows_plugin_c_api.h>
#include <url_launcher_windows/url_launcher_windows.h>
#include <volume_controller/volume_controller_plugin_c_api.h>
#include <window_manager/window_manager_plugin.h>
void RegisterPlugins(flutter::PluginRegistry* registry) {
@ -45,6 +46,8 @@ void RegisterPlugins(flutter::PluginRegistry* registry) {
registry->GetRegistrarForPlugin("SharePlusWindowsPluginCApi"));
UrlLauncherWindowsRegisterWithRegistrar(
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
VolumeControllerPluginCApiRegisterWithRegistrar(
registry->GetRegistrarForPlugin("VolumeControllerPluginCApi"));
WindowManagerPluginRegisterWithRegistrar(
registry->GetRegistrarForPlugin("WindowManagerPlugin"));
}

View file

@ -15,6 +15,7 @@ list(APPEND FLUTTER_PLUGIN_LIST
screen_retriever_windows
share_plus
url_launcher_windows
volume_controller
window_manager
)