diff --git a/CHANGELOG.md b/CHANGELOG.md index c2056f0..28e8976 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,6 @@ # 更新日志 -4.1.2-rc.0 - 2025-06-17 ---- -- PRE-RELEASE: 此版本是v4.1.2预发布版本,请勿在生产环境中使用; -- CHANGE: 更新`design`主题, 更新默认配置生成 - -4.1.1 - 2025-06-18 +4.1.1 - 2025-06-17 --- - CHANGE: 更新touka框架到v0.2.6, 解决MidwareX的一些状态问题 diff --git a/DEV-VERSION b/DEV-VERSION index 85486c3..038c952 100644 --- a/DEV-VERSION +++ b/DEV-VERSION @@ -1 +1 @@ -4.1.2-rc.0 \ No newline at end of file +4.1.0-rc.0 diff --git a/VERSION b/VERSION index cd9b8f5..2582ddd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.2 \ No newline at end of file +4.1.1 \ No newline at end of file diff --git a/config/config.go b/config/config.go index d88daa0..ba2ef62 100644 --- a/config/config.go +++ b/config/config.go @@ -245,7 +245,7 @@ func DefaultConfig() *Config { }, Pages: PagesConfig{ Mode: "internal", - Theme: "hub", + Theme: "bootstrap", StaticDir: "/data/www", }, Log: LogConfig{ @@ -271,7 +271,8 @@ func DefaultConfig() *Config { WhitelistFile: "/data/ghproxy/config/whitelist.json", }, RateLimit: RateLimitConfig{ - Enabled: false, + Enabled: false, + //RateMethod: "total", RatePerMinute: 100, Burst: 10, BandwidthLimit: BandwidthLimitConfig{ @@ -288,11 +289,7 @@ func DefaultConfig() *Config { }, Docker: DockerConfig{ Enabled: false, - Target: "dockerhub", - Auth: false, - Credentials: map[string]string{ - "testpass": "test123", - }, + Target: "ghcr", }, } }