Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
feat: close #1813
Browse files Browse the repository at this point in the history
  • Loading branch information
yupix committed Aug 2, 2022
1 parent a7bfde2 commit 1ecae75
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 21 deletions.
39 changes: 20 additions & 19 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,42 +14,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- 依存関係が更新されました。脆弱性が修正されている場合があります。
- CVE-2022-29256 (sharp)
- CVE-2022-33987 (got)

### Added

- ~~Twemojiをインスタンスで配信~~
- オプション化し、使用するcdnを変更
- ~~Twemoji をインスタンスで配信~~
- オプション化し、使用する cdn を変更
- 引越し先をユーザーページに表示するように
- 投稿ページのURLで埋め込みプレイヤーを提供するように
- Bull Dashboardを組み込み、ジョブキューの確認や操作を行えるように
- 投稿ページの URL で埋め込みプレイヤーを提供するように
- Bull Dashboard を組み込み、ジョブキューの確認や操作を行えるように
- welcome ページでcwが設定されている場合は 「もっと見る」ボタンを出すように #1813

## Changed

- emojilistを更新
- emojilist を更新
- クエリの最適化
- dockerでnode@18を使用します
- node 14をドロップ
- **BREAKING CHANGE: node 12 は利用できません。**
- 16 or 18に移行してください
- docker で node@18 を使用します
- node 14 をドロップ
- **BREAKING CHANGE: node 12 は利用できません。** - 16 or 18 に移行してください

### Fixed

- アプリケーションの認証時にログインしてないとテーマが白すぎて見れたものじゃない #477
- 依存関係が更新されました。脆弱性が修正されている場合があります。
- CVE-2022-29256 (sharp)
- CVE-2022-33987 (got)

## [11.37.1-rei0784-5.21.1] 2022-07-28

### Fixed

- うまくDockerImageビルドできなかった
- うまく DockerImage ビルドできなかった

## [11.37.1-rei0784-5.21.0] 2022-07-28

### Fixed

- 依存関係が更新されました。脆弱性が修正されている場合があります。
- antenna, clip, listのパフォーマンス悪いのを修正
- *ayuskeyではantenna, clipのapiのみを提供しています。*
- antenna, clip, list のパフォーマンス悪いのを修正
- _ayuskey では antenna, clip の api のみを提供しています。_

## Changed

Expand Down Expand Up @@ -90,7 +91,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- renote は noindex
- update nodejs for docker
- メンションのアバターを調整
- birthdayに謎の値(02/32など)が設定できるように(なったはず)
- birthday に謎の値(02/32 など)が設定できるように(なったはず)

### Fixed

Expand Down
12 changes: 10 additions & 2 deletions src/client/app/common/views/components/welcome-timeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
</router-link>
</div>
</header>
<div class="text">
<p v-if="note.cw != null" class="cw">
<mk-cw-button v-model="showContent" :note="note"></mk-cw-button>
</p>
<div class="text" v-show="note.cw == null || showContent">
<mfm v-if="note.text" :text="note.cw != null ? note.cw : note.text" :author="note.user" :custom-emojis="note.emojis"/>
<mk-media-list v-if="note.files.length > 0" :media-list="note.files"/>
</div>
Expand All @@ -41,7 +44,8 @@ export default Vue.extend({
return {
fetching: true,
notes: [],
connection: null
connection: null,
showContent: false,
};
},
Expand All @@ -58,6 +62,10 @@ export default Vue.extend({
},
methods: {
toggleShowContent() {
this.showContent = !this.showContent;
},
fetch(cb?) {
this.fetching = true;
this.$root.api('notes', {
Expand Down

0 comments on commit 1ecae75

Please sign in to comment.