Skip to content

Commit ebdc0af

Browse files
committed
update dependencies
1 parent 7d400b6 commit ebdc0af

8 files changed

Lines changed: 223 additions & 146 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
channel: stable
2727
- name: Generate code
28-
run: flutter pub get && flutter pub run build_runner build --delete-conflicting-outputs
28+
run: flutter pub get && dart run build_runner build --delete-conflicting-outputs
2929
- name: Build Flutter application for Windows
3030
run: flutter build windows
3131
- name: Create ZIP archive
@@ -74,7 +74,7 @@ jobs:
7474
with:
7575
channel: stable
7676
- name: Generate code
77-
run: flutter pub get && flutter pub run build_runner build --delete-conflicting-outputs
77+
run: flutter pub get && dart run build_runner build --delete-conflicting-outputs
7878
- name: Set up Java
7979
uses: actions/setup-java@v4
8080
with:

linux/flutter/generated_plugin_registrant.cc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
#include <media_kit_video/media_kit_video_plugin.h>
1717
#include <screen_retriever_linux/screen_retriever_linux_plugin.h>
1818
#include <url_launcher_linux/url_launcher_plugin.h>
19-
#include <volume_controller/volume_controller_plugin.h>
2019
#include <window_manager/window_manager_plugin.h>
2120
#include <window_size/window_size_plugin.h>
2221

@@ -51,9 +50,6 @@ void fl_register_plugins(FlPluginRegistry* registry) {
5150
g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
5251
fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
5352
url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);
54-
g_autoptr(FlPluginRegistrar) volume_controller_registrar =
55-
fl_plugin_registry_get_registrar_for_plugin(registry, "VolumeControllerPlugin");
56-
volume_controller_plugin_register_with_registrar(volume_controller_registrar);
5753
g_autoptr(FlPluginRegistrar) window_manager_registrar =
5854
fl_plugin_registry_get_registrar_for_plugin(registry, "WindowManagerPlugin");
5955
window_manager_plugin_register_with_registrar(window_manager_registrar);

linux/flutter/generated_plugins.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ list(APPEND FLUTTER_PLUGIN_LIST
1313
media_kit_video
1414
screen_retriever_linux
1515
url_launcher_linux
16-
volume_controller
1716
window_manager
1817
window_size
1918
)

macos/Flutter/GeneratedPluginRegistrant.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import screen_brightness_macos
2222
import screen_retriever_macos
2323
import url_launcher_macos
2424
import video_player_avfoundation
25-
import volume_controller
2625
import wakelock_plus
2726
import window_manager
2827
import window_size
@@ -45,7 +44,6 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
4544
ScreenRetrieverMacosPlugin.register(with: registry.registrar(forPlugin: "ScreenRetrieverMacosPlugin"))
4645
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
4746
FVPVideoPlayerPlugin.register(with: registry.registrar(forPlugin: "FVPVideoPlayerPlugin"))
48-
VolumeControllerPlugin.register(with: registry.registrar(forPlugin: "VolumeControllerPlugin"))
4947
WakelockPlusMacosPlugin.register(with: registry.registrar(forPlugin: "WakelockPlusMacosPlugin"))
5048
WindowManagerPlugin.register(with: registry.registrar(forPlugin: "WindowManagerPlugin"))
5149
WindowSizePlugin.register(with: registry.registrar(forPlugin: "WindowSizePlugin"))

0 commit comments

Comments
 (0)