We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fc556c commit a52aaa7Copy full SHA for a52aaa7
cmd/version.go
@@ -7,7 +7,7 @@ import (
7
)
8
9
const (
10
- Version string = "0.10.0"
+ Version string = "0.10.1"
11
12
13
var VersionCmd = &cobra.Command{
sources/kemono/kemono.go
@@ -74,7 +74,7 @@ func (k *Kemono) GetCommonSourceURL(url string) string {
74
}
75
76
func (k *Kemono) GetFileName(artwork *types.Artwork, picture *types.Picture) string {
77
- return artwork.Title + "_" + strconv.Itoa(int(picture.Index)) + filepath.Ext(picture.Original)
+ return artwork.Title + "_" + strconv.Itoa(int(picture.Index)) + "_" + filepath.Base(picture.Original)
78
79
80
func (k *Kemono) Config() *config.SourceCommonConfig {
0 commit comments