Skip to content

v0.10.0 for obs-websocket v5.0.1

Compare
Choose a tag to compare
@andreykaipov andreykaipov released this 11 Aug 04:43

This new release doesn't change much apart from housekeeping things. The v5.0.1 protocol didn't change anything either.

I don't imagine many people immediately jumped onto the v0.9.0 release in any case.

The only significant API change is simplified import paths for MediaInputs and SceneInputs, changing the following:

import (
	mediainputs "github.com/andreykaipov/goobs/api/requests/media_inputs"
	sceneitems "github.com/andreykaipov/goobs/api/requests/scene_items"
)

to

import (
	"github.com/andreykaipov/goobs/api/requests/mediainputs"
	"github.com/andreykaipov/goobs/api/requests/sceneitems"
)

The motivation for this was to have gopls recognize when we use mediainputs or sceneitems in our code. It seems like it has trouble auto-importing when the directory name doesn't match the package exactly.


Full Changelog: v0.9.0...v0.10.0