Skip to content

Commit

Permalink
Merge pull request #900 from update-host
Browse files Browse the repository at this point in the history
Update host
  • Loading branch information
u1-liquid authored Jan 17, 2025
2 parents 910f711 + 212de28 commit 1ce8784
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "2024.5.0-host.7a",
"version": "2024.5.0-host.7b",
"codename": "nasubi",
"repository": {
"type": "git",
Expand Down
30 changes: 16 additions & 14 deletions packages/frontend/src/components/MkDraftsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@
</div>
<MkTime :time="draft.createdAt" colored />
</div>
<span v-if="draft.visibility !== 'public'" :title="i18n.ts._visibility[draft.visibility]" style="margin-left: 0.5em">
<span v-if="draft.visibility !== 'public'" :title="i18n.ts._visibility[draft.visibility]">
<i v-if="draft.visibility === 'home'" class="ti ti-home"></i>
<i v-else-if="draft.visibility === 'followers'" class="ti ti-lock"></i>
<i v-else-if="draft.visibility === 'specified'" ref="specified" class="ti ti-mail"></i>
</span>
<span v-if="draft.localOnly" :title="i18n.ts._visibility['disableFederation']" style="margin-left: 0.5em">
<span v-if="draft.localOnly" :title="i18n.ts._visibility['disableFederation']">
<i class="ti ti-rocket-off"></i>
</span>
<span v-if="draft.channel" :title="draft.channel.name" style="margin-left: 0.5em">
<span v-if="draft.channel" :title="draft.channel.name">
<i class="ti ti-device-tv"></i>
</span>
</div>
Expand Down Expand Up @@ -107,17 +107,17 @@
</div>
<MkTime :time="draft.createdAt" colored />
</div>
<span v-if="draft.visibility !== 'public'" :title="i18n.ts._visibility[draft.visibility]" style="margin-left: 0.5em">
<i v-if="draft.visibility === 'home'" class="ti ti-home"></i>
<i v-else-if="draft.visibility === 'followers'" class="ti ti-lock"></i>
<i v-else-if="draft.visibility === 'specified'" ref="specified" class="ti ti-mail"></i>
</span>
<span v-if="draft.localOnly" :title="i18n.ts._visibility['disableFederation']" style="margin-left: 0.5em">
<i class="ti ti-rocket-off"></i>
</span>
<span v-if="draft.channel" :title="draft.channel.name" style="margin-left: 0.5em">
<i class="ti ti-device-tv"></i>
</span>
<span v-if="draft.visibility !== 'public'" :title="i18n.ts._visibility[draft.visibility]">
<i v-if="draft.visibility === 'home'" class="ti ti-home"></i>
<i v-else-if="draft.visibility === 'followers'" class="ti ti-lock"></i>
<i v-else-if="draft.visibility === 'specified'" ref="specified" class="ti ti-mail"></i>
</span>
<span v-if="draft.localOnly" :title="i18n.ts._visibility['disableFederation']">
<i class="ti ti-rocket-off"></i>
</span>
<span v-if="draft.channel" :title="draft.channel.name">
<i class="ti ti-device-tv"></i>
</span>
</div>
</div>
<div>
Expand Down Expand Up @@ -285,8 +285,10 @@ const scheduledPagination = {
}
.draftNoteInfo {
display: flex;
flex-shrink: 0;
margin-left: auto;
gap: 4px;
}
.draftNoteCw {
Expand Down
2 changes: 1 addition & 1 deletion packages/misskey-js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "misskey-js",
"version": "2024.5.0-host.7a",
"version": "2024.5.0-host.7b",
"description": "Misskey SDK for JavaScript",
"types": "./built/dts/index.d.ts",
"exports": {
Expand Down

0 comments on commit 1ce8784

Please sign in to comment.