Compare commits

..

4 Commits

5 changed files with 8 additions and 3 deletions

View File

@ -16,6 +16,7 @@ jobs:
steps: steps:
- checkout - checkout
- setup_remote_docker - setup_remote_docker
version: 19.03.13
- run: - run:
name: Build name: Build
command: | command: |

View File

@ -609,6 +609,8 @@ desktop: "デスクトップ"
clip: "クリップ" clip: "クリップ"
createNew: "新規作成" createNew: "新規作成"
optional: "任意" optional: "任意"
createNewClip: "新しいクリップを作成"
public: "パブリック"
_mfm: _mfm:
cheatSheet: "MFMチートシート" cheatSheet: "MFMチートシート"

View File

@ -1,7 +1,7 @@
{ {
"name": "misskey", "name": "misskey",
"author": "syuilo <syuilotan@yahoo.co.jp>", "author": "syuilo <syuilotan@yahoo.co.jp>",
"version": "12.57.0", "version": "12.57.1",
"codename": "indigo", "codename": "indigo",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -786,7 +786,8 @@ export default defineComponent({
}, },
isPublic: { isPublic: {
type: 'boolean', type: 'boolean',
label: this.$t('public') label: this.$t('public'),
default: false
} }
}); });
if (canceled) return; if (canceled) return;

View File

@ -60,7 +60,8 @@ export default defineComponent({
}, },
isPublic: { isPublic: {
type: 'boolean', type: 'boolean',
label: this.$t('public') label: this.$t('public'),
default: false
} }
}); });
if (canceled) return; if (canceled) return;