Skip to content

Commit 0619fa8

Browse files
'readme update, dependency bump'
1 parent 193f9ea commit 0619fa8

File tree

8 files changed

+20
-19
lines changed

8 files changed

+20
-19
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 5.1.0+3
4+
5+
* readme update
6+
* dependency bump
7+
38
## 5.1.0+2
49

510
* Scenes

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In your project add the dependency:
4646
```yml
4747
dependencies:
4848
...
49-
obs_websocket: ^5.1.0+2
49+
obs_websocket: ^5.1.0+3
5050
```
5151
5252
For help getting started with dart, check out these [guides](https://dart.dev/guides).
@@ -131,6 +131,7 @@ For any of the items that have an [x\] from the list below, a high level helper
131131
- [x\] [SetVideoSettings](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#setvideosettings) - Sets the current video settings.
132132
- [x\] [GetStreamServiceSettings](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#getstreamservicesettings) - Gets the current stream service settings (stream destination).
133133
- [x\] [SetStreamServiceSettings](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#setstreamservicesettings) - Sets the current stream service settings (stream destination).
134+
- [ \] [GetRecordDirectory](https://github.com/obsproject/obs-websocket/blob/release/5.2.3/docs/generated/protocol.md#getrecorddirectory) - Gets the current directory that the record output is set to.
134135
- [Sources Requests](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#sources-requests) - `obsWebSocket.sources`
135136
- [x\] [GetSourceActive](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#getsourceactive) - Gets the active and show state of a source.
136137
- [x\] [GetSourceScreenshot](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#getsourcescreenshot) - Gets a Base64-encoded screenshot of a source.

example/pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ environment:
44
sdk: ">=2.17.3 <3.0.0"
55

66
dependencies:
7-
loggy: ^2.0.1+1
7+
loggy: ^2.0.3
88
obs_websocket:
99
path: ../
10-
universal_io: ^2.0.4
11-
web_socket_channel: ^2.2.0
12-
yaml: ^3.1.1
10+
universal_io: ^2.2.2
11+
web_socket_channel: ^2.4.0
12+
yaml: ^3.1.2
1313

1414
dev_dependencies:
15-
lints: ^2.0.0
15+
lints: ^3.0.0

lib/meta.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
import 'dart:convert' show json;
44

55
final pubSpec = json.decode(
6-
'{"name":"obs_websocket","version":"5.1.0+2","homepage":"https://github.com/faithoflifedev/easy_obs_websocket","environment":{"sdk":">=3.0.0 <4.0.0"},"description":"obs_websocket allows dart-based connections to the OBS (Open Broadcaster Software) plugin obs-websocket","dependencies":{"args":"^2.4.2","crypto":"^3.0.3","json_annotation":"^4.8.1","loggy":"^2.0.3","uuid":"^3.0.7","universal_io":"^2.2.2","validators":"^3.0.0","web_socket_channel":"^2.4.0","yaml":"^3.1.2"},"dev_dependencies":{"build_runner":"^2.4.5","grinder":"^0.9.4","http":"^0.13.6","json_serializable":"^6.7.0","lints":"^2.1.1","mustache_template":"^2.0.0","path":"^1.8.3","process_run":"^0.13.0","pub_semver":"^2.1.4","pubspec":"^2.3.0","test":"^1.24.3","publish_tools":"^0.1.0+10"},"executables":{"obs":""},"repository":"https://github.com/faithoflifedev/easy_obs_websocket"}');
6+
'{"name":"obs_websocket","version":"5.1.0+3","homepage":"https://github.com/faithoflifedev/easy_obs_websocket","environment":{"sdk":">=3.0.0 <4.0.0"},"description":"obs_websocket allows dart-based connections to the OBS (Open Broadcaster Software) plugin obs-websocket","dependencies":{"args":"^2.4.2","crypto":"^3.0.3","json_annotation":"^4.8.1","loggy":"^2.0.3","uuid":"^4.1.0","universal_io":"^2.2.2","validators":"^3.0.0","web_socket_channel":"^2.4.0","yaml":"^3.1.2"},"dev_dependencies":{"build_runner":"^2.4.5","grinder":"^0.9.4","http":"^1.1.0","json_serializable":"^6.7.0","lints":"^3.0.0","mustache_template":"^2.0.0","path":"^1.8.3","process_run":"^0.13.0","pub_semver":"^2.1.4","pubspec":"^2.3.0","test":"^1.24.3","publish_tools":"^0.1.0+11"},"executables":{"obs":""},"repository":"https://github.com/faithoflifedev/easy_obs_websocket"}');

lib/src/cmd/obs_version_command.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import 'package:args/command_runner.dart';
2-
import 'package:obs_websocket/src/util/meta.dart';
2+
import 'package:obs_websocket/meta.dart';
33

44
/// Generate a refresh token used to authenticate the command line API requests
55
class ObsVersionCommand extends Command {

lib/src/util/meta.dart

Lines changed: 0 additions & 6 deletions
This file was deleted.

pubspec.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: obs_websocket
2-
version: 5.1.0+2
2+
version: 5.1.0+3
33
homepage: https://github.com/faithoflifedev/easy_obs_websocket
44
description: obs_websocket allows dart-based connections to the OBS (Open Broadcaster Software) plugin obs-websocket
55
repository: https://github.com/faithoflifedev/easy_obs_websocket
@@ -10,25 +10,25 @@ dependencies:
1010
crypto: ^3.0.3
1111
json_annotation: ^4.8.1
1212
loggy: ^2.0.3
13-
uuid: ^3.0.7
13+
uuid: ^4.1.0
1414
universal_io: ^2.2.2
1515
validators: ^3.0.0
1616
web_socket_channel: ^2.4.0
1717
yaml: ^3.1.2
1818
dev_dependencies:
1919
build_runner: ^2.4.5
2020
grinder: ^0.9.4
21-
http: ^0.13.6
21+
http: ^1.1.0
2222
json_serializable: ^6.7.0
23-
lints: ^2.1.1
23+
lints: ^3.0.0
2424
mustache_template: ^2.0.0
2525
path: ^1.8.3
2626
process_run: ^0.13.0
2727
pub_semver: ^2.1.4
2828
pubspec: ^2.3.0
2929
test: ^1.24.3
3030

31-
publish_tools: ^0.1.0+10
31+
publish_tools: ^0.1.0+11
3232
# publish_tools:
3333
# path: ../../publish_tools
3434
executables:

tool/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ For any of the items that have an [x\] from the list below, a high level helper
131131
- [x\] [SetVideoSettings](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#setvideosettings) - Sets the current video settings.
132132
- [x\] [GetStreamServiceSettings](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#getstreamservicesettings) - Gets the current stream service settings (stream destination).
133133
- [x\] [SetStreamServiceSettings](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#setstreamservicesettings) - Sets the current stream service settings (stream destination).
134+
- [ \] [GetRecordDirectory](https://github.com/obsproject/obs-websocket/blob/release/5.2.3/docs/generated/protocol.md#getrecorddirectory) - Gets the current directory that the record output is set to.
134135
- [Sources Requests](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#sources-requests) - `obsWebSocket.sources`
135136
- [x\] [GetSourceActive](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#getsourceactive) - Gets the active and show state of a source.
136137
- [x\] [GetSourceScreenshot](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#getsourcescreenshot) - Gets a Base64-encoded screenshot of a source.

0 commit comments

Comments
 (0)