Compare commits

..

3 Commits

Author SHA1 Message Date
Joel Wetzell 303a782a74 Merge pull request #30 from jwetzell/dependabot/go_modules/github.com/urfave/cli/v3-3.11.0
Bump github.com/urfave/cli/v3 from 3.10.1 to 3.11.0
2026-08-30 09:16:47 -05:00
Joel Wetzell 684b75b711 document usage for OSC utilities 2026-08-30 09:07:51 -05:00
dependabot[bot] 9a5026623f Bump github.com/urfave/cli/v3 from 3.10.1 to 3.11.0
Bumps [github.com/urfave/cli/v3](https://github.com/urfave/cli) from 3.10.1 to 3.11.0.
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](https://github.com/urfave/cli/compare/v3.10.1...v3.11.0)

---
updated-dependencies:
- dependency-name: github.com/urfave/cli/v3
  dependency-version: 3.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-08-24 02:53:34 +00:00
3 changed files with 52 additions and 6 deletions
+49 -3
View File
@@ -4,6 +4,52 @@ A mostly complete OSC implementation and collection of command line OSC utilitie
## Utilities ## Utilities
### `sendosc` ### sendosc
### `makeosc` ```
### `receiveosc` NAME:
sendosc - send OSC messages via UDP or TCP
USAGE:
sendosc [global options]
GLOBAL OPTIONS:
--host string host to send OSC message to
--port int port to send OSC message to
--protocol string protocol to use to send (tcp or udp) (default: "udp")
--address string OSC address
--arg string [ --arg string ] OSC args
--type string [ --type string ] OSC types
--slip whether to slip encode the OSC Message bytes
--help, -h show help
```
### makeosc
```
NAME:
makeosc - make osc bytes
USAGE:
makeosc [global options]
GLOBAL OPTIONS:
--address string OSC address
--arg string [ --arg string ] OSC args
--type string [ --type string ] OSC types
--slip whether to slip encode the OSC Message bytes
--help, -h show help
```
### receiveosc
```
NAME:
receiveosc - receive OSC messages via UDP or TCP
USAGE:
receiveosc [global options]
GLOBAL OPTIONS:
--ip string ip to receive OSC messages on (default: "0.0.0.0")
--port int port to receive OSC messages on (default: 8888)
--protocol string protocol to use to receive (tcp or udp) (default: "udp")
--format string format for messages to be output in ('json') (default: "json")
--slip whether to slip encode the OSC Message bytes
--help, -h show help
```
+1 -1
View File
@@ -2,4 +2,4 @@ module github.com/jwetzell/osc-go
go 1.25.1 go 1.25.1
require github.com/urfave/cli/v3 v3.10.1 require github.com/urfave/cli/v3 v3.11.0
+2 -2
View File
@@ -4,7 +4,7 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
github.com/urfave/cli/v3 v3.10.1 h1:7Kx9H50hrHbRbyxgO1KP6/BcbiGRz0uYh5YyQ30JEEY= github.com/urfave/cli/v3 v3.11.0 h1:P/euJp99kb9p0tlVY+iYTLYYTAQlfl0hR2gUO1Img1Q=
github.com/urfave/cli/v3 v3.10.1/go.mod h1:ysVLtOEmg2tOy6PknnYVhDoouyC/6N42TMeoMzskhso= github.com/urfave/cli/v3 v3.11.0/go.mod h1:ysVLtOEmg2tOy6PknnYVhDoouyC/6N42TMeoMzskhso=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=