Skip to content

Commit

Permalink
enhance(frontend): 업데이트 및 마이그레이션 알림에서 CherryPick의 변경 사항만 표시함
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Oct 8, 2024
1 parent 6d0de6a commit caa892d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG_CHERRYPICK.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2024xx](CHANGE
# 릴리즈 노트
이 문서는 CherryPick의 변경 사항만 포함합니다.

## 4.x.x
출시일: unreleased<br>
기반 Misskey 버전: 2024.x.x<br>
Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2024xx](CHANGELOG.md#2024xx) 문서를 참고하십시오.

### Client
- Enhance: 업데이트 및 마이그레이션 알림에서 CherryPick의 변경 사항만 표시함

---


## 4.12.0
출시일: 2024/10/08<br>
기반 Misskey 버전: 2024.9.0<br>
Expand Down
6 changes: 4 additions & 2 deletions packages/frontend/src/components/MkMigrated.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,20 @@ SPDX-License-Identifier: AGPL-3.0-only
<div>✨{{ version }}🚀</div>
<div style="font-size: 0.8em;">{{ basedMisskeyVersion }}</div>
</div>
<MkButton rounded full @click="showChangelog = true; modal.value.close();">{{ i18n.ts.whatIsNew }}</MkButton>
<MkButton rounded full @click="whatIsNewCherryPick">{{ i18n.ts.whatIsNew }}</MkButton>
<MkButton :class="$style.gotIt" primary rounded full @click="close">{{ i18n.ts.gotIt }}</MkButton>
</div>
</MkModal>
<!--
<MkModal v-else-if="showChangelog" ref="modal" :zPriority="'middle'">
<div :class="$style.root">
<div :class="$style.title" style="margin: 0 0 1.5em; font-weight: normal;">{{ i18n.ts.whatIsNew }}</div>
<MkButton rounded full @click="whatIsNewMisskey">Misskey</MkButton>
<MkButton rounded full style="margin: 8px 0 0;" @click="whatIsNewCherryPick">CherryPick</MkButton>
<MkButton rounded full @click="whatIsNewMisskey">Misskey</MkButton>
<MkButton :class="$style.gotIt" primary rounded full @click="close">{{ i18n.ts.ok }}</MkButton>
</div>
</MkModal>
-->
</template>

<script lang="ts" setup>
Expand Down
4 changes: 3 additions & 1 deletion packages/frontend/src/components/MkUpdated.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ SPDX-License-Identifier: AGPL-3.0-only
<div>✨{{ version }}🚀</div>
<div style="font-size: 0.8em;">{{ basedMisskeyVersion }}</div>
</div>
<MkButton rounded full @click="showChangelog = true; modal?.close();">{{ i18n.ts.whatIsNew }}</MkButton>
<MkButton rounded full @click="whatIsNewCherryPick">{{ i18n.ts.whatIsNew }}</MkButton>
<MkButton :class="$style.gotIt" primary rounded full @click="close">{{ i18n.ts.gotIt }}</MkButton>
</div>
</MkModal>
<!--
<MkModal v-else-if="showChangelog" ref="modal" :zPriority="'middle'" @closed="$emit('closed')">
<div :class="$style.root">
<div :class="$style.title" style="margin: 0 0 1.5em; font-weight: normal;">{{ i18n.ts.whatIsNew }}</div>
Expand All @@ -29,6 +30,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkButton :class="$style.gotIt" primary rounded full @click="close">{{ i18n.ts.ok }}</MkButton>
</div>
</MkModal>
-->
</template>

<script lang="ts" setup>
Expand Down

0 comments on commit caa892d

Please sign in to comment.