Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@
## 0.6.1

- Just a formatting fix

## 0.6.2

- Update `dart_rfb` to version 0.7.0 (refactored read loop)
4 changes: 2 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ packages:
name: dart_rfb
url: "https://pub.dartlang.org"
source: hosted
version: "0.6.0"
version: "0.7.0"
fake_async:
dependency: transitive
description:
Expand All @@ -89,7 +89,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.6.0"
version: "0.6.1"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down
4 changes: 3 additions & 1 deletion lib/src/remote_frame_buffer_client_isolate.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,7 @@ Future<void> startRemoteFrameBufferClient(
password: initMessage.password.toNullable(),
port: initMessage.port,
);
unawaited(client.startReadLoop());
client
..handleIncomingMessages()
..requestUpdate();
}
2 changes: 1 addition & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ packages:
name: dart_rfb
url: "https://pub.dartlang.org"
source: hosted
version: "0.6.0"
version: "0.7.0"
dart_style:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ description: A VNC / Remote Framebuffer / RFC 6143 client purely written in Dart
homepage: https://github.com/Goddchen/flutter-vnc
name: flutter_rfb
repository: https://github.com/Goddchen/flutter-vnc
version: 0.6.1
version: 0.6.2

environment:
sdk: ">=2.18.6 <3.0.0"
flutter: ">=1.17.0"

dependencies:
dart_rfb: ^0.6.0
dart_rfb: ^0.7.0
# dart_rfb:
# git:
# path: dart-rfb/
Expand Down