Commit graph

1786 commits

Author SHA1 Message Date
syuilo
9516b0a4b6 4.3.1 2018-06-19 08:03:39 +09:00
syuilo
90a5b5e12b 4.3.0 2018-06-18 17:25:45 +09:00
syuilo
37a1eeeccb 4.2.0 2018-06-18 14:54:09 +09:00
syuilo
33b3475422 ✌️ 2018-06-18 14:52:36 +09:00
rinsuki
6614be75d9 [noImplicitAny: true] src/services/drive 2018-06-17 20:04:19 +09:00
rinsuki
248d97b8f7 [noImplicitAny: true] src/text 2018-06-17 19:55:39 +09:00
rinsuki
4117ff41ef upgrade font-awesome packages 2018-06-17 17:57:50 +09:00
syuilo
2326155ac8 inputのsuffixがはみ出す問題を修正 2018-06-17 11:42:23 +09:00
syuilo
721e665c48 4.1.0 2018-06-17 11:33:24 +09:00
syuilo
d310a7b8a5 cors 2018-06-17 11:23:18 +09:00
syuilo
9a5a948aa3 4.0.0 2018-06-17 08:15:57 +09:00
syuilo
53ae17a033 3.1.1 2018-06-16 19:45:47 +09:00
syuilo
1ec0795e40 3.1.0 2018-06-16 18:43:25 +09:00
syuilo
5fcf2e731d MisskeyShare 2018-06-16 18:42:49 +09:00
syuilo
db209769f9 3.0.1 2018-06-16 15:23:44 +09:00
syuilo
e22c864cbd npm install --only=dev するのが既存のドキュメントと互換性が無いため戻す 2018-06-16 13:10:17 +09:00
syuilo
d053005559 #1715 2018-06-16 10:40:53 +09:00
syuilo
3664ba96c4 2.42.0 2018-06-16 07:40:39 +09:00
syuilo
401381649d 2.41.1 2018-06-15 19:58:15 +09:00
syuilo
84326df83d 2.41.0 2018-06-15 19:57:13 +09:00
syuilo
1ef35e24f1 2.40.1 2018-06-15 09:57:06 +09:00
syuilo
736d3100f6 2.40.0 2018-06-15 09:53:53 +09:00
syuilo
90aef44954 2.39.0 2018-06-15 08:00:14 +09:00
syuilo
e7b024b28b wip 2018-06-14 06:29:01 +09:00
syuilo
8610d3b3e7 2.38.3 2018-06-13 05:40:27 +09:00
syuilo
a9153ccce4 2.38.2 2018-06-13 05:25:27 +09:00
syuilo
a8157dcc96 2.38.1 2018-06-13 05:16:53 +09:00
syuilo
5d8f0fa831 2.38.0 2018-06-12 19:07:36 +09:00
syuilo
3cf96b67ab 2.37.7 2018-06-12 09:10:52 +09:00
syuilo
197951c48a 2.37.6 2018-06-12 08:59:36 +09:00
syuilo
ac6ae06590 2.37.5 2018-06-12 02:47:17 +09:00
syuilo
09faf42259 2.37.4 2018-06-12 02:19:00 +09:00
syuilo
33bd888e21 2.37.3 2018-06-11 14:16:46 +09:00
syuilo
dd80f31904 2.37.2 2018-06-11 13:48:07 +09:00
syuilo
6296b13e03 2.37.1 2018-06-11 11:45:27 +09:00
syuilo
a88d939ece 2.37.0 2018-06-11 11:44:26 +09:00
otofune
e69308c0d2 🆙 move some packages to devDependencies that non required by server
presumed by:
- move-to-devdependencies.fish
```fish
set targets (ls src | grep -v client | xargs -I'%' echo "src/%")
alias from_import="git grep 'import ' $targets | grep -v 'from \'\.' | grep -v 'from \"\.' | cut -d: -f2 | cut -d\; -f1 | rev | cut -d' ' -f1 | rev | cut -d\' -f2 | sort | uniq | grep -v '^readline\$' | grep -v '^zlib\$' | grep -v '^os\$' | grep -v '^http\$' | grep -v '^fs\$' | grep -v '^events\$' | grep -v '^crypto\$' | grep -v '^child_process\$' | grep -v '^cluster\$'`"
alias from_require="git grep 'require(' $targets | grep -v '(\'\.' | cut -d= -f2 | grep -v '__dirname' | grep require | cut -d' ' -f2 | cut -d')' -f1 | cut -d'(' -f2 | cut -d'\'' -f2 | sort | uniq | grep -v '^readline\$' | grep -v '^zlib\$' | grep -v '^os\$' | grep -v '^http\$' | grep -v '^fs\$' | grep -v '^events\$' | grep -v '^crypto\$' | grep -v '^child_process\$' | grep -v '^cluster\$'"
from_import | xargs npm uninstall --save-dev
from_require | xargs npm uninstall --save-dev
from_import | xargs npm install --save
from_require | xargs npm install --save
git show HEAD:require | node revert-pinning-dependencies.js
```
- revert-pinning-dependencies.js
```js
const readFromStdin = () => new Promise((resolve, reject) => {
  const chunks = []

  process.stdin.setEncoding('utf8')

  process.stdin.on('readable', () => {
    const chunk = process.stdin.read()
    if (chunk == null) return
    chunks.push(chunk)
  })

  process.stdin.on('end', () => {
    return resolve(chunks.join('\n'))
  })
})

