1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-14 00:44:43 +02:00

Compare commits

..

3 Commits
8.5.1 ... 8.3.1

Author SHA1 Message Date
syuilo
87f248b8ec Merge pull request #2440 from syuilo/develop
8.3.1
2018-08-24 07:03:49 +09:00
syuilo
2d4b183c14 Merge pull request #2439 from syuilo/develop
8.3.0
2018-08-24 06:43:12 +09:00
syuilo
a0adcf0d1a Merge pull request #2437 from syuilo/develop
8.2.0
2018-08-24 05:38:18 +09:00
8 changed files with 40 additions and 52 deletions

View File

@@ -5,16 +5,6 @@ ChangeLog
This document describes breaking changes only.
8.0.0
-----
### Migration
起動する前に、`node cli/migration/8.0.0`してください。
Please run `node cli/migration/8.0.0` before launch.
7.0.0
-----

View File

@@ -941,27 +941,27 @@ desktop/views/pages/admin/admin.unverify-user.vue:
desktop/views/pages/admin/admin.chart.vue:
title: "チャート"
per-day: "1ごと"
per-hour: "1時間ごと"
per-day: "1時間ごと"
per-hour: "1ごと"
notes: "投稿"
users: "ユーザー"
drive: "ドライブ"
local-notes: "ローカルの投稿の増減"
remote-notes: "リモートの投稿の増減"
local-notes-total: "ローカルの投稿累計"
remote-notes-total: "リモートの投稿累計"
local-users: "ローカルのユーザーの増減"
remote-users: "リモートのユーザーの増減"
local-users-total: "ローカルのユーザー累計"
remote-users-total: "リモートのユーザー累計"
local-drive: "ローカルのドライブ使用量の増減"
remote-drive: "リモートのドライブ使用量の増減"
local-drive-total: "ローカルのドライブ使用量累計"
remote-drive-total: "リモートのドライブ使用量累計"
local-drive-files: "ローカルのドライブのファイル数の増減"
remote-drive-files: "リモートのドライブのファイル数の増減"
local-drive-files-total: "ローカルのドライブのファイル数累計"
remote-drive-files-total: "リモートのドライブのファイル数累計"
local-notes: "ローカルの投稿"
remote-notes: "リモートの投稿"
local-notes-total: "ローカルの投稿 (累計)"
remote-notes-total: "リモートの投稿 (累計)"
local-users: "ローカルのユーザー"
remote-users: "リモートのユーザー"
local-users-total: "ローカルのユーザー (累計)"
remote-users-total: "リモートのユーザー (累計)"
local-drive: "ローカルのドライブ使用量"
remote-drive: "リモートのドライブ使用量"
local-drive-total: "ローカルのドライブ使用量 (累計)"
remote-drive-total: "リモートのドライブ使用量 (累計)"
local-drive-files: "ローカルのドライブのファイル数"
remote-drive-files: "リモートのドライブのファイル数"
local-drive-files-total: "ローカルのドライブのファイル数 (累計)"
remote-drive-files-total: "リモートのドライブのファイル数 (累計)"
desktop/views/pages/deck/deck.tl-column.vue:
is-media-only: "メディア投稿のみ"

View File

@@ -1,8 +1,8 @@
{
"name": "misskey",
"author": "syuilo <i@syuilo.com>",
"version": "8.5.1",
"clientVersion": "1.0.8834",
"version": "8.3.1",
"clientVersion": "1.0.8828",
"codename": "nighthike",
"main": "./built/index.js",
"private": true,

View File

@@ -23,8 +23,7 @@ export default Vue.extend({
methods: {
render() {
this.renderChart(this.data, mergeOptions({
responsive: true,
maintainAspectRatio: false,
responsive: false,
scales: {
xAxes: [{
type: 'time',

View File

@@ -30,9 +30,7 @@
<a @click="span = 'day'">%i18n:@per-day%</a> | <a @click="span = 'hour'">%i18n:@per-hour%</a>
</div>
</header>
<div>
<x-chart v-if="chart" :data="data[0]" :opts="data[1]"/>
</div>
<x-chart v-if="chart" :data="data[0]" :opts="data[1]" :width="720" :height="300"/>
</div>
</template>
@@ -44,9 +42,13 @@ export default Vue.extend({
components: {
XChart
},
props: {
chart: {
required: true
}
},
data() {
return {
chart: null,
chartType: 'local-notes',
span: 'hour'
};
@@ -81,11 +83,6 @@ export default Vue.extend({
);
}
},
created() {
(this as any).api('chart').then(chart => {
this.chart = chart;
});
},
methods: {
notesChart(local: boolean): any {
const data = this.stats.slice().reverse().map(x => ({
@@ -142,7 +139,7 @@ export default Vue.extend({
return [{
datasets: [{
label: local ? 'Local Notes' : 'Remote Notes',
fill: true,
fill: false,
borderColor: '#f6584f',
borderWidth: 2,
pointBackgroundColor: '#fff',
@@ -163,7 +160,7 @@ export default Vue.extend({
return [{
datasets: [{
label: local ? 'Local Users' : 'Remote Users',
fill: true,
fill: false,
borderColor: '#f6584f',
borderWidth: 2,
pointBackgroundColor: '#fff',
@@ -184,7 +181,7 @@ export default Vue.extend({
return [{
datasets: [{
label: local ? 'Local Drive Usage' : 'Remote Drive Usage',
fill: true,
fill: false,
borderColor: '#f6584f',
borderWidth: 2,
pointBackgroundColor: '#fff',
@@ -241,9 +238,4 @@ export default Vue.extend({
> *:last-child
margin-left auto
> div
> *
display block
height 300px
</style>

View File

@@ -11,7 +11,7 @@
<main>
<div v-show="page == 'dashboard'">
<x-dashboard/>
<x-chart/>
<x-chart :chart="chart"/>
</div>
<div v-if="page == 'users'">
<x-suspend-user/>
@@ -49,6 +49,11 @@ export default Vue.extend({
chart: null
};
},
created() {
(this as any).api('admin/chart').then(chart => {
this.chart = chart;
});
},
methods: {
nav(page: string) {
this.page = page;

View File

@@ -1,8 +1,10 @@
import Stats, { IStats } from '../../../models/stats';
import Stats, { IStats } from '../../../../models/stats';
type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
export const meta = {
requireCredential: true,
requireAdmin: true
};
export default (params: any) => new Promise(async (res, rej) => {

View File

@@ -40,7 +40,7 @@ async function save(path: string, name: string, type: string, hash: string, size
const thumbnailKey = `${config.drive.prefix}/${uuid.v4()}/${name}.thumbnail.jpg`;
const baseUrl = config.drive.baseUrl
|| `${ config.drive.config.useSSL ? 'https' : 'http' }://${ config.drive.config.endPoint }${ config.drive.config.port ? ':' + config.drive.config.port : '' }/${ config.drive.bucket }`;
|| `${ config.drive.config.secure ? 'https' : 'http' }://${ config.drive.config.endPoint }${ config.drive.config.port ? ':' + config.drive.config.port : '' }/${ config.drive.bucket }`;
await minio.putObject(config.drive.bucket, key, fs.createReadStream(path), size, {
'Content-Type': type,