1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-27 15:34:56 +02:00

Compare commits

...

7 Commits

Author SHA1 Message Date
github-actions[bot]
8a38a05d83 Release: 2026.5.3 2026-05-18 01:44:50 +00:00
github-actions[bot]
5b8a38cde8 Bump version to 2026.5.3-alpha.0 2026-05-18 01:24:32 +00:00
かっこかり
d503b8d073 fix(docker): runnerでのpnpmの依存関係チェックを無効化 (#17425)
* fix(docker): runnerでのpnpmの依存関係チェックを無効化

* Update Changelog

* update changelog
2026-05-18 10:23:47 +09:00
syuilo
419cdcff36 Update about-misskey.vue 2026-05-18 07:25:03 +09:00
github-actions[bot]
badb243021 [skip ci] Update CHANGELOG.md (prepend template) 2026-05-17 22:15:01 +00:00
github-actions[bot]
2bc0ccb108 Release: 2026.5.2 2026-05-17 22:14:54 +00:00
おさむのひと
fc6c45d175 fix: add-i18n-keyの記述が間違っていたので修正 (#17418) 2026-05-17 19:30:35 +09:00
6 changed files with 18 additions and 4 deletions

View File

@@ -26,7 +26,9 @@ _settings:
general: "全般"
appearance: "外観"
# パラメータ付き (ICU MessageFormat 互換)
# パラメータ付き (単純なプレースホルダ置換)
# ICU MessageFormat の plural / select / number / date などは非対応
# 使えるのは `{name}` のような単純な置換のみ
greeting: "こんにちは、{name}さん"
```

View File

@@ -1,3 +1,9 @@
## 2026.5.3
### General
- Fix: Dockerで起動に失敗する問題を修正
## 2026.5.2
### Note

View File

@@ -74,6 +74,8 @@ FROM --platform=$TARGETPLATFORM node:${NODE_VERSION}-slim AS runner
ARG UID="991"
ARG GID="991"
ENV PNPM_CONFIG_VERIFY_DEPS_BEFORE_RUN=false
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ffmpeg tini curl libjemalloc-dev libjemalloc2 \

View File

@@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "2026.5.2-beta.1",
"version": "2026.5.3",
"codename": "nasubi",
"repository": {
"type": "git",

View File

@@ -138,6 +138,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<script lang="ts" setup>
import { nextTick, onBeforeUnmount, ref, useTemplateRef, computed } from 'vue';
import { host, version } from '@@/js/config.js';
import { DEFAULT_EMOJIS } from '@@/js/const.js';
import FormLink from '@/components/form/link.vue';
import FormSection from '@/components/form/section.vue';
import MkButton from '@/components/MkButton.vue';
@@ -150,7 +151,6 @@ import { definePage } from '@/page.js';
import { claimAchievement, claimedAchievements } from '@/utility/achievements.js';
import { $i } from '@/i.js';
import { prefer } from '@/preferences.js';
import { DEFAULT_EMOJIS } from '@@/js/const.js';
const patronsWithIcon = [{
name: 'カイヤン',
@@ -299,6 +299,9 @@ const patronsWithIcon = [{
}, {
name: '大賀愛一郎',
icon: 'https://assets.misskey-hub.net/patrons/c701a797d1df4125970f25d3052250ac.jpg',
}, {
name: '西野マチ',
icon: 'https://assets.misskey-hub.net/patrons/962ff1d2f3d040ed8973b62bbff84391.jpg',
}];
const patrons = [
@@ -414,6 +417,7 @@ const patrons = [
'ほとラズ',
'スズカケン',
'蒼井よみこ',
'忍猫',
];
const thereIsTreasure = ref($i && !claimedAchievements.includes('foundTreasure'));

View File

@@ -1,7 +1,7 @@
{
"type": "module",
"name": "misskey-js",
"version": "2026.5.2-beta.1",
"version": "2026.5.3",
"description": "Misskey SDK for JavaScript",
"license": "MIT",
"main": "./built/index.js",