diff --git a/.gitignore b/.gitignore index 963256c..ae5ab2c 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,4 @@ __debug_bin* /test*.yaml # Ignore mac-specific files -/.DS_Store +.DS_Store diff --git a/config/config.go b/config/config.go index 5c8239a..733d020 100644 --- a/config/config.go +++ b/config/config.go @@ -92,6 +92,7 @@ type AmConfig struct { Type string `yaml:"type"` } `yaml:"siteIcon"` SiteShortcutIcon string `yaml:"siteShortcutIcon"` + SiteAppleIcon string `yaml:"siteAppleIcon"` SiteLogo string `yaml:"siteLogo"` TopRefresh int `yaml:"topRefresh"` LoginCookieName string `yaml:"loginCookieName"` diff --git a/config/default.yaml b/config/default.yaml index 647ef66..a12e5e6 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -17,6 +17,7 @@ site: path: "/img/builtin/AmsterdamIcon32.png" type: "image/png" siteShortcutIcon: "/img/builtin/AmsterdamIcon32.ico" + siteAppleIcon: "/img/builtin/AmsterdamAppleIcon.png" siteLogo: "/img/builtin/powered-by-amsterdam.png" topRefresh: 300 loginCookieName: AmsterdamAuth diff --git a/ui/static_images/AmsterdamAppleIcon.png b/ui/static_images/AmsterdamAppleIcon.png new file mode 100644 index 0000000..7cd84bd Binary files /dev/null and b/ui/static_images/AmsterdamAppleIcon.png differ diff --git a/ui/views/frame.jet b/ui/views/frame.jet index 041ef81..011ae1e 100644 --- a/ui/views/frame.jet +++ b/ui/views/frame.jet @@ -17,6 +17,7 @@