Skip to content

Commit b7f578d

Browse files
'additional events supported'
1 parent 37a99f2 commit b7f578d

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

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

3+
## 5.0.0+11
4+
5+
* events supported
6+
* Config - CurrentProfileChanging
7+
* Config - CurrentProfileChanged
8+
* Config - ProfileListChanged
9+
* PR #26
10+
311
## 5.0.0+10
412

513
* commands

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ In your project add the dependency:
4545
```yml
4646
dependencies:
4747
...
48-
obs_websocket: ^5.0.0+10
48+
obs_websocket: ^5.0.0+11
4949
```
5050
5151
For help getting started with dart, check out these [guides](https://dart.dev/guides).
@@ -395,9 +395,9 @@ if (!sceneItemEnabled) {
395395
- [x] [CurrentSceneCollectionChanging](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#currentscenecollectionchanging) - The current scene collection has begun changing.
396396
- [x] [CurrentSceneCollectionChanged](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#currentscenecollectionchanged) - The current scene collection has changed.
397397
- [x] [SceneCollectionListChanged](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#scenecollectionlistchanged) - The scene collection list has changed.
398-
- [ ] [CurrentProfileChanging](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#currentprofilechanging)
399-
- [ ] [CurrentProfileChanged](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#currentprofilechanged)
400-
- [ ] [ProfileListChanged](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#profilelistchanged)
398+
- [x] [CurrentProfileChanging](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#currentprofilechanging) - The current profile has begun changing.
399+
- [x] [CurrentProfileChanged](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#currentprofilechanged) - The current profile has changed.
400+
- [x] [ProfileListChanged](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#profilelistchanged) - The profile list has changed.
401401
- [Scenes Events](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#scenes-events)
402402
- [ ] [SceneCreated](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#scenecreated)
403403
- [ ] [SceneRemoved](https://github.com/obsproject/obs-websocket/blob/master/docs/generated/protocol.md#sceneremoved)

lib/src/util/meta.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
/// THIS FILE IS AUTOMATICALLY OVER WRITTEN BY PublishTools
33
import 'dart:convert' show json;
44

5-
final pubSpec = json.decode('{"name":"obs_websocket","version":"5.0.0+10","homepage":"https://github.com/faithoflifedev/easy_obs_websocket","environment":{"sdk":">=2.17.3 <3.0.0"},"description":"obs_websocket allows dart-based connections to the OBS (Open Broadcaster Software) plugin obs-websocket","dependencies":{"args":"^2.3.1","crypto":"^3.0.2","json_annotation":"^4.6.0","loggy":"^2.0.1+1","uuid":"^3.0.6","universal_io":"^2.0.4","validators":"^3.0.0","web_socket_channel":"^2.2.0","yaml":"^3.1.1"},"dev_dependencies":{"build_runner":"^2.2.0","grinder":"^0.9.2","http":"^0.13.5","json_serializable":"^6.3.1","lints":"^2.0.0","mustache_template":"^2.0.0","path":"^1.8.2","process_run":"^0.12.3+2","pub_semver":"^2.1.1","pubspec":"^2.3.0","test":"^1.21.4","publish_tools":"^0.1.0+3"},"executables":{"obs":""},"repository":"https://github.com/faithoflifedev/easy_obs_websocket"}');
5+
final pubSpec = json.decode(
6+
'{"name":"obs_websocket","version":"5.0.0+11","homepage":"https://github.com/faithoflifedev/easy_obs_websocket","environment":{"sdk":">=2.17.3 <3.0.0"},"description":"obs_websocket allows dart-based connections to the OBS (Open Broadcaster Software) plugin obs-websocket","dependencies":{"args":"^2.3.1","crypto":"^3.0.2","json_annotation":"^4.6.0","loggy":"^2.0.1+1","uuid":"^3.0.6","universal_io":"^2.0.4","validators":"^3.0.0","web_socket_channel":"^2.2.0","yaml":"^3.1.1"},"dev_dependencies":{"build_runner":"^2.2.0","grinder":"^0.9.2","http":"^0.13.5","json_serializable":"^6.3.1","lints":"^2.0.0","mustache_template":"^2.0.0","path":"^1.8.2","process_run":"^0.12.3+2","pub_semver":"^2.1.1","pubspec":"^2.3.0","test":"^1.21.4","publish_tools":"^0.1.0+5"},"executables":{"obs":""},"repository":"https://github.com/faithoflifedev/easy_obs_websocket"}');

tool/grind.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ main(args) async {
88
}
99

1010
@DefaultTask('Just keeping it real')
11-
@Depends('pt-commit', 'publish', 'pt-homebrew')
11+
@Depends('pt-commit', 'pt-publish', 'pt-homebrew')
1212
done() {
1313
log('commit to faithoflifedev/obs_websocket complete');
1414
log('publish to pub.dev/packages complete.');

0 commit comments

Comments
 (0)