obs-websocket-java icon indicating copy to clipboard operation
obs-websocket-java copied to clipboard

A java library for https://github.com/obsproject/obs-websocket

Results 8 obs-websocket-java issues
Sort by recently updated
recently updated
newest added

# Describe the bug OutputNotPaused is missing in the request status code enum. Also, the codes after OutputPaused are wrong. # Expected behavior ```java OutputRunning(500), OutputNotRunning(501), OutputPaused(502), //OutputNotPaused(503) is missing...

bug

# Describe the bug Lifecycle callbacks should be called in separate threads # Code Sample Simply add a Lifecycle callback when setting up the OBSRemoteController. # Expected behavior In order...

bug
good first issue
core
to specify

Trying to connect when OBS is not running leaks the WS connection

core

# Describe the bug Websocket Client in Jetty 9.X is without Community Support. See: https://github.com/eclipse/jetty.project/issues/7958 Continuing to use Jetty 9.4 produces conflicts with other libraries that are using current Jetty...

maintainability
core

# Describe the bug Registering the same Event twice results in the first one being forgotten # Code Sample ```java OBSRemoteController.builder() //... .registerEventListener(CurrentSceneCollectionChangedEvent.class, currentSceneCollectionChangedEvent -> System.out.println("First")) .registerEventListener(CurrentSceneCollectionChangedEvent.class, currentSceneCollectionChangedEvent -> System.out.println("Second"))...

bug
to specify

# Describe the bug Documentation says that clients shouldn't send requests during a Scene Colection Change # Expected behavior Invoke onError Callback upon `CurrentSceneCollectionChanging` Event until receiving `CurrentSceneCollectionChanged` Event #...

enhancement
core

# Describe the bug Message Generator relies on client to compile. It also cleans and replaces the classes in client module directly. # Code Sample ```java // give a code...

enhancement
generation
to specify

# Describe the bug The logging facility in Jetty was never mean to be used directly but somehow it was used in `io.obswebsocket.community.client.OBSRemoteControllerBuilder`. Since the Jetty team removed this entire...

bug