diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0c53bbb..47bb19a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,7 +24,7 @@ jobs: run: | git config --global user.name 'github-actions' git config --global user.email 'github-actions@github.com' - TAG="v0.0.1-$(date +'%Y%m%d%H%M%S')" + TAG="v0.0.2-$(date +'%Y%m%d%H%M%S')" git tag $TAG git push origin $TAG env: diff --git a/commediatests/netflix/printer/printer.go b/commediatests/netflix/printer/printer.go index 267992f..f50675f 100644 --- a/commediatests/netflix/printer/printer.go +++ b/commediatests/netflix/printer/printer.go @@ -38,7 +38,7 @@ func printResult(ipVersion string, vResponse verify.VerifyResponse, language str result += Green("您的出口IP可以观看此电影") + "\n" result += Green("NF所识别的IP地域信息:") + vResponse.CountryName + "\n" default: - result += Purple("解锁检测失败,请稍后重试") + "\n" + result += Yellow("解锁检测失败,请稍后重试") + "\n" } } else if language == "en" { switch code := vResponse.StatusCode; { @@ -61,7 +61,7 @@ func printResult(ipVersion string, vResponse verify.VerifyResponse, language str result += Green("Your exit IP can watch this movie") + "\n" result += Green("Netflix identified IP region: "+vResponse.CountryName) + "\n" default: - result += Purple("Unlock detection failed, please try again later") + "\n" + result += Yellow("Unlock detection failed, please try again later") + "\n" } } return result diff --git a/commediatests/version.go b/commediatests/version.go index 226526c..d44d771 100644 --- a/commediatests/version.go +++ b/commediatests/version.go @@ -1,4 +1,4 @@ package commediatests -const ComMediaTestsVersion = "v0.0.1" // git tag v0.0.1 +const ComMediaTestsVersion = "v0.0.2" var EnableLoger bool