Compare commits

...

2 Commits

Author SHA1 Message Date
dessant dcaee7b2e9 chore(release): 2.0.1 1 year ago
dessant 57c941ae68 fix: set color scheme 1 year ago

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [2.0.1](https://github.com/dessant/buster/compare/v2.0.0...v2.0.1) (2022-12-16)
### Bug Fixes
* set color scheme ([57c941a](https://github.com/dessant/buster/commit/57c941ae685b367504da03f94bf5d74ddd645ddf))
## [2.0.0](https://github.com/dessant/buster/compare/v1.3.2...v2.0.0) (2022-12-15)

18
package-lock.json generated

@ -1,12 +1,12 @@
{
"name": "buster",
"version": "2.0.0",
"version": "2.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "buster",
"version": "2.0.0",
"version": "2.0.1",
"license": "GPL-3.0-only",
"dependencies": {
"@fontsource/roboto": "^4.5.8",
@ -18,7 +18,7 @@
"uuid": "^9.0.0",
"vue": "^3.2.45",
"vuetify": "^3.0.5",
"vueton": "^0.1.3",
"vueton": "^0.1.4",
"webextension-polyfill": "^0.10.0",
"wesa": "^0.3.0"
},
@ -23727,9 +23727,9 @@
}
},
"node_modules/vueton": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/vueton/-/vueton-0.1.3.tgz",
"integrity": "sha512-rkwR5R979GhTv/+Sl458v0oVn+SEsETLENBAh6p257cm49byDP5QXuX/h/MOb+lC7s3Z9ed9HQDQCxCN39D8fg==",
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/vueton/-/vueton-0.1.4.tgz",
"integrity": "sha512-TMu5gNvTKymj9IS4rmf1Aymj1/Hn+NNvJKyEtvpZkEiSEWHVjju2nfCGFmbDL1bYHm9dyga6zt2bnbl2YMN2xA==",
"engines": {
"node": ">=18.0.0"
},
@ -42789,9 +42789,9 @@
"integrity": "sha512-ciX+9XuHQ4zx27dEceHrs6xuCeqPgo91DhvCm+udbp0Qg95phad03uVcdHvyv1XW/stgdZGneiqg5dxQvLGzPw=="
},
"vueton": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/vueton/-/vueton-0.1.3.tgz",
"integrity": "sha512-rkwR5R979GhTv/+Sl458v0oVn+SEsETLENBAh6p257cm49byDP5QXuX/h/MOb+lC7s3Z9ed9HQDQCxCN39D8fg=="
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/vueton/-/vueton-0.1.4.tgz",
"integrity": "sha512-TMu5gNvTKymj9IS4rmf1Aymj1/Hn+NNvJKyEtvpZkEiSEWHVjju2nfCGFmbDL1bYHm9dyga6zt2bnbl2YMN2xA=="
},
"watchpack": {
"version": "2.4.0",

@ -1,6 +1,6 @@
{
"name": "buster",
"version": "2.0.0",
"version": "2.0.1",
"author": "Armin Sebastian",
"license": "GPL-3.0-only",
"homepage": "https://github.com/dessant/buster",
@ -45,7 +45,7 @@
"uuid": "^9.0.0",
"vue": "^3.2.45",
"vuetify": "^3.0.5",
"vueton": "^0.1.3",
"vueton": "^0.1.4",
"webextension-polyfill": "^0.10.0",
"wesa": "^0.3.0"
},

@ -3,6 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<meta name="referrer" content="no-referrer" />
<link
rel="icon"

@ -3,6 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<meta name="referrer" content="no-referrer" />
<link
rel="icon"

@ -33,6 +33,8 @@ async function configTheme(vuetify) {
theme = getDarkColorSchemeQuery().matches ? 'dark' : 'light';
}
document.documentElement.style.setProperty('color-scheme', theme);
vuetify.theme.global.name.value = theme;
}

Loading…
Cancel
Save