Compare commits

...

4 Commits
8.4.0 ... 8.5.0

Author SHA1 Message Date
syuilo
a827b6028d Merge pull request #2442 from syuilo/develop
8.5.0
2018-08-24 07:24:08 +09:00
syuilo
4517bf7342 8.5.0 2018-08-24 07:23:42 +09:00
syuilo
b21287262e チャート取得APIを誰でも利用できるようにするなど 2018-08-24 07:23:04 +09:00
syuilo
c1b47a2119 Add missing changelog 2018-08-24 07:20:26 +09:00
5 changed files with 20 additions and 16 deletions

View File

@@ -5,6 +5,16 @@ 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

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

View File

@@ -44,13 +44,9 @@ export default Vue.extend({
components: {
XChart
},
props: {
chart: {
required: true
}
},
data() {
return {
chart: null,
chartType: 'local-notes',
span: 'hour'
};
@@ -85,6 +81,11 @@ 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 => ({

View File

@@ -11,7 +11,7 @@
<main>
<div v-show="page == 'dashboard'">
<x-dashboard/>
<x-chart :chart="chart"/>
<x-chart/>
</div>
<div v-if="page == 'users'">
<x-suspend-user/>
@@ -49,11 +49,6 @@ 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,10 +1,8 @@
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) => {