mirror of
https://github.com/Syngnat/GoNavi.git
synced 2026-08-09 16:23:27 +08:00
- 修复 Windows、macOS 与关于页的品牌图标展示及资源裁切问题 - 补齐 SQLite 表记录数与 SELECT 查询结果渲染 - 增加品牌图标和 SQLite 回归测试
11 lines
183 B
Go
11 lines
183 B
Go
//go:build !darwin
|
|
|
|
package app
|
|
|
|
import "errors"
|
|
|
|
func setApplicationIconPNG(png []byte) error {
|
|
_ = png
|
|
return errors.New("application icon updates are only supported on macOS")
|
|
}
|