Merge branch 'develop' into vite

This commit is contained in:
tamaina 2022-05-01 22:22:15 +09:00
commit 193de40410
4 changed files with 29 additions and 37 deletions

View File

@ -2,9 +2,6 @@
## 12.x.x (unreleased) ## 12.x.x (unreleased)
### Improvements ### Improvements
- API: notifications/readは配列でも受け付けるように
- /share のクエリでリプライやファイル等の情報を渡せるように
- ページロードエラーページにリロードボタンを追加
### Bugfixes ### Bugfixes
- -
@ -18,12 +15,16 @@ You should also include the user name that made the change.
### Improvements ### Improvements
- enhance: ドライブに画像ファイルをアップロードするときオリジナル画像を破棄してwebpublicのみ保持するオプション @tamaina - enhance: ドライブに画像ファイルをアップロードするときオリジナル画像を破棄してwebpublicのみ保持するオプション @tamaina
- enhance: API: notifications/readは配列でも受け付けるように #7667 @tamaina
- enhance: プッシュ通知を複数アカウント対応に #7667 @tamaina
- enhance: プッシュ通知にクリックやactionを設定 #7667 @tamaina
### Bugfixes ### Bugfixes
- Client: fix settings page @tamaina - Client: fix settings page @tamaina
- Client: fix profile tabs @futchitwo - Client: fix profile tabs @futchitwo
- Server: await promises when following or unfollowing users @Johann150 - Server: await promises when following or unfollowing users @Johann150
- Client: fix abuse reports page to be able to show all reports @Johann150 - Client: fix abuse reports page to be able to show all reports @Johann150
- Federation: Add rel attribute to host-meta @mei23
## 12.110.1 (2022/04/23) ## 12.110.1 (2022/04/23)

View File

@ -41,6 +41,7 @@ router.options(allPath, async ctx => {
router.get('/.well-known/host-meta', async ctx => { router.get('/.well-known/host-meta', async ctx => {
ctx.set('Content-Type', xrd); ctx.set('Content-Type', xrd);
ctx.body = XRD({ element: 'Link', attributes: { ctx.body = XRD({ element: 'Link', attributes: {
rel: 'lrdd',
type: xrd, type: xrd,
template: `${config.url}${webFingerPath}?resource={uri}`, template: `${config.url}${webFingerPath}?resource={uri}`,
} }); } });

View File

@ -187,6 +187,8 @@ export default async (user: { id: User['id']; username: User['username']; host:
if (data.text) { if (data.text) {
data.text = data.text.trim(); data.text = data.text.trim();
} else {
data.text = null;
} }
let tags = data.apHashtags; let tags = data.apHashtags;

View File

@ -1,6 +1,6 @@
<template> <template>
<div class="_formRoot"> <div class="_formRoot">
<FormInfo warn class="_formBlock">{{ $ts.customCssWarn }}</FormInfo> <FormInfo warn class="_formBlock">{{ i18n.ts.customCssWarn }}</FormInfo>
<FormTextarea v-model="localCustomCss" manual-save tall class="_monospace _formBlock" style="tab-size: 2;"> <FormTextarea v-model="localCustomCss" manual-save tall class="_monospace _formBlock" style="tab-size: 2;">
<template #label>CSS</template> <template #label>CSS</template>
@ -8,50 +8,38 @@
</div> </div>
</template> </template>
<script lang="ts"> <script lang="ts" setup>
import { defineComponent } from 'vue'; import { defineExpose, ref, watch } from 'vue';
import FormTextarea from '@/components/form/textarea.vue'; import FormTextarea from '@/components/form/textarea.vue';
import FormInfo from '@/components/ui/info.vue'; import FormInfo from '@/components/ui/info.vue';
import * as os from '@/os'; import * as os from '@/os';
import { unisonReload } from '@/scripts/unison-reload'; import { unisonReload } from '@/scripts/unison-reload';
import * as symbols from '@/symbols'; import * as symbols from '@/symbols';
import { defaultStore } from '@/store'; import { i18n } from '@/i18n';
export default defineComponent({ const localCustomCss = ref(localStorage.getItem('customCss') ?? '');
components: {
FormTextarea,
FormInfo,
},
emits: ['info'], async function apply() {
localStorage.setItem('customCss', localCustomCss.value);
data() { const { canceled } = await os.confirm({
return { type: 'info',
[symbols.PAGE_INFO]: { text: i18n.ts.reloadToApplySetting,
title: this.$ts.customCss, });
icon: 'fas fa-code', if (canceled) return;
bg: 'var(--bg)',
},
localCustomCss: localStorage.getItem('customCss')
}
},
mounted() { unisonReload();
this.$watch('localCustomCss', this.apply); }
},
methods: { watch(localCustomCss, async () => {
async apply() { await apply();
localStorage.setItem('customCss', this.localCustomCss); });
const { canceled } = await os.confirm({ defineExpose({
type: 'info', [symbols.PAGE_INFO]: {
text: this.$ts.reloadToApplySetting, title: i18n.ts.customCss,
}); icon: 'fas fa-code',
if (canceled) return; bg: 'var(--bg)',
unisonReload();
}
} }
}); });
</script> </script>