add skip on fail

This commit is contained in:
aynakeya
2024-04-24 01:27:57 -07:00
parent ee775dee8d
commit 58d7ebd43d
7 changed files with 53 additions and 11 deletions

View File

@@ -10,7 +10,7 @@ import (
const (
ProgramName = "卡西米尔唱片机"
Version uint32 = 0x010003
Version uint32 = 0x010004
)
const (

View File

@@ -7,6 +7,7 @@ type _GeneralConfig struct {
Language string
AutoCheckUpdate bool
ShowSystemTray bool
PlayNextOnFail bool
}
func (c *_GeneralConfig) Name() string {
@@ -19,4 +20,5 @@ var General = &_GeneralConfig{
AutoCheckUpdate: true,
Width: 960,
Height: 480,
PlayNextOnFail: false,
}