Compare commits

...

4 Commits

Author SHA1 Message Date
244d567b3a 5.13.2 2018-08-04 12:38:14 +09:00
61a9ad23f1 Fix bug 2018-08-04 12:35:57 +09:00
4f7c19461e 5.13.1 2018-08-04 11:40:06 +09:00
4ba6e1c2b2 Fix bug 2018-08-04 11:39:59 +09:00
3 changed files with 8 additions and 3 deletions

View File

@ -1,8 +1,8 @@
{
"name": "misskey",
"author": "syuilo <i@syuilo.com>",
"version": "5.13.0",
"clientVersion": "1.0.7963",
"version": "5.13.2",
"clientVersion": "1.0.7967",
"codename": "nighthike",
"main": "./built/index.js",
"private": true,

View File

@ -48,6 +48,10 @@ export default Vue.extend({
},
watch: {
game() {
this.$emit('gamed', this.game);
},
gameId() {
this.fetch();
}

View File

@ -1,5 +1,6 @@
const { lib: emojilib } = require('emojilib');
const JSDOM = require('jsdom');
const jsdom = require('jsdom');
const { JSDOM } = jsdom;
import config from '../config';
import { INote } from '../models/note';
import { TextElement } from './parse';