Change name due to organization move

This commit is contained in:
bytedream 2022-07-07 21:21:44 +02:00
parent d65226252d
commit f1a41d6d3b
13 changed files with 44 additions and 46 deletions

View file

@ -8,8 +8,8 @@ import (
"compress/gzip"
"context"
"fmt"
"github.com/ByteDream/crunchyroll-go/v2"
"github.com/ByteDream/crunchyroll-go/v2/utils"
"github.com/crunchy-labs/crunchyroll-go/v2"
"github.com/crunchy-labs/crunchyroll-go/v2/utils"
"github.com/grafov/m3u8"
"github.com/spf13/cobra"
"io"
@ -187,7 +187,7 @@ func archive(urls []string) error {
if err != nil {
out.StopProgress("Failed to parse url %d", i+1)
out.Debug("If the error says no episodes could be found but the passed url is correct and a crunchyroll classic url, " +
"try the corresponding crunchyroll beta url instead and try again. See https://github.com/ByteDream/crunchyroll-go/issues/22 for more information")
"try the corresponding crunchyroll beta url instead and try again. See https://github.com/crunchy-labs/crunchyroll-go/issues/22 for more information")
return err
}
out.StopProgress("Parsed url %d", i+1)

View file

@ -3,8 +3,8 @@ package cmd
import (
"context"
"fmt"
"github.com/ByteDream/crunchyroll-go/v2"
"github.com/ByteDream/crunchyroll-go/v2/utils"
"github.com/crunchy-labs/crunchyroll-go/v2"
"github.com/crunchy-labs/crunchyroll-go/v2/utils"
"github.com/grafov/m3u8"
"github.com/spf13/cobra"
"math"
@ -133,7 +133,7 @@ func download(urls []string) error {
if err != nil {
out.StopProgress("Failed to parse url %d", i+1)
out.Debug("If the error says no episodes could be found but the passed url is correct and a crunchyroll classic url, " +
"try the corresponding crunchyroll beta url instead and try again. See https://github.com/ByteDream/crunchyroll-go/issues/22 for more information")
"try the corresponding crunchyroll beta url instead and try again. See https://github.com/crunchy-labs/crunchyroll-go/issues/22 for more information")
return err
}
out.StopProgress("Parsed url %d", i+1)

View file

@ -2,7 +2,7 @@ package cmd
import (
"fmt"
"github.com/ByteDream/crunchyroll-go/v2"
"github.com/crunchy-labs/crunchyroll-go/v2"
"github.com/spf13/cobra"
"os"
"path/filepath"

View file

@ -3,7 +3,7 @@ package cmd
import (
"context"
"fmt"
"github.com/ByteDream/crunchyroll-go/v2"
"github.com/crunchy-labs/crunchyroll-go/v2"
"github.com/spf13/cobra"
"net/http"
"os"
@ -29,7 +29,7 @@ var (
var rootCmd = &cobra.Command{
Use: "crunchyroll-go",
Version: Version,
Short: "Download crunchyroll videos with ease. See the wiki for details about the cli and library: https://github.com/ByteDream/crunchyroll-go/wiki",
Short: "Download crunchyroll videos with ease. See the wiki for details about the cli and library: https://github.com/crunchy-labs/crunchyroll-go/wiki",
SilenceErrors: true,
SilenceUsage: true,

View file

@ -2,8 +2,8 @@ package cmd
import (
"fmt"
"github.com/ByteDream/crunchyroll-go/v2"
"github.com/ByteDream/crunchyroll-go/v2/utils"
"github.com/crunchy-labs/crunchyroll-go/v2"
"github.com/crunchy-labs/crunchyroll-go/v2/utils"
"net/http"
"net/url"
"os"

View file

@ -1,7 +1,7 @@
package main
import (
"github.com/ByteDream/crunchyroll-go/v2/cmd/crunchyroll-go/cmd"
"github.com/crunchy-labs/crunchyroll-go/v2/cmd/crunchyroll-go/cmd"
)
func main() {