Skip to content

Commit b23ff33

Browse files
Upgrade Dart and Flutter target, fix Termiox and bumped sigrok libserialport to latest main (jpnurmi#99)
* Update config.h * merged 3.0 changes with branch * Updated disabled termios support * Changing the termiox definition as an experiment. * Removed termiox support from android, * resolved issue for android. * Restored all .gitignore files which got removed during fork. * feat: bumped serial port source code to latest master available on sigrok --------- Co-authored-by: ajeeshklr <[email protected]>
1 parent e9c1fd9 commit b23ff33

File tree

19 files changed

+46
-28
lines changed

19 files changed

+46
-28
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.0
2+
3+
* Upgrade to Dart 2.17, Flutter 3.0, libserialport 0.3
4+
15
## 0.2.3
26

37
* Fix linux builds for newer kernels (thanks @sitic)

android/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
/.idea/libraries
66
.DS_Store
77
/build
8-
/captures
8+
/captures

android/libserialport/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
/* #undef HAVE_STRUCT_TERMIOS_C_OSPEED */
5555

5656
/* Define to 1 if the system has the type `struct termiox'. */
57-
#define HAVE_STRUCT_TERMIOX 1
57+
#undef HAVE_STRUCT_TERMIOX
5858

5959
/* sys/file.h is available. */
6060
#define HAVE_SYS_FILE_H 1

example/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ lib/generated_plugin_registrant.dart
4242
app.*.symbols
4343

4444
# Obfuscation related
45-
app.*.map.json
45+
app.*.map.json

example/.metadata

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ version:
77
revision: 707aa49e42db746a8f4528e4700fb9017c5969d8
88
channel: master
99

10-
project_type: app
10+
project_type: app

example/android/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ GeneratedPluginRegistrant.java
88

99
# Remember to never publicly share your keystore.
1010
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11-
key.properties
11+
key.properties

example/linux/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
flutter/ephemeral
1+
flutter/ephemeral

example/macos/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
**/Pods/
44

55
# Xcode-related
6-
**/xcuserdata/
6+
**/xcuserdata/

example/macos/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
platform :osx, '10.11'
1+
platform :osx, '10.14'
22

33
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
44
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

example/macos/Runner.xcodeproj/project.pbxproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 51;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXAggregateTarget section */
@@ -203,7 +203,7 @@
203203
isa = PBXProject;
204204
attributes = {
205205
LastSwiftUpdateCheck = 0920;
206-
LastUpgradeCheck = 0930;
206+
LastUpgradeCheck = 1430;
207207
ORGANIZATIONNAME = "The Flutter Authors";
208208
TargetAttributes = {
209209
33CC10EC2044A3C60003C045 = {
@@ -256,6 +256,7 @@
256256
/* Begin PBXShellScriptBuildPhase section */
257257
3399D490228B24CF009A79C7 /* ShellScript */ = {
258258
isa = PBXShellScriptBuildPhase;
259+
alwaysOutOfDate = 1;
259260
buildActionMask = 2147483647;
260261
files = (
261262
);
@@ -407,7 +408,7 @@
407408
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
408409
GCC_WARN_UNUSED_FUNCTION = YES;
409410
GCC_WARN_UNUSED_VARIABLE = YES;
410-
MACOSX_DEPLOYMENT_TARGET = 10.11;
411+
MACOSX_DEPLOYMENT_TARGET = 10.14;
411412
MTL_ENABLE_DEBUG_INFO = NO;
412413
SDKROOT = macosx;
413414
SWIFT_COMPILATION_MODE = wholemodule;
@@ -490,7 +491,7 @@
490491
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
491492
GCC_WARN_UNUSED_FUNCTION = YES;
492493
GCC_WARN_UNUSED_VARIABLE = YES;
493-
MACOSX_DEPLOYMENT_TARGET = 10.11;
494+
MACOSX_DEPLOYMENT_TARGET = 10.14;
494495
MTL_ENABLE_DEBUG_INFO = YES;
495496
ONLY_ACTIVE_ARCH = YES;
496497
SDKROOT = macosx;
@@ -537,7 +538,7 @@
537538
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
538539
GCC_WARN_UNUSED_FUNCTION = YES;
539540
GCC_WARN_UNUSED_VARIABLE = YES;
540-
MACOSX_DEPLOYMENT_TARGET = 10.11;
541+
MACOSX_DEPLOYMENT_TARGET = 10.14;
541542
MTL_ENABLE_DEBUG_INFO = NO;
542543
SDKROOT = macosx;
543544
SWIFT_COMPILATION_MODE = wholemodule;

0 commit comments

Comments
 (0)