Skip to content

Commit 6fcde10

Browse files
authored
bump version and fix project structure (braverhealth#80)
* add toxiproxy service for testing * add tests for certain connection issues * fixes * fix service name * fix logging flag * bump version and fix project structure
1 parent 154b027 commit 6fcde10

File tree

230 files changed

+37
-29
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

230 files changed

+37
-29
lines changed

.vscode/launch.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5-
"version": "0.2.0",
6-
"configurations": [
7-
{
8-
"name": "Dart",
9-
"type": "dart",
10-
"request": "launch",
11-
"program": "examples/simple/lib/main.dart"
12-
},
13-
{
14-
"name": "Flutter",
15-
"request": "launch",
16-
"type": "dart",
17-
"program": "examples/flutter_app/lib/main.dart"
18-
},
19-
]
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Dart",
9+
"type": "dart",
10+
"request": "launch",
11+
"program": "example/lib/main.dart"
12+
},
13+
{
14+
"name": "Flutter",
15+
"request": "launch",
16+
"type": "dart",
17+
"program": "example/more_examples/flutter_app/lib/main.dart"
18+
}
19+
]
2020
}

CHANGELOG.md

+4

example/README

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
### Phoenix Socket examples
22

33
- [Simple Dart-only example][1]
4-
- [Simple Flutter example][2]
5-
- [Backend Phoenix service backing both of them][3]
4+
- [Flutter example][2]
5+
- [Flutter Presence example][3]
6+
- [Reactive example][4]
7+
- [Backend Phoenix service backing both of them][5]
68

79
[1]: https://github.com/matehat/phoenix-socket-dart/tree/master/example/simple
8-
[2]: https://github.com/matehat/phoenix-socket-dart/tree/master/example/flutter_app
9-
[3]: https://github.com/matehat/phoenix-socket-dart/tree/master/example/backend
10+
[2]: https://github.com/matehat/phoenix-socket-dart/tree/master/example/more_examples/flutter_app
11+
[3]: https://github.com/matehat/phoenix-socket-dart/tree/master/example/more_examples/flutter_presence_app
12+
[4]: https://github.com/matehat/phoenix-socket-dart/tree/master/example/more_examples/reactive
13+
[5]: https://github.com/matehat/phoenix-socket-dart/tree/master/example/backend
File renamed without changes.
File renamed without changes.
File renamed without changes.

example/flutter_app/pubspec.yaml example/more_examples/flutter_app/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies:
2525
sdk: flutter
2626

2727
phoenix_socket:
28-
path: ../../
28+
path: ../../../
2929

3030
# The following adds the Cupertino Icons font to your application.
3131
# Use with the CupertinoIcons class for iOS style icons.

example/flutter_presence_app/pubspec.yaml example/more_examples/flutter_presence_app/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies:
2525
sdk: flutter
2626

2727
phoenix_socket:
28-
path: ../../
28+
path: ../../../
2929

3030
# The following adds the Cupertino Icons font to your application.
3131
# Use with the CupertinoIcons class for iOS style icons.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

example/reactive/client/pubspec.yaml example/more_examples/reactive/client/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ environment:
2323
dependencies:
2424
flutter:
2525
sdk: flutter
26-
phoenix_socket: ^0.5.1+1
27-
28-
26+
27+
phoenix_socket:
28+
path: ../../../
2929

3030
# The following adds the Cupertino Icons font to your application.
3131
# Use with the CupertinoIcons class for iOS style icons.

example/simple/pubspec.yaml example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ environment:
99

1010
dependencies:
1111
phoenix_socket:
12-
path: ../../
12+
path: ../
1313

1414
uuid: ^3.0.1
1515

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: >-
33
PhoenixSocket provides a feature-complete implementation
44
of Phoenix Sockets, using a single API based on StreamChannels
55
compatible with any deployment of Flutter.
6-
version: 0.7.3
6+
version: 0.7.4
77
repository: https://www.github.com/matehat/phoenix-socket-dart
88
homepage: https://www.github.com/matehat/phoenix-socket-dart
99

0 commit comments

Comments
 (0)