Skip to content

Commit

Permalink
Bump version, 0.4.9+49
Browse files Browse the repository at this point in the history
  • Loading branch information
suvarna84 committed Jan 10, 2025
1 parent a78616a commit ea9a820
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions lib/plotSerial.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1248,7 +1248,23 @@ class _PlotSerialPageState extends State<PlotSerialPage> {
}else{
return Container();
}
}

Widget ChannelStatus(int vertical, int horizontal, int channel){
return Container(
height: SizeConfig.blockSizeVertical * vertical,
width: SizeConfig.blockSizeHorizontal * horizontal,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
children: <Widget>[
Text("Gain: ",
style: new TextStyle(fontSize: 12.0, color: Colors.white)),
gainDropdown(channel)
]
),
)
);
}

Widget gainOption(int vertical, int horizontal, int channel){
Expand Down
2 changes: 2 additions & 0 deletions macos/Flutter/GeneratedPluginRegistrant.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import flutter_libserialport
import geolocator_apple
import package_info_plus
import path_provider_foundation
import reactive_ble_mobile
import share_plus
import url_launcher_macos

Expand All @@ -23,6 +24,7 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
GeolocatorPlugin.register(with: registry.registrar(forPlugin: "GeolocatorPlugin"))
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
ReactiveBlePlugin.register(with: registry.registrar(forPlugin: "ReactiveBlePlugin"))
SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
}
15 changes: 15 additions & 0 deletions macos/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,16 @@ PODS:
- path_provider_foundation (0.0.1):
- Flutter
- FlutterMacOS
- Protobuf (3.29.1)
- Reachability (3.2)
- reactive_ble_mobile (0.0.1):
- Flutter
- FlutterMacOS
- Protobuf (~> 3.5)
- SwiftProtobuf (~> 1.0)
- share_plus (0.0.1):
- FlutterMacOS
- SwiftProtobuf (1.28.2)
- url_launcher_macos (0.0.1):
- FlutterMacOS

Expand All @@ -33,13 +40,16 @@ DEPENDENCIES:
- geolocator_apple (from `Flutter/ephemeral/.symlinks/plugins/geolocator_apple/macos`)
- package_info_plus (from `Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos`)
- path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`)
- reactive_ble_mobile (from `Flutter/ephemeral/.symlinks/plugins/reactive_ble_mobile/darwin`)
- share_plus (from `Flutter/ephemeral/.symlinks/plugins/share_plus/macos`)
- url_launcher_macos (from `Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos`)

SPEC REPOS:
trunk:
- libserialport
- Protobuf
- Reachability
- SwiftProtobuf

EXTERNAL SOURCES:
connectivity_macos:
Expand All @@ -58,6 +68,8 @@ EXTERNAL SOURCES:
:path: Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos
path_provider_foundation:
:path: Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin
reactive_ble_mobile:
:path: Flutter/ephemeral/.symlinks/plugins/reactive_ble_mobile/darwin
share_plus:
:path: Flutter/ephemeral/.symlinks/plugins/share_plus/macos
url_launcher_macos:
Expand All @@ -73,8 +85,11 @@ SPEC CHECKSUMS:
libserialport: 1cb25e66ef3c92a8e59c2ea3820302c3fa2268cd
package_info_plus: 02d7a575e80f194102bef286361c6c326e4c29ce
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
Protobuf: 0c5a9e64f38aed73b5d1ff88a20112ce195cf909
Reachability: 33e18b67625424e47b6cde6d202dce689ad7af96
reactive_ble_mobile: 856183aeda09f2a676bbaecbea8915c3cb1d33df
share_plus: 76dd39142738f7a68dd57b05093b5e8193f220f7
SwiftProtobuf: 4dbaffec76a39a8dc5da23b40af1a5dc01a4c02d
url_launcher_macos: c82c93949963e55b228a30115bd219499a6fe404

PODFILE CHECKSUM: 353c8bcc5d5b0994e508d035b5431cfe18c1dea7
Expand Down

0 comments on commit ea9a820

Please sign in to comment.