update package.json init.ts style.scss

This commit is contained in:
こけっち 2022-06-13 23:17:09 +09:00
parent 65ca1dd106
commit 8c857daee0
No known key found for this signature in database
GPG Key ID: 21460619C5FC4DD1
3 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "12.111.1-simkey-v3",
"version": "12.111.1-simkey-v4",
"codename": "indigo",
"repository": {
"type": "git",

View File

@ -13,7 +13,7 @@ if (localStorage.getItem('accounts') != null) {
}
//#endregion
import { computed, createApp, watch, markRaw, version as vueVersion, defineAsyncComponent } from 'vue';
import {computed, createApp, watch, markRaw, version as vueVersion, defineAsyncComponent, ref} from 'vue';
import compareVersions from 'compare-versions';
import JSON5 from 'json5';
@ -345,6 +345,11 @@ for (const plugin of ColdDeviceStorage.get('plugins').filter(p => p.active)) {
});
}
if (!$i) {
const wallpaper = ref(localStorage.getItem('wallpaper'));
wallpaper.value = "https://simkey.net/files/c2f30819-64f7-42df-91b6-0e7fb122a413";
}
if ($i) {
if ($i.isDeleted) {
alert({

View File

@ -565,6 +565,6 @@ hr {
}
//パネルブラー
.panel, ._popup, ._window, .dnpfarvg {
._panel, ._popup, ._window, .dnpfarvg, .sqadhkmv {
backdrop-filter: var(--blur, blur(8px));
}