Skip to content

Commit ed38fc2

Browse files
committed
git tag v1.0.5+62
1 parent b921fdc commit ed38fc2

17 files changed

+755
-486
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.0.5+62]
2+
3+
* logo-wechat重命名为 logo-wechat-stroke-filled
4+
15
## [1.0.5+61]
26

37
* config wifi

example/linux/flutter/generated_plugin_registrant.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@
66

77
#include "generated_plugin_registrant.h"
88

9+
#include <file_selector_linux/file_selector_plugin.h>
910
#include <url_launcher_linux/url_launcher_plugin.h>
1011

1112
void fl_register_plugins(FlPluginRegistry* registry) {
13+
g_autoptr(FlPluginRegistrar) file_selector_linux_registrar =
14+
fl_plugin_registry_get_registrar_for_plugin(registry, "FileSelectorPlugin");
15+
file_selector_plugin_register_with_registrar(file_selector_linux_registrar);
1216
g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
1317
fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
1418
url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);

example/linux/flutter/generated_plugins.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#
44

55
list(APPEND FLUTTER_PLUGIN_LIST
6+
file_selector_linux
67
url_launcher_linux
78
)
89

example/macos/Flutter/GeneratedPluginRegistrant.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
import FlutterMacOS
66
import Foundation
77

8+
import file_picker
9+
import file_selector_macos
810
import flutter_nsd
911
import network_info_plus
1012
import package_info_plus
@@ -14,11 +16,13 @@ import url_launcher_macos
1416
import webview_flutter_wkwebview
1517

1618
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
19+
FilePickerPlugin.register(with: registry.registrar(forPlugin: "FilePickerPlugin"))
20+
FileSelectorPlugin.register(with: registry.registrar(forPlugin: "FileSelectorPlugin"))
1721
SwiftFlutterNsdPlugin.register(with: registry.registrar(forPlugin: "SwiftFlutterNsdPlugin"))
1822
NetworkInfoPlusPlugin.register(with: registry.registrar(forPlugin: "NetworkInfoPlusPlugin"))
1923
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
2024
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
2125
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
2226
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
23-
FLTWebViewFlutterPlugin.register(with: registry.registrar(forPlugin: "FLTWebViewFlutterPlugin"))
27+
WebViewFlutterPlugin.register(with: registry.registrar(forPlugin: "WebViewFlutterPlugin"))
2428
}

0 commit comments

Comments
 (0)