async function main () {
  const fs = require('fs')

  const raw = await readFromStdin()
  const head = JSON.parse(raw)
  const now = JSON.parse(fs.readFileSync('package.json'))

  Object.keys(now.dependencies).forEach(key => {
    now.dependencies[key] = head.dependencies[key]
  })

  fs.writeFileSync('package.json', JSON.stringify(now,null,'\t'))
}

main().catch(console.error)
```
2018-06-11 08:08:52 +09:00
syuilo
c6291ff208 2.36.1 2018-06-11 01:28:45 +09:00
syuilo
73ff6c14a3 2.36.0 2018-06-10 12:22:48 +09:00
syuilo
5a0e572e82 2.35.3 2018-06-10 08:42:29 +09:00
syuilo
c266868871 2.35.2 2018-06-10 03:58:12 +09:00
syuilo
b7161f4cb5 2.35.1 2018-06-10 03:31:42 +09:00
syuilo
98054dbdb3 2.35.0 2018-06-10 01:22:44 +09:00
syuilo
155c74c72e Clean up dependencies 2018-06-10 00:41:57 +09:00
syuilo
b478ae6ffd 2.34.3 2018-06-09 11:41:22 +09:00
syuilo
f61c50743f 2.34.2 2018-06-09 10:16:29 +09:00
syuilo
8eb850fb51 2.34.1 2018-06-09 06:28:22 +09:00
syuilo
d56500f523 2.34.0 2018-06-09 04:15:18 +09:00
syuilo
8bb5dab657 #1686 2018-06-09 04:14:26 +09:00
syuilo
38c57030f8 サーバーの統計情報をメモリに記憶するようにするなど 2018-06-09 01:45:25 +09:00
syuilo
926ada6065 2.33.2 2018-06-08 22:03:24 +09:00
syuilo
deb355ff5e 2.33.1 2018-06-08 21:50:41 +09:00
syuilo
7c7dfd42f6 2.33.0 2018-06-08 21:39:24 +09:00
syuilo
634544a3b4 2.32.0 2018-06-08 11:47:33 +09:00
syuilo
3ade37f1ee 2.31.0 2018-06-08 08:39:04 +09:00
syuilo
685244e282 2.30.2 2018-06-08 08:06:19 +09:00
syuilo
191fe8be45 2.30.1 2018-06-08 05:49:19 +09:00
syuilo
32e52c9ece 2.30.0 2018-06-08 05:04:56 +09:00
syuilo
7a016f4ca9 2.29.1 2018-06-07 08:48:22 +09:00
syuilo
f57943964a 2.29.0 2018-06-07 06:16:11 +09:00
syuilo
8f72c2e6d1 2.28.0 2018-06-07 05:15:05 +09:00
syuilo
7ead811016 2.27.3 2018-06-07 02:07:00 +09:00
syuilo
7821386fe2 2.27.2 2018-06-07 01:45:04 +09:00
syuilo
a738055583 2.27.1 2018-06-06 19:37:15 +09:00
syuilo
4d58a86b4b 2.27.0 2018-06-06 19:24:34 +09:00
syuilo
c5ef1a9cf1 2.26.2 2018-06-06 05:29:45 +09:00
syuilo
f8961af55d 2.26.1 2018-06-06 05:18:46 +09:00
syuilo
d95480e927 2.26.0 2018-06-05 23:22:37 +09:00
syuilo
d6d35cd35e 2.25.2 2018-06-04 19:59:07 +09:00
syuilo
53a17dc499 2.25.1 2018-06-03 04:51:58 +09:00
syuilo
70922b6515 2.25.0 2018-06-02 19:23:17 +09:00
syuilo
60be355b54 2.24.3 2018-05-30 23:08:26 +09:00
syuilo
756cac6c8d 2.24.2 2018-05-30 05:02:56 +09:00
syuilo
7de3762702 2.24.1 2018-05-30 00:16:03 +09:00
syuilo
7edb1c1203 2.24.0 2018-05-29 23:57:25 +09:00
syuilo
22fbe1e68e 2.23.2 2018-05-29 21:46:30 +09:00
syuilo
ef9bd31f64 2.23.1 2018-05-29 17:11:48 +09:00
syuilo
ea303e83e4 2.23.0 2018-05-29 15:43:24 +09:00
syuilo
f5dd36f457 2.22.3 2018-05-29 13:22:29 +09:00
syuilo
b9ea21bdce 2.22.2 2018-05-29 11:53:59 +09:00
syuilo
7ab50b241e 2.22.1 2018-05-29 02:37:31 +09:00
syuilo
147bacbef5 2.22.0 2018-05-29 02:26:13 +09:00
syuilo
fea11e3041 2.21.1 2018-05-28 22:00:29 +09:00
syuilo
243664c8c0 2.21.0 2018-05-28 21:45:14 +09:00
syuilo
a7a60fdaff 2.20.1 2018-05-28 15:30:47 +09:00
syuilo
c988d5fdd2 2.20.0 2018-05-28 15:14:45 +09:00
syuilo
1ea37b6957 2.19.0 2018-05-27 23:20:45 +09:00
syuilo
928af3fc39 2.18.2 2018-05-27 18:18:51 +09:00
syuilo
e6acf2c963 2.18.1 2018-05-27 13:58:35 +09:00
syuilo
52e59fc320 2.18.0 2018-05-27 00:29:31 +09:00
syuilo
71cb390cb7 Fix bug 2018-05-26 16:04:47 +09:00
syuilo
bca55ddad4 Update dependencies 🚀 2018-05-26 13:23:58 +09:00
syuilo
2fef0e6660 2.17.0 2018-05-25 21:21:37 +09:00
syuilo
dea25ab137 2.16.8 2018-05-24 09:48:30 +09:00
syuilo
d030849b45 2.16.7 2018-05-24 06:22:20 +09:00
syuilo
d9edb6b726 2.16.6 2018-05-24 06:21:04 +09:00
syuilo
3db6b47c2e 2.16.5 2018-05-24 06:09:24 +09:00
syuilo
1f8e216d3c 2.16.4 2018-05-23 16:00:08 +09:00
syuilo
90434a9f5f 2.16.3 2018-05-23 15:27:31 +09:00
syuilo
f066127d16 2.16.2 2018-05-22 18:20:49 +09:00
syuilo
d7831482a4 2.16.1 2018-05-22 11:47:23 +09:00
syuilo
1c9629dfb7 2.16.0 2018-05-21 21:52:10 +09:00
syuilo
8e7656ca30 2.15.0 2018-05-21 15:18:27 +09:00
syuilo
0a54629d56 2.14.0 2018-05-21 11:16:17 +09:00
syuilo
7234101f55 2.13.0 2018-05-21 03:21:47 +09:00
syuilo
6228b681b3 Refactor 2018-05-21 02:13:39 +09:00
syuilo
05d42b185d 2.12.0 2018-05-20 18:00:29 +09:00
syuilo
da04b073c3 2.11.0 2018-05-20 14:29:45 +09:00
syuilo
ac250b6ab8 Update dependencies 🚀 2018-05-20 14:10:30 +09:00
syuilo
0f6edf7340 [wip] better mobile setting 2018-05-19 20:31:13 +09:00
syuilo
85e5c6210a Update dependecy 🚀 2018-05-18 16:52:31 +09:00
syuilo
797252186e Fix bug 2018-05-18 15:42:42 +09:00
syuilo
ed13c9b58a 2.10.0 2018-05-18 15:32:11 +09:00
syuilo
aa4a0e8608 2.9.1 2018-05-18 12:08:26 +09:00
syuilo
92bae6238d 2.9.0 2018-05-18 09:52:10 +09:00
syuilo
794a39304b Update package.json 2018-05-18 07:19:13 +09:00
syuilo
56105a5530 2.8.0 2018-05-17 23:54:47 +09:00
syuilo
8ccb129fce 2.7.1 2018-05-17 19:38:50 +09:00
syuilo
439d3659e4 ✌️ 2018-05-17 19:38:20 +09:00
syuilo
7ab8b30b46 2.7.0 2018-05-17 18:33:56 +09:00
syuilo
a218e8efc2 ✌️ 2018-05-17 18:18:45 +09:00
syuilo
f3040e04f7 Update dependencies 🚀 2018-05-17 17:01:07 +09:00
syuilo
55394539b5 2.6.2 2018-05-14 14:16:56 +09:00
syuilo
4f686f45e2 2.6.1 2018-05-14 09:15:49 +09:00
syuilo
57cf29dde6 2.6.0 2018-05-13 03:17:09 +09:00
syuilo
f3255c6090 2.5.0 2018-05-07 18:22:44 +09:00
syuilo
79ce920643 2.5.0-beta1 2018-05-07 17:05:17 +09:00
syuilo
cab573c288 #1427 2018-05-07 02:54:14 +09:00
syuilo
54ec0b8a93 アイコンのレンダリングを改善 2018-05-06 18:04:37 +09:00
syuilo
20ddd4410d 2.3.1 2018-05-06 02:08:40 +09:00
syuilo
9c6e67ce9d 2.3.0 2018-05-06 01:47:25 +09:00
syuilo
558bab3b0e メタ情報をレンダリングするように 2018-05-06 01:34:48 +09:00
syuilo
4f5796d47f 2.2.0 2018-05-04 18:32:13 +09:00
syuilo
bca2ebaf8b 2.1.4 2018-05-04 18:02:17 +09:00
syuilo
0efa3d9f44 2.1.3 2018-05-04 18:00:02 +09:00
syuilo
31bbabf363 2.1.2 2018-05-04 17:41:12 +09:00
syuilo
f200223986 oops 2018-05-04 17:08:41 +09:00
syuilo
e8df2ffad8 oops 2018-05-04 16:56:23 +09:00
syuilo
ff1f79e2ef 2.0.0 2018-05-04 16:27:03 +09:00
syuilo
8584282d3a ✌️ 2018-05-04 13:24:08 +09:00
syuilo
f9f163cd3b 1.7.0 2018-05-04 00:20:31 +09:00
syuilo
fee03321b7 投稿やメッセージなどに添付されていないドライブのファイルをすべて削除するツールを実装 2018-05-04 00:08:42 +09:00
syuilo
0e2b1f9ce7 1.6.0 2018-05-03 20:51:50 +09:00
syuilo
6c1eae618e Update cafy to 8.0.0 🚀 2018-05-02 18:06:16 +09:00
syuilo
21c391632b 1.5.0 2018-04-29 22:10:10 +09:00
syuilo
1642b57dd4 1.4.0 2018-04-29 18:17:33 +09:00
syuilo
4a17bfbc94 1.3.0 2018-04-28 12:05:39 +09:00
syuilo
bbac96d4cb 1.2.0 2018-04-28 02:30:27 +09:00
syuilo
2db00cb087 1.1.0 2018-04-27 21:37:00 +09:00
syuilo
7c527564c1 Update dependencies 🚀 2018-04-27 19:12:15 +09:00
syuilo
804902be53 wip 2018-04-26 11:46:42 +09:00
syuilo
da67ea52d9 wip 2018-04-24 23:34:18 +09:00
syuilo
fbe36c2b57 cafy 5.xに移行 2018-04-24 18:13:06 +09:00
syuilo
e882bc48ae サーバーのバージョンとクライアントのバージョンを分けた 2018-04-22 21:32:09 +09:00
syuilo
1300984b12 v5089 2018-04-22 17:34:56 +09:00
syuilo
0dde477dc3 v5074 2018-04-21 19:06:59 +09:00
syuilo
497394320b v5064 2018-04-21 16:07:05 +09:00
syuilo
f49d7057c1 Better timeline rendering
Co-Authored-By: tamaina <tamaina@hotmail.co.jp>
2018-04-21 15:37:02 +09:00
syuilo
2c376ff0a7 v5051 2018-04-20 13:39:08 +09:00
syuilo
f4b5489029 v5042 2018-04-20 07:59:13 +09:00
syuilo
db23bb0348 v5030 2018-04-19 19:00:45 +09:00
syuilo
ed2aa9c9b1 make logger great again 2018-04-19 18:03:46 +09:00
syuilo
252d41fa05 v5023 2018-04-19 15:06:07 +09:00
syuilo
f784b2ba78 v5018 2018-04-19 12:46:47 +09:00
syuilo
1670891e7d Merge pull request #1514 from syuilo/greenkeeper/style-loader-0.21.0
Update style-loader to the latest version 🚀
2018-04-19 09:33:04 +09:00
greenkeeper[bot]
126aa1dd6d fix(package): update style-loader to version 0.21.0 2018-04-18 23:14:41 +00:00
greenkeeper[bot]
b889d8c5dc fix(package): update @types/mongodb to version 3.0.15
Closes #1513
2018-04-18 22:35:19 +00:00
syuilo
1f721a1d1d Update dependency 🚀 2018-04-18 19:25:15 +09:00
syuilo
5266f69573 v5001 2018-04-18 14:54:53 +09:00
syuilo
69dbd877e2 Update dependencies 🚀 2018-04-18 14:26:46 +09:00
greenkeeper[bot]
055594166a fix(package): update mongodb to version 3.0.7 2018-04-18 03:05:28 +00:00
syuilo
636e371882 v4983 2018-04-17 20:05:32 +09:00
syuilo
cb9a950bd0 v4970 2018-04-17 15:42:09 +09:00
syuilo
40cc55d793 v4967 2018-04-17 15:32:13 +09:00
syuilo
27e0934796 v4938 2018-04-16 16:00:10 +09:00
syuilo
514320ebdc v4933 2018-04-16 15:17:56 +09:00
syuilo
d54e9e69a8 ✌️ 2018-04-16 07:07:44 +09:00
syuilo
dd2c3a993a v4895 2018-04-15 18:48:17 +09:00
syuilo
11cb8a3ba8 Fix bug 2018-04-15 13:20:52 +09:00
syuilo
d0078123e4 oops 2018-04-15 12:13:10 +09:00
syuilo
e37f67c2de v4876 2018-04-15 06:38:20 +09:00
syuilo
562c89cdde v4840 2018-04-14 06:27:30 +09:00
syuilo
05b4459919 v4835 2018-04-14 05:14:22 +09:00
syuilo
a478211463 Fix bug 2018-04-14 03:23:06 +09:00
syuilo
c9789557c0 compress 2018-04-13 14:28:09 +09:00
syuilo
d5297a0864 Clean up 2018-04-13 11:50:36 +09:00
syuilo
f93ec6a567 wip 2018-04-13 06:17:14 +09:00
syuilo
4341cbd4f4 wip 2018-04-13 06:06:18 +09:00
syuilo
5aea677f65 wip 2018-04-13 00:51:55 +09:00
syuilo
e5f23c89cb Clean up 2018-04-12 06:02:34 +09:00
syuilo
c81ad4fc0f Merge pull request #1453 from syuilo/greenkeeper/@types/node-9.6.4
fix(package): update @types/node to version 9.6.4
2018-04-12 02:38:37 +09:00
syuilo
57edfa980f v4771 2018-04-11 11:48:46 +09:00
greenkeeper[bot]
62032278fb fix(package): update @types/node to version 9.6.4
Closes #1444
2018-04-10 20:53:29 +00:00
greenkeeper[bot]
0e2ce826d8 fix(package): update @types/mongodb to version 3.0.12 2018-04-09 23:40:00 +00:00
greenkeeper[bot]
0ad79194da fix(package): update mongodb to version 3.0.6 2018-04-09 19:23:46 +00:00
greenkeeper[bot]
9e1cb772d4 fix(package): update @types/mongodb to version 3.0.11 2018-04-09 17:59:18 +00:00
syuilo
3d0bfde659 v4751 2018-04-10 02:39:40 +09:00
syuilo
0c0c37108b v4743 2018-04-09 20:01:30 +09:00
syuilo
e9114bf50c v4741 2018-04-09 19:53:39 +09:00
syuilo
d39a8be887 v4737 2018-04-09 19:29:00 +09:00