Преглед на файлове

update due to gumble changes

master
Tim Cooper преди 9 години
родител
ревизия
5055ccf1ae
променени са 2 файла, в които са добавени 5 реда и са изтрити 6 реда
  1. +1
    -1
      barnard.go
  2. +4
    -5
      cmd/barnard/main.go

+ 1
- 1
barnard.go Целия файл

@@ -7,7 +7,7 @@ import (
) )


type Barnard struct { type Barnard struct {
Config gumble.Config
Config *gumble.Config
Client *gumble.Client Client *gumble.Client


Stream *gumble_openal.Stream Stream *gumble_openal.Stream


+ 4
- 5
cmd/barnard/main.go Целия файл

@@ -27,10 +27,9 @@ func main() {
b.Ui = uiterm.New(&b) b.Ui = uiterm.New(&b)


// Gumble // Gumble
b.Config = gumble.Config{
Username: *username,
Address: *server,
}
b.Config = gumble.NewConfig()
b.Config.Username = *username
b.Config.Address = *server
if *insecure { if *insecure {
b.Config.TLSConfig.InsecureSkipVerify = true b.Config.TLSConfig.InsecureSkipVerify = true
} }
@@ -43,7 +42,7 @@ func main() {
} }
} }


b.Client = gumble.NewClient(&b.Config)
b.Client = gumble.NewClient(b.Config)
b.Client.Attach(gumbleutil.AutoBitrate) b.Client.Attach(gumbleutil.AutoBitrate)
b.Client.Attach(&b) b.Client.Attach(&b)
// Audio // Audio


Loading…
Отказ
Запис