Compare commits

..

4 Commits

Author SHA1 Message Date
97885d3def Merge branch 'develop' 2022-01-27 18:00:32 +09:00
5f5f68cdcd Merge branch 'develop' 2022-01-27 00:17:13 +09:00
af6d52e4c8 Merge branch 'develop' 2021-12-29 17:25:24 +09:00
621fc5a715 Merge branch 'develop' 2021-12-29 13:42:15 +09:00
6 changed files with 5 additions and 1793 deletions

View File

@ -24,7 +24,6 @@ const languages = [
'fr-FR', 'fr-FR',
'id-ID', 'id-ID',
'it-IT', 'it-IT',
'ja-NY',
'ja-JP', 'ja-JP',
'ja-KS', 'ja-KS',
'kab-KAB', 'kab-KAB',
@ -57,7 +56,6 @@ module.exports = Object.entries(locales)
const [lang] = k.split('-'); const [lang] = k.split('-');
switch (k) { switch (k) {
case 'ja-JP': return v; case 'ja-JP': return v;
case 'ja-NY':
case 'ja-KS': case 'ja-KS':
case 'en-US': return merge(locales['ja-JP'], v); case 'en-US': return merge(locales['ja-JP'], v);
default: return merge( default: return merge(

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +1,10 @@
{ {
"name": "misskey", "name": "misskey",
"version": "12.102.1-simkey", "version": "12.102.1",
"codename": "indigo", "codename": "indigo",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/sim1222/misskey.git" "url": "https://github.com/misskey-dev/misskey.git"
}, },
"private": true, "private": true,
"scripts": { "scripts": {

View File

@ -4,7 +4,7 @@
"start_url": "/", "start_url": "/",
"display": "standalone", "display": "standalone",
"background_color": "#313a42", "background_color": "#313a42",
"theme_color": "#a7dc4e", "theme_color": "#86b300",
"icons": [ "icons": [
{ {
"src": "/static-assets/icons/192.png", "src": "/static-assets/icons/192.png",

View File

@ -19,8 +19,8 @@ html
meta(charset='utf-8') meta(charset='utf-8')
meta(name='application-name' content='Misskey') meta(name='application-name' content='Misskey')
meta(name='referrer' content='origin') meta(name='referrer' content='origin')
meta(name='theme-color' content='#a7dc4e') meta(name='theme-color' content='#86b300')
meta(name='theme-color-orig' content='#a7dc4e') meta(name='theme-color-orig' content='#86b300')
meta(property='og:site_name' content= instanceName || 'Misskey') meta(property='og:site_name' content= instanceName || 'Misskey')
meta(name='viewport' content='width=device-width, initial-scale=1') meta(name='viewport' content='width=device-width, initial-scale=1')
link(rel='icon' href= icon || '/favicon.ico') link(rel='icon' href= icon || '/favicon.ico')

View File

@ -25,7 +25,6 @@
</div> </div>
</template> </template>
<div class="buttons right"> <div class="buttons right">
<button v-tooltip="Reload" class="_button button" @click.stop="location.reload()"><i class="fas fa-redo"></i></button>
<template v-if="info && info.actions && !narrow"> <template v-if="info && info.actions && !narrow">
<template v-for="action in info.actions"> <template v-for="action in info.actions">
<MkButton v-if="action.asFullButton" class="fullButton" primary @click.stop="action.handler"><i :class="action.icon" style="margin-right: 6px;"></i>{{ action.text }}</MkButton> <MkButton v-if="action.asFullButton" class="fullButton" primary @click.stop="action.handler"><i :class="action.icon" style="margin-right: 6px;"></i>{{ action.text }}</MkButton>