Skip to content

Commit ab0cb82

Browse files
committed
chore: Update anime selection prompt to English and increment version to 1.3
1 parent 236e7ef commit ab0cb82

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

internal/api/enhanced.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ func SearchAnimeEnhanced(name string, source string) (*models.Anime, error) {
112112
name = strings.ReplaceAll(name, "[AnimeFire]", "[Portuguese]")
113113
return name
114114
},
115-
fuzzyfinder.WithPromptString("Selecione o anime desejado: "),
115+
fuzzyfinder.WithPromptString("Select the anime you want: "),
116116
fuzzyfinder.WithPreviewWindow(func(i, w, h int) string {
117117
if i >= 0 && i < len(animes) {
118118
anime := animes[i]
@@ -137,7 +137,7 @@ func SearchAnimeEnhanced(name string, source string) (*models.Anime, error) {
137137
name = strings.ReplaceAll(name, "[AnimeFire]", "[Portuguese]")
138138
return name
139139
},
140-
fuzzyfinder.WithPromptString("Selecione o anime desejado: "),
140+
fuzzyfinder.WithPromptString("Select the anime you want: "),
141141
)
142142
}
143143

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
)
99

1010
const (
11-
Version = "1.2"
11+
Version = "1.3"
1212
)
1313

1414
func HasVersionArg() bool {

0 commit comments

Comments
 (0)