Merge branch 'develop' into fix-msg-room

This commit is contained in:
tamaina 2022-01-27 19:08:34 +09:00
commit 6f9ccf6b02
7 changed files with 13 additions and 8 deletions

View File

@ -7,6 +7,10 @@
-->
## 12.102.1 (2022/01/27)
### Bugfixes
- チャットが表示できない問題を修正
## 12.102.0 (2022/01/27)
### NOTE

View File

@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "12.102.0",
"version": "12.102.1",
"codename": "indigo",
"repository": {
"type": "git",

View File

@ -102,7 +102,7 @@ const props = withDefaults(defineProps<{
initialLocalOnly?: boolean;
initialVisibleUsers?: misskey.entities.User[];
initialNote?: misskey.entities.Note;
share?: boolean;
instant?: boolean;
fixed?: boolean;
autofocus?: boolean;
}>(), {
@ -641,7 +641,7 @@ onMounted(() => {
nextTick(() => {
// 稿
if (!props.share && !props.mention && !props.specified) {
if (!props.instant && !props.mention && !props.specified) {
const draft = JSON.parse(localStorage.getItem('drafts') || '{}')[draftKey];
if (draft) {
text = draft.data.text;

View File

@ -182,6 +182,7 @@ function gravity() {
function iLoveMisskey() {
os.post({
initialText: 'I $[jelly ❤] #Misskey',
instant: true,
});
}

View File

@ -24,7 +24,7 @@
<script lang="ts">
import { defineComponent, defineAsyncComponent } from 'vue';
import insertTextAtCursor from 'insert-text-at-cursor';
import * as autosize from 'autosize';
import autosize from 'autosize';
import { formatTimeString } from '@/scripts/format-time-string';
import { selectFile } from '@/scripts/select-file';
import * as os from '@/os';
@ -76,7 +76,8 @@ export default defineComponent({
autosize(this.$refs.text);
// TODO: detach when unmount
new Autocomplete(this.$refs.text, this, { model: 'text' });
// TODO
//new Autocomplete(this.$refs.text, this, { model: 'text' });
// 稿
const draft = JSON.parse(localStorage.getItem('message_drafts') || '{}')[this.draftKey];

View File

@ -12,12 +12,11 @@
</template>
<template #defalut="{ items: messages }">
<XList v-slot="{ item: message }" class="messages" :items="messages" direction="up" reversed>
<XList v-if="messages.length > 0" v-slot="{ item: message }" class="messages" :items="messages" direction="up" reversed>
<XMessage :key="message.id" :message="message" :is-group="group != null"/>
</XList>
</template>
</MkPagination>
<MkLoading v-if="fetching"/>
</div>
<footer>
<div v-if="typers.length > 0" class="typers">

View File

@ -5,7 +5,7 @@
<XPostForm
v-if="state === 'writing'"
fixed
:share="true"
:instant="true"
:initial-text="initialText"
:initial-visibility="visibility"
:initial-files="files"