Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
github.com/amitybell/piper-voice-jenny v0.0.0-20231118093224-dcf0d49e46b7
github.com/bwmarrin/discordgo v0.28.1
github.com/dharmab/collections v1.0.0
github.com/dharmab/goacmi v1.0.3
github.com/dharmab/goacmi/v2 v2.0.1
github.com/dharmab/numwords v1.0.1
github.com/ggerganov/whisper.cpp/bindings/go v0.0.0-20260319084013-9386f2394010
github.com/go-audio/aiff v1.1.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ github.com/denis-tingaikin/go-header v0.5.0 h1:SRdnP5ZKvcO9KKRP1KJrhFR3RrlGuD+42
github.com/denis-tingaikin/go-header v0.5.0/go.mod h1:mMenU5bWrok6Wl2UsZjy+1okegmwQ3UgWl4V1D8gjlY=
github.com/dharmab/collections v1.0.0 h1:61nyF4uDE8JvyiGC2VPz0rDXO6WVqKTlIpuXmzhreyo=
github.com/dharmab/collections v1.0.0/go.mod h1:XL7nAecAuQ07ZGWSM0/kqVyl1z8ucE/jLUiIWQo6jCA=
github.com/dharmab/goacmi v1.0.3 h1:NSxBKlLgJlI/V7Q68lh2uLZC6BJgZkphelKKEmSaEMc=
github.com/dharmab/goacmi v1.0.3/go.mod h1:wZArjjRgFNYtQJkA9vBTbpM3FqkP3fg+bhQJzkEwpq0=
github.com/dharmab/goacmi/v2 v2.0.1 h1:ko2T/CZzEPJqTZ7yIPS3DSomTilLUmxgcManiMEQLlE=
github.com/dharmab/goacmi/v2 v2.0.1/go.mod h1:9GqZ0fsRGKYcge++tRGHeAgKwSgKIVOzPuyB8cL0dPg=
github.com/dharmab/numwords v1.0.1 h1:6zFMoWEiavZmQAiyd1/0h8x/5gzpj8ijbZWgcIHoQAA=
github.com/dharmab/numwords v1.0.1/go.mod h1:JtKH/TWNyBBkmVJVdZGyX+fBXTcknxOI+75dISW+PXc=
github.com/dlclark/regexp2 v1.11.5 h1:Q/sSnsKerHeCkc/jSTNq1oCm7KiVgUMZRDUoRu0JQZQ=
Expand Down
2 changes: 1 addition & 1 deletion pkg/telemetry/properties.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package telemetry

import (
acmi "github.com/dharmab/goacmi/properties/coalitions"
acmi "github.com/dharmab/goacmi/v2/properties/coalitions"
skyeye "github.com/dharmab/skyeye/pkg/coalitions"
)

Expand Down
8 changes: 4 additions & 4 deletions pkg/telemetry/streamer.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import (
"sync"
"time"

"github.com/dharmab/goacmi/objects"
"github.com/dharmab/goacmi/parsing"
"github.com/dharmab/goacmi/properties"
"github.com/dharmab/goacmi/tags"
"github.com/dharmab/goacmi/v2/objects"
"github.com/dharmab/goacmi/v2/parsing"
"github.com/dharmab/goacmi/v2/properties"
"github.com/dharmab/goacmi/v2/tags"
"github.com/dharmab/skyeye/pkg/coalitions"
"github.com/dharmab/skyeye/pkg/sim"
"github.com/dharmab/skyeye/pkg/trackfiles"
Expand Down
Loading