diff --git a/CHANGELOG.md b/CHANGELOG.md index bf207d005..cd2cd6a0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ If you encounter any problems with updating, please try the following: 1. `npm run clean` or `npm run cleanall` 2. Retry update (Don't forget `npm i`) +11.1.1 (2019/04/15) +------------------- +### Fixes +* Metaタグの application-name を Misskey で固定するように修正 +* トークメッセージが既読にならない問題を修正 +* デフォルトでHTLを表示するように + 11.1.0 (2019/04/15) ------------------- ### Improvements diff --git a/package.json b/package.json index 8fe0129f3..775483251 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "misskey", "author": "syuilo ", - "version": "11.1.0", + "version": "11.1.1", "codename": "daybreak", "repository": { "type": "git", diff --git a/src/client/app/desktop/views/home/timeline.vue b/src/client/app/desktop/views/home/timeline.vue index f257f1fa9..1e6abac82 100644 --- a/src/client/app/desktop/views/home/timeline.vue +++ b/src/client/app/desktop/views/home/timeline.vue @@ -88,8 +88,6 @@ export default Vue.extend({ } else if (this.src == 'tag') { this.tagTl = this.$store.state.device.tl.arg; } - } else if (this.$store.state.i.followingCount == 0) { - this.src = 'hybrid'; } }, diff --git a/src/client/app/mobile/views/pages/home.vue b/src/client/app/mobile/views/pages/home.vue index af008ae26..0d110bf2e 100644 --- a/src/client/app/mobile/views/pages/home.vue +++ b/src/client/app/mobile/views/pages/home.vue @@ -130,8 +130,6 @@ export default Vue.extend({ } else if (this.src == 'tag') { this.tagTl = this.$store.state.device.tl.arg; } - } else if (this.$store.state.i.followingCount == 0) { - this.src = 'hybrid'; } }, diff --git a/src/server/api/stream/channels/messaging.ts b/src/server/api/stream/channels/messaging.ts index 8397f849f..ce766e28e 100644 --- a/src/server/api/stream/channels/messaging.ts +++ b/src/server/api/stream/channels/messaging.ts @@ -23,7 +23,7 @@ export default class extends Channel { public onMessage(type: string, body: any) { switch (type) { case 'read': - read(this.user!.id, this.otherpartyId, body.id); + read(this.user!.id, this.otherpartyId, [body.id]); break; } } diff --git a/src/server/web/views/base.pug b/src/server/web/views/base.pug index 8e0595e90..e61d29685 100644 --- a/src/server/web/views/base.pug +++ b/src/server/web/views/base.pug @@ -8,7 +8,7 @@ html head meta(charset='utf-8') - meta(name='application-name' content= title || 'Misskey') + meta(name='application-name' content='Misskey') meta(name='referrer' content='origin') meta(name='theme-color' content='#105779') meta(property='og:site_name' content= title || 'Misskey')