diff --git a/.github/workflows/week.yml b/.github/workflows/week.yml index 064f765..bb1c4ed 100644 --- a/.github/workflows/week.yml +++ b/.github/workflows/week.yml @@ -23,9 +23,11 @@ jobs: run: | rm -rf docs/index.html mv dist/index.html docs + cp -rf resources/static/ docs git config user.email "action@github.com" git config user.name "GitHub Action" git add docs/index.html - git commit -m "$(date +"%F")" + git add docs/static/ + git commit -m "$(date +"%F")" git push origin main diff --git a/newsreader-logo.xcf b/newsreader-logo.xcf new file mode 100644 index 0000000..435caaf Binary files /dev/null and b/newsreader-logo.xcf differ diff --git a/resources/static/img/icons/android-chrome-192x192.png b/resources/static/img/icons/android-chrome-192x192.png new file mode 100644 index 0000000..c7a784b Binary files /dev/null and b/resources/static/img/icons/android-chrome-192x192.png differ diff --git a/resources/static/img/icons/android-chrome-512x512.png b/resources/static/img/icons/android-chrome-512x512.png new file mode 100644 index 0000000..0e17128 Binary files /dev/null and b/resources/static/img/icons/android-chrome-512x512.png differ diff --git a/resources/static/img/icons/android-chrome-maskable-192x192.png b/resources/static/img/icons/android-chrome-maskable-192x192.png new file mode 100644 index 0000000..c7a784b Binary files /dev/null and b/resources/static/img/icons/android-chrome-maskable-192x192.png differ diff --git a/resources/static/img/icons/android-chrome-maskable-512x512.png b/resources/static/img/icons/android-chrome-maskable-512x512.png new file mode 100644 index 0000000..0e17128 Binary files /dev/null and b/resources/static/img/icons/android-chrome-maskable-512x512.png differ diff --git a/resources/static/img/icons/default.png b/resources/static/img/icons/default.png new file mode 100644 index 0000000..0e17128 Binary files /dev/null and b/resources/static/img/icons/default.png differ diff --git a/resources/static/manifest.json b/resources/static/manifest.json new file mode 100644 index 0000000..6cbd956 --- /dev/null +++ b/resources/static/manifest.json @@ -0,0 +1,32 @@ +{ + "name": "RSSPaper", + "short_name": "RSSPaper", + "theme_color": "#ffffff", + "icons": [ + { + "src": "./static/img/icons/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "./static/img/icons/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "./static/img/icons/android-chrome-maskable-192x192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "./static/img/icons/android-chrome-maskable-512x512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ], + "start_url": ".", + "display": "standalone", + "background_color": "#ffffff" +} diff --git a/resources/themes/light.html b/resources/themes/light.html index 6c439e7..4284b70 100644 --- a/resources/themes/light.html +++ b/resources/themes/light.html @@ -3,8 +3,8 @@