-
Notifications
You must be signed in to change notification settings - Fork 36
/
t
8423 lines (5626 loc) · 219 KB
/
t
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit 2fb02f7aa0726c028291551cb1a8dde4267f615a
Author: root <root@iZ25qrn9204Z.(none)>
Date: Thu Jan 28 16:11:05 2016 +0800
调整完成
commit 5bced5ad2fa4be33468f9c05cecf43a6a8131918
Author: root <root@iZ25qrn9204Z.(none)>
Date: Thu Jan 28 00:56:33 2016 +0800
基本调整完成,可以发布
commit c4d41fc268baeab4eac15fbaddca2abfb3e278f3
Author: Hongfei Dong <[email protected]>
Date: Sat Dec 26 11:33:01 2015 +0800
ads
commit 3324a26b6f4a3b47356a0da25e17e69d86d0828c
Author: Hongfei Dong <[email protected]>
Date: Tue Dec 15 23:18:12 2015 +0800
ads
commit 2da1c45a271a54100727abebfbd5c2e955855691
Author: Hongfei Dong <[email protected]>
Date: Tue Dec 1 23:43:33 2015 +0800
ads
commit 138860e062d67d8fc814785433b98dbd10660ffe
Author: Hongfei Dong <[email protected]>
Date: Tue Dec 1 23:41:24 2015 +0800
ads
commit 81bb4bbecca3b2e40ad6879d84f89fbea09e67ae
Author: Hongfei Dong <[email protected]>
Date: Sun Nov 8 19:39:47 2015 +0800
add showcase
commit aac3e4f31f2aabf7c07d5f2c0037d2bd5f8a9bed
Author: Hongfei Dong <[email protected]>
Date: Sat Oct 17 15:13:16 2015 +0800
ucloud change
commit c5bbd03924b1b7e09d99eef66b4479f82b4d283a
Author: Hongfei Dong <[email protected]>
Date: Tue Sep 15 23:51:01 2015 +0800
增加友链
commit 04141d400ee979d8094cac116d276d78dfb41c94
Author: Hongfei Dong <[email protected]>
Date: Fri Sep 4 20:15:27 2015 +0800
增加新的showcase
commit cbc9c087f0d1223deab71ba342f3d4b617a2bc19
Merge: c078e51 a19d7a4
Author: Hongfei Dong <[email protected]>
Date: Sat Aug 15 10:47:02 2015 +0800
Merge pull request #6 from hxx/master
导航栏的Logo和文字垂直居中
commit c078e51a01f5791660df6b273b6ec5734c00b92a
Author: Hongfei Dong <[email protected]>
Date: Sat Aug 15 10:33:48 2015 +0800
ads.
commit a19d7a499e5db818ba6327309ede473bde1b16ac
Author: hxx <[email protected]>
Date: Wed Aug 12 20:17:06 2015 +0800
导航栏图片和文字居中
commit 4b4fc7ae099a3e79d6b59c2ff263f582835aef0f
Author: Hongfei Dong <[email protected]>
Date: Wed Jul 29 20:54:30 2015 +0800
ads
commit a257650760cb8cfd9295a47c92e197340a1f08a0
Author: Hongfei Dong <[email protected]>
Date: Mon Jul 27 21:24:09 2015 +0800
showcase
commit b53ca4c1d3bdd2087ddec746879e73b4ed2a7014
Author: Hongfei Dong <[email protected]>
Date: Mon Jul 27 20:52:51 2015 +0800
1
commit 4b88c8870b91ad3622694a80aac90568b1b8c861
Author: Hongfei Dong <[email protected]>
Date: Sun Jul 19 22:58:32 2015 +0800
增加showcase
commit c418b71f9c99ca415b8395535c1fb2a5ed9db403
Author: V <[email protected]>
Date: Thu Jul 2 23:16:20 2015 +0800
修改 showcase
commit 35624f6733c02f3e70f8608bedd1efdf75d77696
Author: V <[email protected]>
Date: Thu Jul 2 23:14:02 2015 +0800
增加 showcase
commit 4c633afcafe34524c5a11ade29026b93bbe4990a
Author: V <[email protected]>
Date: Thu Jul 2 20:23:28 2015 +0800
jpush
commit 2e684f999b261ada5fd232d61afdd110a54d4e2a
Author: V <[email protected]>
Date: Mon Jun 29 22:29:35 2015 +0800
jpush
commit 6c3060b7a75865862233552ea6b575cf7f61a154
Author: V <[email protected]>
Date: Tue Jun 16 22:59:02 2015 +0800
.
commit ad937ff321248ba63051fc76078d80a028f46708
Author: V <[email protected]>
Date: Tue Jun 16 22:43:57 2015 +0800
.
commit e702733aa6e5a492f81d52409f8946be558db2d7
Author: V <[email protected]>
Date: Tue Jun 16 22:27:33 2015 +0800
.
commit 9380bdca4a17dd2853b83a4abfc0952620540753
Author: V <[email protected]>
Date: Mon Jun 8 21:39:12 2015 +0800
重新开放社区 api 页面
commit 092cbc7188e851ab2b2d6097426555ea4752f9f0
Author: V <[email protected]>
Date: Sun May 31 20:58:06 2015 +0800
修改关于和参考资料
commit a39bda64ce2b2a235edd79b54a88bd69b3c7fe6c
Author: V <[email protected]>
Date: Fri May 22 18:31:53 2015 +0800
修改客户端二维码位置
commit e95c6eb2260ddcc79474157235519a9260009b91
Author: V <[email protected]>
Date: Fri May 22 18:29:52 2015 +0800
修改客户端相关信息
commit d47d6f6e85d0918921a1998f46cff54c84b4d8b9
Author: V <[email protected]>
Date: Fri May 22 16:11:02 2015 +0800
修改 showcase
commit 123770578263c0c677cb8ddf305f88319cb8b884
Author: V <[email protected]>
Date: Fri May 22 14:28:07 2015 +0800
fixed style
commit 2d4e1bac2c6e18ca5cef246219c14d5d51265f0a
Author: V <[email protected]>
Date: Fri May 22 14:26:36 2015 +0800
fixed style
commit 2b0b8cb814e37c1bff893f6dfac2d562abbe151f
Author: V <[email protected]>
Date: Fri May 22 14:17:40 2015 +0800
fixed style
commit 0c80ddec392c336e88d0cd514449bb25db132524
Author: V <[email protected]>
Date: Fri May 22 13:29:49 2015 +0800
fixed bug
commit 2e71d82a7c25ebfcc4ae2d96b31554e470d5c4bc
Author: V <[email protected]>
Date: Fri May 22 13:19:57 2015 +0800
修改样式
commit a2cf095460a32d91da00707d0df3e6fe71aa9cf6
Author: V <[email protected]>
Date: Fri May 22 13:17:08 2015 +0800
增加 shoucase 例子
commit 1787416990f23acd450c2dcdf12b64cbbf07bcd7
Author: V <[email protected]>
Date: Thu May 21 14:07:25 2015 +0800
jpush bug fixed
commit 2cd8c12c7a356fd74e2c9432049a169f50faf44a
Author: V <[email protected]>
Date: Thu May 21 14:02:39 2015 +0800
jpush fixed
commit 3a1e787d7eda6357e08aee85cfad5e8df027d997
Author: V <[email protected]>
Date: Thu May 21 13:59:46 2015 +0800
修改推送选项,是否推送生产环境由 config.jpush.isDebug确定
commit 5088a802b5b40aa4b48d96d16aabe47a24d4959a
Author: V <[email protected]>
Date: Thu May 21 12:13:42 2015 +0800
修改菜单名称
commit b33392ed9509db97cdbf4154b753ffac8faca0c0
Author: V <[email protected]>
Date: Fri May 15 22:51:53 2015 +0800
添加赞助商广告
commit 71352c7dd46121c670033c7d4290b286d94578c5
Author: V <[email protected]>
Date: Fri May 15 21:42:36 2015 +0800
添加 友情社区 testerhome
commit c7ef16c0a0fd72346e7311b01b0c5c1155247cdd
Author: V <[email protected]>
Date: Thu May 14 05:37:18 2015 +0800
添加SegmentFault友链
commit f598bda4e4b66f1a472778a546bcca03c530cbd0
Author: V <[email protected]>
Date: Wed May 13 18:53:42 2015 +0800
修改公众号图片
commit 75b3acb7be03c9d74baf03b83a2d39d932544ff5
Author: V <[email protected]>
Date: Wed May 13 18:43:25 2015 +0800
添加微信公众号
commit dcf6031e3c0d644e02d4c97c899d8632a895bef2
Author: V <[email protected]>
Date: Wed May 13 13:48:55 2015 +0800
添加前端江湖社区友链
commit deea2b0352604998092c34f0b22f20a178d691c6
Author: V <[email protected]>
Date: Mon May 11 15:44:56 2015 +0800
修改 golangtc 社区 logo
commit 9383259bdbfab2e78b973c53eed3132965315373
Author: V <[email protected]>
Date: Mon May 11 15:13:24 2015 +0800
修改 Golang社区logo
commit edf0bfd9c6247df8772ff4afd31c365698cc58e2
Author: V <[email protected]>
Date: Fri Apr 24 21:30:44 2015 +0800
增加友链和修改“关于”
commit a72c8295666f85765fd33cc6486649f30ad88346
Author: V <[email protected]>
Date: Mon Apr 20 23:37:34 2015 +0800
添加几个友情社区
commit 4d25ff0efc08a0f1fa5f24f9f0075eb7eb03bf34
Author: Hongfei Dong <[email protected]>
Date: Thu Apr 16 13:24:47 2015 +0800
增加phphub友情社区
commit c4c19e44756118ad48f5cc762bb4d58ec86a5423
Author: V <[email protected]>
Date: Wed Apr 15 22:50:45 2015 +0800
增加golangtc友情社区
commit 34eebd83c5ff736202492fbdae78c4be6760e7bb
Author: V <[email protected]>
Date: Wed Apr 15 22:16:52 2015 +0800
增加 cnodejs 和 ruby-china两大友情社区
commit 7e8b5a6076eb552b1adf9a9b53f602d2f1ea7729
Author: V <[email protected]>
Date: Sun Apr 12 23:59:17 2015 +0800
Revert 9aed309..d9d03c1
This rolls back to commit 9aed3095a838504ccde269fad4165724428f4507.
commit d9d03c141c013d5b69c275afac04c6ee7bb848d3
Author: V <[email protected]>
Date: Sun Apr 12 23:01:13 2015 +0800
合并 cnode 主版本
commit 9aed3095a838504ccde269fad4165724428f4507
Author: V <[email protected]>
Date: Sat Apr 11 00:18:00 2015 +0800
添加 ucloud 服务器赞助标示
commit 5dc7884cb4cfb42eb2082d7ca22f6349d43de479
Author: V <[email protected]>
Date: Fri Apr 10 23:56:48 2015 +0800
Revert b485dda..b58bcb7
This rolls back to commit b485dda5820886404da38b03e5de91613375642e.
commit b58bcb718a7612f3048a62c38b27a17f9a1f91e6
Author: V <[email protected]>
Date: Fri Apr 10 23:52:50 2015 +0800
Revert 9eb3da8..a12c176
This rolls back to commit 9eb3da877d62f3838bd8f94ab53e642bbb9efadf.
commit a12c17616a25f7e83f269bb25372d568a82a3324
Author: V <[email protected]>
Date: Fri Apr 10 23:10:31 2015 +0800
update from oirgin 4
commit 827a6d88e737e670adb8beb5d644233de3d6f57b
Author: V <[email protected]>
Date: Tue Apr 7 23:01:36 2015 +0800
update from oirgin
commit b485dda5820886404da38b03e5de91613375642e
Author: V <[email protected]>
Date: Fri Apr 3 14:22:08 2015 +0800
Merge branch 'master' of https://github.com/cnodejs/nodeclub into cnodejs-master
Conflicts:
views/sidebar.html
views/static/about.html
views/static/getstart.html
commit 9eb3da877d62f3838bd8f94ab53e642bbb9efadf
Author: V <[email protected]>
Date: Wed Apr 1 23:06:20 2015 +0800
添加 ngCordova 官方文档
commit 773a31acef493d253e0feb8648ae6771acf6a84f
Author: V <[email protected]>
Date: Sun Mar 29 23:13:51 2015 +0800
showcase 增加GHOST博客
commit 8d68a5ac91f14ade9e409fdc2780895a23d63923
Author: V <[email protected]>
Date: Sun Mar 29 23:04:05 2015 +0800
修改友情社区链接
commit 7c6229b435e4ab2758e15570e5e11cff06cde95b
Author: V <[email protected]>
Date: Sun Mar 29 19:30:05 2015 +0800
增加关于的 QQ 群和 时间轴 icoud 赞助说明
commit 412951a72f18318b928db7763938e38ed2e794aa
Author: V <[email protected]>
Date: Sun Mar 29 19:06:57 2015 +0800
增加ngnice友情社区
commit 925fb35224fd63c57ce48672d9bdbb02f14cd458
Author: V <[email protected]>
Date: Sun Mar 22 19:22:06 2015 +0800
增加 showcase 应用,增加“源码”项
commit 2ea9f547e0bf740b44efb342bbf692e1084d30e1
Author: V <[email protected]>
Date: Sun Mar 22 12:10:30 2015 +0800
增加 showcase 模块
commit e5e66a24aa789d107fac09ba650470e27eb7161f
Author: V <[email protected]>
Date: Tue Mar 10 22:36:17 2015 +0800
sougou
commit fe5cf289e0c17ca27dcec6e826bf29656091e248
Author: V <[email protected]>
Date: Sat Mar 7 16:53:01 2015 +0800
替换一些关键字
commit eacceb3ce0b19753e8ae1de49b5e3ae7b50a2887
Author: V <[email protected]>
Date: Fri Mar 6 22:13:23 2015 +0800
增加入门参考资料
commit e5be54ba46b93ef51391ea6a9757991eaf36a105
Author: V <[email protected]>
Date: Wed Mar 4 20:37:11 2015 +0800
去掉了 顶部QQ 群
commit c16439a702569bf630c1ece56fb8d6fd4338832f
Author: V <[email protected]>
Date: Wed Mar 4 10:35:31 2015 +0800
1.修改编辑器字数过长产生bug;2.继续过滤原cnode 关键字
commit fe792da3cef91c682782dbcfce693bfe99d68875
Author: V <[email protected]>
Date: Wed Mar 4 00:46:38 2015 +0800
修改社区一些遗漏名称
commit 52e4cf440fed5a3fbaa471e027410c517eb3dd4d
Author: V <[email protected]>
Date: Tue Mar 3 22:47:15 2015 +0800
修改robots
commit 3811e527d6c726f71a9b6c373031c604aafb4299
Author: V <[email protected]>
Date: Tue Mar 3 22:28:45 2015 +0800
修改rebots
commit 1bb3db7935d9ae629a7051dd3ff9bd780456022d
Author: V <[email protected]>
Date: Mon Mar 2 21:33:27 2015 +0800
好尴尬,七牛网址忘了改了。。。
commit dee0aba2bbd0d3f03c5ce7cc211004937f5947c1
Author: V <[email protected]>
Date: Mon Mar 2 21:32:03 2015 +0800
得到七牛云存储赞助
commit 6192c9fca3832ea7b6c1e6b49584f344ca18fff2
Author: V <[email protected]>
Date: Mon Mar 2 21:24:52 2015 +0800
暂时隐藏掉 api 界面
commit 7a789c799769a81f2a614297a5fb2366c835d3df
Author: V <[email protected]>
Date: Mon Mar 2 20:49:06 2015 +0800
消息已查看图片
commit 0f6f815fa401202a782e6961268189640c9d77b6
Author: V <[email protected]>
Date: Mon Mar 2 12:59:24 2015 +0800
增加七牛云存储赞助底部 banner
commit fa54025f51abce110b74bea7c7c962c639878dec
Author: V <[email protected]>
Date: Fri Feb 27 12:04:15 2015 +0800
1.启用正式域名http://ionichina.com
2.增加 Ionichina 中文社区成长时间线 说明:直接拿得 Golang社区 的时间线,求一前端大神给做一个自己的
3.新建了一个QQ交流群: 127395584 请将得到解决的问题在社区中分享给更多地人
commit b816bb8e8cb543c0903e09ea8b7518a43f8360b5
Author: V <[email protected]>
Date: Thu Feb 19 11:24:21 2015 +0800
调整 logo 样式
commit 1433706016b555fb807ad2b19bb5d4e05b83c3eb
Author: V <[email protected]>
Date: Wed Feb 18 00:37:34 2015 +0800
替换到一些网站地址
commit a82f093c20bb8c42e92523d3fe5e4f533cb3fb2e
Author: V <[email protected]>
Date: Mon Feb 16 16:17:26 2015 +0800
暂时注释掉苹果商店 meta
commit 0aa9c3edb12f41a0e648114fa047235b157071a5
Author: V <[email protected]>
Date: Mon Feb 16 16:11:46 2015 +0800
修改logo 样式
commit 4290e82f52af261d30403888323db680d3e0f3a0
Author: V <[email protected]>
Date: Mon Feb 16 11:59:19 2015 +0800
修改logo 样式
commit eb73d6dc17efc1360da41af66ac52c81f1cd72ca
Author: V <[email protected]>
Date: Mon Feb 16 11:49:46 2015 +0800
修改网站介绍
commit bdfe8203c0f4ff29091ead35982c1d1cbe8154b0
Author: V <[email protected]>
Date: Mon Feb 16 11:44:10 2015 +0800
修改网站介绍
commit c9cd88af9fd23183dd599e5383958765bb63a6f0
Author: V <[email protected]>
Date: Sun Feb 15 17:46:12 2015 +0800
修改网站权限
commit 5fd3633bbe6fd401508b5463dcac31ea4292bc93
Author: V <[email protected]>
Date: Sun Feb 15 17:40:21 2015 +0800
修改网站权限
commit edee14d7b4ffe400bdcbd5add7fbe398adcb8653
Author: V <[email protected]>
Date: Sun Feb 15 16:06:12 2015 +0800
修改网站样式信息
commit 5caf41ff3ef1510d73a5a39e354bfe3ad152f378
Author: V <[email protected]>
Date: Sun Feb 15 16:03:14 2015 +0800
修改网站样式信息
commit 60808ae850131b22a7273054bf23135580e4030f
Author: V <[email protected]>
Date: Sat Feb 14 16:41:09 2015 +0800
修改网站信息
commit 7f0d1f20d4afc162074fcc56a6bbf5182c5c8c76
Author: V <[email protected]>
Date: Sat Feb 14 16:33:38 2015 +0800
测试提交
commit a9eba1a2b0ca93d2ea30a4a05b721c3f186b7afd
Author: alsotang <[email protected]>
Date: Sat Feb 14 01:47:54 2015 +0800
hotfix qrcode
commit a52a0fe2e0503e492505fdcbe6e874acaf84fdb7
Author: alsotang <[email protected]>
Date: Sat Feb 14 01:38:45 2015 +0800
更清晰的二维码
commit 3fa3f0aace694bf9bb18a0c39335b82359f44601
Author: alsotang <[email protected]>
Date: Mon Feb 9 00:32:46 2015 +0800
样式优化
commit 63a88111c24eb6b9ee726629a8fca2f64b01394f
Author: Lance Li <[email protected]>
Date: Sun Feb 8 23:15:25 2015 +0800
在页面右侧增加客户端下载二维码
commit cd8b8bcc54d5466b4bf0ef91d9210d509c420a62
Author: alsotang <[email protected]>
Date: Sun Feb 8 19:21:48 2015 +0800
test for iojs
commit 4a0683c48869c70fe8a608826f9b20abefe51554
Author: alsotang <[email protected]>
Date: Sun Feb 8 20:22:45 2015 +0800
pm2 maxmemory 300M
commit 68fd34c5709348f958d77be06aeb67a6045401c5
Author: alsotang <[email protected]>
Date: Sun Feb 8 19:37:14 2015 +0800
update bcrypt and xmlbuilder
commit ba70f448089d45e1b6f060aeac04d60e5020c6a0
Author: alsotang <[email protected]>
Date: Sun Feb 8 19:28:09 2015 +0800
package.json, private: true
Conflicts:
package.json
commit 6d206c6c791b2e08a58524c1ba7091b59974c365
Author: alsotang <[email protected]>
Date: Sat Feb 7 17:42:56 2015 +0800
test travis on 0.12
commit 10967b31fb942d69f20899fcbcdb60d477b3c268
Author: alsotang <[email protected]>
Date: Sat Feb 7 17:24:07 2015 +0800
update `moment` to 2.9.0
commit c2144621f6c6d71fc803aa4528da45a971c3ce21
Author: alsotang <[email protected]>
Date: Sat Feb 7 17:21:03 2015 +0800
degrade mongoose to 3.8.23
commit dde34ac584fbab8349e52c5e9b88b9015e60906a
Author: alsotang <[email protected]>
Date: Sat Feb 7 17:16:44 2015 +0800
update newrelic to 1.16.1
commit 5147db895efba494257e23a56372c78b88827e35
Author: alsotang <[email protected]>
Date: Sat Feb 7 17:13:37 2015 +0800
update mongoose to 3.9.7
commit fa0d40f2a1330dbf3bc1242ba60b650fa91ab54d
Author: alsotang <[email protected]>
Date: Sat Feb 7 17:05:00 2015 +0800
升级最大可用内存
commit 22f3c7ca81a9f13cc50015977f924aa73a164217
Author: alsotang <[email protected]>
Date: Sat Feb 7 16:52:39 2015 +0800
use node 0.12.x
commit 118e7593f63961b0163f9e35d84003d956573a76
Author: alsotang <[email protected]>
Date: Sat Feb 7 01:25:10 2015 +0800
avatar
commit 053ac648b56e35c69af7042675a96800ec5c43a9
Author: alsotang <[email protected]>
Date: Thu Feb 5 13:26:34 2015 +0800
样式微调
commit cf4163a3d87c1e04e3b513fe5de5b639387ccd84
Author: feitian124 <[email protected]>
Date: Thu Feb 5 01:06:14 2015 +0800
make reply action icons larger so easy to click
commit 8026c8d1d87f716b028bcc11b1076a78abbcad88
Author: feitian124 <[email protected]>
Date: Thu Feb 5 01:04:13 2015 +0800
fix #479, show user avatar and name together
commit bd7bf5859fcdc5c27af14b3f8d9aca4c21066b1e
Author: alsotang <[email protected]>
Date: Wed Feb 4 22:51:30 2015 +0800
重复替换 at 用户名的问题,fix #481
commit abde0a43502bac5c91597ea23fcb6fa1a22b8ebc
Author: alsotang <[email protected]>
Date: Wed Feb 4 12:38:58 2015 +0800
github 登陆不再修改 loginname
commit 8890b8112a0bff29d1f7d2c84658e73acd14e46c
Author: alsotang <[email protected]>
Date: Tue Jan 27 19:58:34 2015 +0800
文案
commit 716a6a5b5e90ff7f16c09c35716cf7553cac62e0
Merge: bc292bd 96e5215
Author: alsotang <[email protected]>
Date: Tue Jan 27 19:04:11 2015 +0800
Merge pull request #475 from lanceli/master
区分推送环境
commit 96e52152b9e2ca554c66742746e4adfcea117d83
Author: Lance Li <[email protected]>
Date: Tue Jan 27 17:34:21 2015 +0800
区分推送环境
commit bc292bdadf72ec252f4d87ecce896138d7520f0e
Author: alsotang <[email protected]>
Date: Tue Jan 27 16:37:33 2015 +0800
callback 有默认值
commit 8d3de7c4ceb58c614dce7132c9774328e789ab8e
Author: alsotang <[email protected]>
Date: Tue Jan 27 16:24:18 2015 +0800
little fix
commit 56a2398566bb34a741e0fca07f7bd21c04bed7f9
Merge: 415d028 eb06862
Author: alsotang <[email protected]>
Date: Tue Jan 27 16:22:58 2015 +0800
Merge remote-tracking branch 'lanceli/master'
commit eb0686224c2196cc7706d2fa4bb0fb2147609a01
Author: Lance Li <[email protected]>
Date: Tue Jan 27 11:03:16 2015 +0800
判断是否配置了极光推送
commit cef8eb92bf6493cc6249c4fd65d82b3580a8d936
Author: Lance Li <[email protected]>
Date: Sun Jan 25 22:57:44 2015 +0800
增加极光推送
commit 415d02858c1054401f45946f2545a2841888a86e
Author: alsotang <[email protected]>
Date: Thu Jan 22 22:52:30 2015 +0800
api 页面文案
commit f1d1be20f2c02882e37b0c9e969b0984cde4b991
Author: alsotang <[email protected]>
Date: Wed Jan 21 11:12:46 2015 +0800
fix tests
commit b8da6b8e98ccb683a82d3920f4953aceadc1a04b
Author: alsotang <[email protected]>
Date: Wed Jan 21 01:37:35 2015 +0800
允许用户通过 github 更改 email
commit 0c82a8e0681f6fadd566f2929ce997138c2da7d1
Author: alsotang <[email protected]>
Date: Wed Jan 21 01:09:00 2015 +0800
always use referer
commit f7fe243056049587196795e28198ad50492a7d43
Author: alsotang <[email protected]>
Date: Wed Jan 21 00:54:46 2015 +0800
hide cnzz ad
commit 5194f628f1ef0496d4e33a8374a7620bf81ec145
Author: alsotang <[email protected]>
Date: Wed Jan 21 00:46:05 2015 +0800
use `//` protocol
commit 059533316748f79db3f4604946bffdd7034d7755
Author: alsotang <[email protected]>
Date: Wed Jan 21 00:28:15 2015 +0800
add cnzz analytics
commit 03c12a90c2aeff3276cfeee0a8aa70e268ca14bd
Author: alsotang <[email protected]>
Date: Mon Jan 19 16:02:18 2015 +0800
文案
commit a4ac304fbc727a8e20b01a0e9005966c04a45f43
Author: alsotang <[email protected]>
Date: Fri Jan 16 02:04:06 2015 +0800
延迟检测上传文件的时间
commit 3544fba11ed3799986c70ca8b142042d9d2d25c0
Author: alsotang <[email protected]>
Date: Thu Jan 15 22:28:21 2015 +0800
delete unused imgs
commit 13aa74c0e9a600cdaa2f3aa74d6efca337479f61
Author: alsotang <[email protected]>
Date: Thu Jan 15 22:17:07 2015 +0800
staticFile
commit f8abad6e7379079353f057b56057069323c43474
Author: alsotang <[email protected]>
Date: Thu Jan 15 22:04:14 2015 +0800
remove ads from master
commit a207a0cacbdcde003abc51f4db121c9fbfba1546
Merge: b7fc9de c552604
Author: alsotang <[email protected]>
Date: Mon Jan 12 11:48:14 2015 +0800
Merge pull request #471 from lanceli/master
在关于页面增加了移动客户端的相关信息
commit b7fc9de362ce9269ebe4c009a348aff2b245f78d
Author: alsotang <[email protected]>
Date: Sun Jan 11 14:48:07 2015 +0800
样式微调
commit 3587bcabb1e7137153cca39886d16f18f4ae6b22
Author: alsotang <[email protected]>
Date: Sun Jan 11 14:23:39 2015 +0800
用 markdown-it 代替 remarkable. fix #440 #468
1. 开启了 html 的支持
2. 使用老雷的 js-xss 来防 xss
commit c5526043afd3ebf98e4573fa43077d745434661e
Author: Lance Li <[email protected]>
Date: Wed Jan 7 07:18:38 2015 +0800
在关于页面增加了移动客户端的相关信息
commit b06e5700cad01572ea4d137c2ec44c0af157c7a9
Author: alsotang <[email protected]>
Date: Sun Jan 4 21:33:40 2015 +0800
histarter
commit 92dfae15604de9f3d0c9e28d337bb4656c16bafc
Author: alsotang <[email protected]>
Date: Sat Jan 3 12:56:56 2015 +0800
去掉 github 用户信息展示
commit 08e7934a45e86583eaadf0fd90334aa6f8646dd2
Author: alsotang <[email protected]>
Date: Sat Jan 3 12:51:10 2015 +0800
去掉 dnspod 的统计
commit 41eb18efb10fcea5f7bb5c053bef12f7cf55f703
Author: alsotang <[email protected]>
Date: Wed Dec 31 22:59:19 2014 +0800
hotfix
commit f02f72d30a0fa83e04e31dd05a2b53cc1c14acab
Author: alsotang <[email protected]>
Date: Wed Dec 31 22:49:56 2014 +0800
little fix
commit 924e606cb1b0d385afa9c3d2ac0a775c3c5ab347
Author: alsotang <[email protected]>
Date: Wed Dec 31 10:52:37 2014 +0800
little fix
commit cdb44a66be2b257617f40dc8f39787b160e2f11d
Author: alsotang <[email protected]>
Date: Mon Dec 22 17:56:01 2014 +0800
little fix
commit 74a78e468cc6fb5bc589f5773ef80f36b24e2519
Author: alsotang <[email protected]>
Date: Fri Dec 19 15:14:11 2014 +0800
teambition retina
commit 26accbb6d097d7c2554fbc93371ef45f42d10b25
Author: alsotang <[email protected]>
Date: Fri Dec 19 14:37:05 2014 +0800
teambition 换链接
commit 734bbb078a36f6dc5dc3256f353dd2ab59758d34
Author: alsotang <[email protected]>
Date: Fri Dec 19 14:35:59 2014 +0800
teambition
commit b692c7613e2a17b5abafb29f1f58fcc0c8f2ca1a
Author: alsotang <[email protected]>
Date: Wed Dec 17 10:57:00 2014 +0800
coding.net
commit 64dc50a7b791bf29241fb987b7e7027a319c2116
Author: alsotang <[email protected]>
Date: Mon Dec 15 14:12:35 2014 +0800
qiniu 8
commit 36136430baf25c2db7a8aeb00adab626b826c72a
Author: alsotang <[email protected]>
Date: Thu Dec 11 11:23:11 2014 +0800
fix test
commit c9aa5cef29187a103a2e864e60d06dd1e01ca622
Author: alsotang <[email protected]>
Date: Thu Dec 11 11:08:53 2014 +0800
fix #465
commit 2cd21b4e5777e1d73469d09998f5adb168bd6ec3
Author: alsotang <[email protected]>
Date: Tue Dec 9 15:14:13 2014 +0800
little fix
commit 5a30fd6bb375d092f98ca42b93f6595f160931ef
Author: alsotang <[email protected]>
Date: Tue Dec 9 11:14:17 2014 +0800
little fix
commit 9ee738434d7e196d873c5b102524991b7acf5a23
Author: alsotang <[email protected]>
Date: Tue Dec 9 00:10:46 2014 +0800
防止 mongodb 注入
commit 06e700b282fdb04d27229c84fd8893c83dfa9559
Author: alsotang <[email protected]>
Date: Mon Dec 8 14:53:51 2014 +0800
fix #464 。post /accesstoken 返回 id
commit 8fac98242c1a60f3db76c976a9debaf8d6e05dea
Author: alsotang <[email protected]>
Date: Sat Dec 6 13:34:39 2014 +0800
little fix
commit e195be5cfde27502b12894836953738ee62244b0
Author: alsotang <[email protected]>
Date: Wed Dec 3 13:15:36 2014 +0800
qiniu link event 7
commit 84cb1698efce0f7d6290037abed08cca8ce6b268
Merge: 71abc56 7f2f74e
Author: alsotang <[email protected]>
Date: Mon Dec 1 11:01:52 2014 +0800
Merge remote-tracking branch 'origin/master'
commit 71abc5690350e2e27d7d08833d2741462de84bd9
Author: alsotang <[email protected]>
Date: Mon Dec 1 11:01:17 2014 +0800
jiankongbao
commit 7f2f74e4f5b1010b5e592073137565baa55a4da7
Merge: b355e97 dade9e7
Author: alsotang <[email protected]>
Date: Wed Nov 26 18:21:03 2014 +0800