Skip to content

Commit

Permalink
Merge branch 'develop' into vite
Browse files Browse the repository at this point in the history
  • Loading branch information
tamaina committed May 1, 2022
2 parents e31baa9 + 6ed010b commit 193de40
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 43 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
## 12.x.x (unreleased)
### Improvements
- API: notifications/readは配列でも受け付けるように
- /share のクエリでリプライやファイル等の情報を渡せるように
- ページロードエラーページにリロードボタンを追加
### Bugfixes
-
Expand All @@ -18,12 +15,16 @@ You should also include the user name that made the change.

### Improvements
- enhance: ドライブに画像ファイルをアップロードするときオリジナル画像を破棄してwebpublicのみ保持するオプション @tamaina
- enhance: API: notifications/readは配列でも受け付けるように #7667 @tamaina
- enhance: プッシュ通知を複数アカウント対応に #7667 @tamaina
- enhance: プッシュ通知にクリックやactionを設定 #7667 @tamaina

### Bugfixes
- Client: fix settings page @tamaina
- Client: fix profile tabs @futchitwo
- Server: await promises when following or unfollowing users @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)

Expand Down
1 change: 1 addition & 0 deletions packages/backend/src/server/well-known.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ router.options(allPath, async ctx => {
router.get('/.well-known/host-meta', async ctx => {
ctx.set('Content-Type', xrd);
ctx.body = XRD({ element: 'Link', attributes: {
rel: 'lrdd',
type: xrd,
template: `${config.url}${webFingerPath}?resource={uri}`,
} });
Expand Down
2 changes: 2 additions & 0 deletions packages/backend/src/services/note/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ export default async (user: { id: User['id']; username: User['username']; host:

if (data.text) {
data.text = data.text.trim();
} else {
data.text = null;
}

let tags = data.apHashtags;
Expand Down
68 changes: 28 additions & 40 deletions packages/client/src/pages/settings/custom-css.vue
Original file line number Diff line number Diff line change
@@ -1,57 +1,45 @@
<template>
<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;">
<template #label>CSS</template>
</FormTextarea>
</div>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
<script lang="ts" setup>
import { defineExpose, ref, watch } from 'vue';
import FormTextarea from '@/components/form/textarea.vue';
import FormInfo from '@/components/ui/info.vue';
import * as os from '@/os';
import { unisonReload } from '@/scripts/unison-reload';
import * as symbols from '@/symbols';
import { defaultStore } from '@/store';
export default defineComponent({
components: {
FormTextarea,
FormInfo,
},
emits: ['info'],
data() {
return {
[symbols.PAGE_INFO]: {
title: this.$ts.customCss,
icon: 'fas fa-code',
bg: 'var(--bg)',
},
localCustomCss: localStorage.getItem('customCss')
}
},
mounted() {
this.$watch('localCustomCss', this.apply);
},
methods: {
async apply() {
localStorage.setItem('customCss', this.localCustomCss);
const { canceled } = await os.confirm({
type: 'info',
text: this.$ts.reloadToApplySetting,
});
if (canceled) return;
unisonReload();
}
import { i18n } from '@/i18n';
const localCustomCss = ref(localStorage.getItem('customCss') ?? '');
async function apply() {
localStorage.setItem('customCss', localCustomCss.value);
const { canceled } = await os.confirm({
type: 'info',
text: i18n.ts.reloadToApplySetting,
});
if (canceled) return;
unisonReload();
}
watch(localCustomCss, async () => {
await apply();
});
defineExpose({
[symbols.PAGE_INFO]: {
title: i18n.ts.customCss,
icon: 'fas fa-code',
bg: 'var(--bg)',
}
});
</script>

0 comments on commit 193de40

Please sign in to comment.