forked from neologd/mecab-ipadic-neologd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1191 lines (858 loc) · 42.7 KB
/
ChangeLog
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
# Release 20160815-01
### New seed data
* seed/mecab-user-dict-seed.20160815.csv.xz
execute: Periodic data update on 2016-08-15(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/a2c5b1c58b606d479efe7ef595c147b37e876524
# Release 20160812-01
### New seed data
* seed/mecab-user-dict-seed.20160812.csv.xz
execute: Periodic data update on 2016-08-11(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/2b681f287d08c9df54e95942dd0f08659208f7cc
# Release 20160808-01
### New seed data
* seed/mecab-user-dict-seed.20160808.csv.xz
execute: Periodic data update on 2016-08-08(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/a5b5651f8266c3bdcc2049788700d6167a766a9d
# Release 20160804-01
### New seed data
* seed/mecab-user-dict-seed.20160804.csv.xz
execute: Periodic data update on 2016-08-04(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/509095e84d4dfec96601d5f165e8c30d05dd6373
# Release 20160802-01
### New seed data
* seed/mecab-user-dict-seed.20160801.csv.xz
execute: Periodic data update on 2016-08-01(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/cceff94e3077a8ab2c8433269f34e56705a51927
# Release 20160728-01
### New seed data
* seed/mecab-user-dict-seed.20160728.csv.xz
execute: Periodic data update on 2016-07-28(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/ef49e894ea1e7cfd8720f6038cfc9819eebbb2ba
# Release 20160726-01
### New seed data
* seed/mecab-user-dict-seed.20160725.csv.xz
execute: Periodic data update on 2016-07-25(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/3d29261ad784d6a02491fb47a12459582a68183d
# Release 20160721-01
### New seed data
* seed/mecab-user-dict-seed.20160721.csv.xz
execute: Periodic data update on 2016-07-21(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/051b7c668c98fcab79c7e9c3e795edc742939392
# Release 20160718-01
### New seed data
* seed/mecab-user-dict-seed.20160718.csv.xz
execute: Periodic data update on 2016-07-18(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/2cf49d8e68f474f5b68599bb4d6c4e0a02ad0195
# Release 20160714-01
### New seed data
* seed/mecab-user-dict-seed.20160714.csv.xz
execute: Periodic data update on 2016-07-14(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/3b41c1d3da0e5e3b90c0b7eb56246c4790cdb98e
# Release 20160711-01
### New seed data
* seed/mecab-user-dict-seed.20160711.csv.xz
execute: Periodic data update on 2016-07-11(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/61c37a126b79cddf9767f8968e427ae79eee6146
# Release 20160707-01
### New seed data
* seed/mecab-user-dict-seed.20160707.csv.xz
execute: Periodic data update on 2016-07-07(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/03b3ff7822e663e6ceb5ccd19ce54b3ca2210b1d
# Release 20160704-01
### New seed data
* seed/mecab-user-dict-seed.20160704.csv.xz
execute: Periodic data update on 2016-07-04(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/364e0c4b6e2f460b07c5f087204b47958d494981
# Release 20160630-01
### New seed data
* seed/mecab-user-dict-seed.20160630.csv.xz
execute: Periodic data update on 2016-06-30(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/a7a64dd2b0ca495bd0e4e2afe460216c9e6f35d3
# Release 20160627-01
### New seed data
* seed/mecab-user-dict-seed.20160627.csv.xz
execute: Periodic data update on 2016-06-27(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/be172e3887814ed8f7f4412c79baa067781938e5
# Release 20160623-01
### New seed data
* seed/mecab-user-dict-seed.20160624.csv.xz
execute: Periodic data update on 2016-06-23(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/37a4ad5be885fb8b9e822ff87be53c6a5fce85c3
# Release 20160620-01
### New seed data
* seed/mecab-user-dict-seed.20160620.csv.xz
execute: Periodic data update on 2016-06-20(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/9fceec0638d6a26e76e2cfac2b0208d877145c22
# Release 20160616-01
### New seed data
* seed/mecab-user-dict-seed.20160616.csv.xz
execute: Periodic data update on 2016-06-16(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/7fad237a5f58724b078a0deb6eef2b13a1b0147d
# Release 20160613-01
### New seed data
* seed/mecab-user-dict-seed.20160613.csv.xz
execute: Periodic data update on 2016-06-13(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/9fceec0638d6a26e76e2cfac2b0208d877145c22
# Release 20160609-01
### New seed data
* seed/mecab-user-dict-seed.20160609.csv.xz
execute: Periodic data update on 2016-06-09(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/deb9bc7eb15714c3c9e4dceea3a5aa1381cae585
# Release 20160606-01
### New seed data
* seed/mecab-user-dict-seed.20160606.csv.xz
execute: Periodic data update on 2016-06-06(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/96cecdaebc0479e750d5f30b9b9caae3c48c10e0
# Release 20160602-01
### New seed data
* seed/mecab-user-dict-seed.20160602.csv.xz
execute: Periodic data update on 2016-06-02(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/0ad2c7313e62f5e745eb4e32015d6394a4f611be
# Release 20160530-01
### New seed data
* seed/mecab-user-dict-seed.20160530.csv.xz
execute: Periodic data update on 2016-05-30(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/3f3b2ef29fd795310fc397997f2d908d1c4af501
# Release 20160526-01
### New seed data
* seed/mecab-user-dict-seed.20160526.csv.xz
execute: Periodic data update on 2016-05-26(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/b540f0b35fab9d723ae66f2c965bc5882c821b58
# Release 20160523-01
### New seed data
* seed/mecab-user-dict-seed.20160524.csv.xz
execute: Periodic data update on 2016-05-23(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/2d46a2fc9bc8efc90a93c74f024dd408a88eb582
# Release 20160519-02
### New feature
* misc/patch/*.csv.20160519.diff
execute: Remove some noun from a list of proper noun
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/dd9373de5c82d28cb7d94a702cd5468b117bf415
# Release 20160519-01
### New seed data
* seed/mecab-user-dict-seed.20160519.csv.xz
execute: Periodic data update on 2016-05-19(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/0a0f2053f6b97d5d81a695e6902de1c9b5310919
# Release 20160516-01
### New seed data
* seed/mecab-user-dict-seed.20160516.csv.xz
execute: Periodic data update on 2016-05-16(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/e389458801067270068844884c46e119751e6505
# Release 20160512-01
### New seed data
* seed/mecab-user-dict-seed.20160512.csv.xz
execute: Periodic data update on 2016-05-12(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/df5f5568a89719082a82c97f28cbbfcd3e44d1c6
# Release 20160509-01
### New seed data
* seed/mecab-user-dict-seed.20160509.csv.xz
execute: Periodic data update on 2016-05-09(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/5722541f09f49573c735e1f8f67ea3d1852b2ea7
# Release 20160505-01
### New seed data
* seed/mecab-user-dict-seed.20160505.csv.xz
execute: Periodic data update on 2016-05-05(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/630caf31a7e2acd7b4372870442c917559431921
# Release 20160502-01
### New seed data
* seed/mecab-user-dict-seed.20160502.csv.xz
execute: Periodic data update on 2016-05-02(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/61d76fe73f5ed819e62c8a73e43fff156b984d07
# Release 20160428-01
### New seed data
* seed/mecab-user-dict-seed.20160428.csv.xz
execute: Periodic data update on 2016-04-28(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/59b29b11ea61a4d02fac4b2e5443391d5e0d05ef
# Release 20160425-01
### New seed data
* seed/mecab-user-dict-seed.20160425.csv.xz
execute: Periodic data update on 2016-04-25(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/25d1a4f1f12ff5f9d4b74d9cc5e9e0430bb35444
# Release 20160421-01
### New seed data
* seed/mecab-user-dict-seed.20160421.csv.xz
execute: Periodic data update on 2016-04-21(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/1d6a72549e6d702229577bb2f6d8ced63536e59f
### New feature
* misc/patch/*.csv.20160421.diff
execute: Add patch files to replace Zenkaku alphabet & number characters with Hankaku characters
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/10ef172448c8bb2cdadbd8a2a2289beb47086dad
# Release 20160418-01
### New feature
* bin/install-mecab-ipadic-neologd
execute: Add --extend-column option
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/12eda615badbd0e21bc0fd2dbff42a7182abbbc6
### New seed data
* seed/mecab-user-dict-seed.20160418.csv.xz
execute: Periodic data update on 2016-04-18(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/1d6a72549e6d702229577bb2f6d8ced63536e59f
# Release 20160414-01
### New seed data
* seed/mecab-user-dict-seed.20160414.csv.xz
execute: Periodic data update on 2016-04-14(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/c01f0c2aee281dad46fab93feb5a692057f77bda
# Release 20160411-01
### New seed data
* seed/mecab-user-dict-seed.20160411.csv.xz
execute: Periodic data update on 2016-04-11(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/955f04e5b47f78c3b0a7ea125b86014b1d6ef4d2
# Release 20160407-01
### New seed data
* seed/mecab-user-dict-seed.20160407.csv.xz
execute: Periodic data update on 2016-04-07(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/dd957985214dd1861e978db5779aef85bb9c5394
# Release 20160404-01
### New features
* misc/patch/Noun.csv.20160404.diff
execute: Add patch file to fix some entries of IPADIC
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/70dc6730be9570bdc16b11b5121519a694e53b6c
### New seed data
* seed/mecab-user-dict-seed.20160404.csv.xz
execute: Periodic data update on 2016-04-04(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/b27c3145ac39c6bf2805d7c1980bc638d7ba687b
# Release 20160331-01
### New seed data
* seed/mecab-user-dict-seed.20160331.csv.xz
execute: Periodic data update on 2016-03-31(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/03679cca8cafe42ed1ff6388ad914fd96b9f1c7f
# Release 20160328-01
### New seed data
* seed/mecab-user-dict-seed.20160328.csv.xz
execute: Periodic data update on 2016-03-28(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/92bd0fff55ef09dd6337fad27e453bc5aeab66f9
# Release 20160324-01
### New seed data
* seed/mecab-user-dict-seed.20160324.csv.xz
execute: Periodic data update on 2016-03-24(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/00132e159e14ecbede233c562a5057939c7d5545
### Update seed data
* seed/neologd-adjective-verb-dict-seed.20160324.csv.xz
execute: Update algorithm to generate orthographical variant sequences
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/079eed121f87d6e1773d9931ac9aed46ce92e298
# Release 20160323-01
### Update seed data
* seed/neologd-noun-sahen-conn-ortho-variant-dict-seed.20160323.csv.xz
execute: Update algorithm to generate orthographical variant sequences
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/a28fe973766b2cec5344b314e7c9282bd3c38562
* seed/neologd-common-noun-ortho-variant-dict-seed.20150323.csv.xz
execute: Update algorithm to generate orthographical variant sequences
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/318465077f2fce04cb1489e6ee8d75a0b23e4b34
# Release 20160322-01
### Update seed data
* seed/neologd-noun-sahen-conn-ortho-variant-dict-seed.20160322.csv.xz
execute: Update algorithm to generate orthographical variant sequences
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/0e0ecf6cdcf45329f086b6d5becad91e86640835
* seed/neologd-common-noun-ortho-variant-dict-seed.20150322.csv.xz
execute: Update algorithm to generate orthographical variant sequences
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/196a8b480bbac61b6fd1a62889831de60d9c17c8
# Release 20160321-01
### Update seed data
* seed/neologd-common-noun-ortho-variant-dict-seed.20150318.csv.xz
execute: Fix algorithm to generate orthographical variant sequences
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/4db6b3f54afc387546e7662b859d49b53fff7821
### New seed data
* seed/mecab-user-dict-seed.20160321.csv.xz
execute: Periodic data update on 2016-03-21(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/6463c22d238ce484583e4fb5419fad713f8db250
# Release 20160317-01
### New seed data
* seed/mecab-user-dict-seed.20160317.csv.xz
execute: Periodic data update on 2016-03-17(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/2d177c2905f5fbfde47d645ad7ec3d5fde1d955d
# Release 20160314-01
### New seed data
* seed/mecab-user-dict-seed.20160314.csv.xz
execute: Periodic data update on 2016-03-14(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/7e796d96ca33d395066bfe1761a63e5ad6053a6b
# Release 20160310-01
### New seed data
* seed/mecab-user-dict-seed.20160310.csv.xz
execute: Periodic data update on 2016-03-10(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/5c0634b2a047a02706c97b552de7d15acb23c2ec
# Release 20160307-01
### New seed data
* seed/mecab-user-dict-seed.20160307.csv.xz
execute: Periodic data update on 2016-03-07(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/9bd8ab77f343f6c53dafea6c8445e3a254c28117
# Release 20160303-01
### New seed data
* seed/mecab-user-dict-seed.20160303.csv.xz
execute: Periodic data update on 2016-03-03(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/6e2eb85efc88056e5440267b645df0ac1f3dda78
# Release 20160229-01
### New seed data
* seed/mecab-user-dict-seed.20160229.csv.xz
execute: Periodic data update on 2016-02-29(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/47684a5598cefd8e079d73c8bb4b5606c8c649d9
# Release 20160225-01
### New seed data
* seed/mecab-user-dict-seed.20160225.csv.xz
execute: Periodic data update on 2016-02-25(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/b23ff0e7f55987ee8f53c761ada7c8f5c555c8eb
# Release 20160222-01
### New seed data
* seed/mecab-user-dict-seed.20160222.csv.xz
execute: Periodic data update on 2016-02-22(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/9ebb547fee596ed12a78c31efd745857cfc47a6b
# Release 20160218-01
### New seed data
* seed/mecab-user-dict-seed.20160218.csv.xz
execute: Periodic data update on 2016-02-18(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/bbdfab17fe8cae89a7bfef40da4e248bf8ddfee6
# Release 20160215-01
### New seed data
* seed/mecab-user-dict-seed.20160215.csv.xz
execute: Periodic data update on 2016-02-15(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/1658b0405ba2386607ed2962e554ed000d83445f
# Release 20160212-01
### New seed data
* seed/mecab-user-dict-seed.20160212.csv.xz
execute: Periodic data update on 2016-02-11(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/d00b401cf617aad70ceba1b800a8d932df5e1c01
# Release 20160209-01
### Update seed data
* seed/neologd-noun-sahen-conn-ortho-variant-dict-seed.20160209.csv.xz
execute: Update seed paths to delete some wrong tokens
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/3a37fbec0649e7ee8282cea1e10d7e63cf30034d
* seed/neologd-common-noun-ortho-variant-dict-seed.20150209.csv.xz
execute: Update seed paths to delete some wrong tokens
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/7f3c38739f61b1347b62ba7b4b057efd703ea3a6
# Release 20160208-01
### New seed data
* seed/mecab-user-dict-seed.20160208.csv.xz
execute: Periodic data update on 2016-02-08(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/1adfceee35ac729bd160bc3856edd1abef490bb0
# Release 20160205-01
### New seed data
* seed/mecab-user-dict-seed.20160205.csv.xz
execute: Delete entries of a string that expressed a unit
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/998e5697e98f7fbcadf3af0afceb85ad476696dc
# Release 20160204-01
### New seed data
* seed/mecab-user-dict-seed.20160204.csv.xz
execute: Periodic data update on 2016-02-04(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/fa2d9578b82546f5b06c62118585151d1c231887
# Release 20160202-01
### Update seed data
* seed/neologd-noun-sahen-conn-ortho-variant-dict-seed.20160202.csv.xz
execute: Update a dictionary file of orthographical variants of nouns used as verb form
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/40bda15703aed18f15e21f957d4991c72b2cc090
* seed/neologd-common-noun-ortho-variant-dict-seed.20150202.csv.xz
execute: Update a dictionary file of orthographical variants of common nouns
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/d92b3217a05d55098b2169bffc00ba2233ec472d
# Release 20160201-01
### New seed data
* seed/mecab-user-dict-seed.20160201.csv.xz
execute: Periodic data update on 2016-02-01(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/3acc3dad6c22917c7528eda4400b3cd0afb794c1
# Release 20160128-01
### New seed data
* seed/mecab-user-dict-seed.20160128
execute: Periodic data update on 2016-01-28(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/80622bfbde5a30e2bf936ff182d493034606ee95
# Release 20160125-01
### New seed data
* seed/mecab-user-dict-seed.20160125.csv.xz
execute: Periodic data update on 2016-01-25(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/7f307dbc7f430c5320178e48b8eb24d2afb581ab
* seed/neologd-noun-sahen-conn-ortho-variant-dict-seed.20160125.csv.xz
execute: Add a dictionary file of orthographical variants of nouns used as verb form
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/da37a98d2cc47a049c0a4e4a701c5780846b7822
# Release 20160121-01
### New seed data
* seed/mecab-user-dict-seed.20160121.csv.xz
execute: Periodic data update on 2016-01-21(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/fc48ab89487224e4a96bfaa578471e7b2be76f67
# Release 20160118-01
### New seed data
* seed/mecab-user-dict-seed.20160118.csv.xz
execute: Periodic data update on 2016-01-18(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/e8ea616f7e6ab7edd6018a2b4f6d3540cbef0c4f
# Release 20160114-01
### New seed data
* seed/mecab-user-dict-seed.20160114.csv.xz
execute: Periodic data update on 2016-01-14(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/9c70a19a47247b2e3e0cf2bb37ff80f524dcdd8b
# Release 20160111-01
### New seed data
* seed/mecab-user-dict-seed.20160111.csv.xz
execute: Periodic data update on 2016-01-11(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/4e5f09df1ac31bc305e269c33d0d003b451aac79
# Release 20160107-01
### New seed data
* seed/mecab-user-dict-seed.20160107.csv.xz
execute: Periodic data update on 2016-01-07(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/70444c17d9486f15265e7ca3dceadedec0748a4f
# Release 20160104-01
### New seed data
* seed/mecab-user-dict-seed.20160104.csv.xz
execute: Periodic data update on 2016-01-04(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/a6dfaf5f4ce3663d1f02d6cbca70d9d63bc5fb5f
# Release 20151231-01
### New seed data
* seed/mecab-user-dict-seed.20151231.csv.xz
execute: Periodic data update on 2015-12-31(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/19ee3e46fdd6a0c9517aff3149e9d1de25570db2
# Release 2015128-01
### New seed data
* seed/mecab-user-dict-seed.20151228.csv.xz
execute: Periodic data update on 2015-12-28(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/ab681cdcbf33c910c103ad8231ec07bbb4ded9b8
# Release 20151224-01
### New seed data
* seed/mecab-user-dict-seed.20151224.csv.xz
execute: Periodic data update on 2015-12-24(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/83ccc10701afd704af38fd02829dc5d922fd6835
# Release 20151221-01
### New seed data
* seed/mecab-user-dict-seed.20151221.csv.xz
execute: Periodic data update on 2015-12-21(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/ab681cdcbf33c910c103ad8231ec07bbb4ded9b8
# Release 20151217-01
### New seed data
* seed/mecab-user-dict-seed.20151217.csv.xz
execute: Aperiodic data update on 2015-12-17(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/2307350e953b74c8d0e1de1a163d2d8e8025bbc8
# Release 20151214-01
### New seed data
* seed/mecab-user-dict-seed.20151214.csv.xz
execute: Aperiodic data update on 2015-12-14(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/6204dba4729058942c38b1a04917af2389d87e22
# Release 20151210-01
### New seed data
* seed/mecab-user-dict-seed.20151210.csv.xz
execute: Aperiodic data update on 2015-12-10(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/7e98d671f17ad6ed8bb9116f10fdb9648da162a1
# Release 20151208-01
### New seed data
* seed/mecab-user-dict-seed.20151208.csv.xz
execute: Aperiodic data update on 2015-12-08(Tue)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/399a636a03baf0075ed4e25cdeefdcdaed3538f9
# Release 20151207-01
### New seed data
* seed/mecab-user-dict-seed.20151207.csv.xz
execute: Aperiodic data update on 2015-12-07(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/997f0258c306e52ee3f2a940de183a762fbf64b0
# Release 20151203-01
### New seed data
* seed/mecab-user-dict-seed.20151203.csv.xz
execute: Aperiodic data update on 2015-12-03(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/500421bca0216edc28e05d222f83cf7e3aaa0fe1
# Release 20151130-01
### New seed data
* seed/mecab-user-dict-seed.20151130.csv.xz
execute: Aperiodic data update on 2015-11-30(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/a028b64517f651c02981b77d6d1c7ad71bd3b054
# Release 20151126-02
### New seed data
* seed/mecab-user-dict-seed.20151126.csv.xz
execute: Aperiodic data update on 2015-11-26(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/d63c7b05885bd76f05796393110485e32a0e0184
### Update seed data
* seed/neologd-adjective-exp-dict-seed.20151126.csv.xz, seed/neologd-adjective-std-dict-seed.20151126.csv.xz
execute: Update value of cost field of adjective entries
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/f5e752f0cfc9531d9520704d8d56791ff5c7b282
# Release 20151126-01
### New seed data
* seed/neologd-adjective-exp-dict-seed.20151126.csv.xz, seed/neologd-adjective-std-dict-seed.20151126.csv.xz
execute: Update seed files of orthographical variant of an adjective
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/17cb5c07581be93b4784e77a5d3c39d6d1483e3d
# Release 20151125-01
### New seed data
* seed/neologd-adjective-exp-dict-seed.20151125.csv.xz
execute: Add seed file to tokenize infrequent orthographical variant of an adjective
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/efedcfad65227df463c04328466d2942e9d38856
* seed/neologd-adjective-std-dict-seed.20151125.csv.xz
execute: Add seed file to tokenize infrequent orthographical variant of an adjective
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/fa01cdd2c13732c91247e8a144ba561dedb8da5d
# Release 20151123-01
### New seed data
* seed/mecab-user-dict-seed.20151123.csv.xz
execute: Aperiodic data update on 2015-11-23(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/f52f4281458ee63280c6826e8b31f66414da1949
# Release 20151119-01
### New seed data
* seed/mecab-user-dict-seed.20151119.csv.xz
execute: Aperiodic data update on 2015-11-19(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/1317f62fb6a8f5a2022c8fe902e07f6222962c96
# Release 20151116-01
### New seed data
* seed/mecab-user-dict-seed.20151116.csv.xz
execute: Aperiodic data update on 2015-11-16(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/77c1275a96bee1c153402d2abf60ef5f2bc6d532
# Release 20151112-01
### New seed data
* seed/mecab-user-dict-seed.20151112.csv.xz
execute: Aperiodic data update on 2015-11-12(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/4ca7442a381bc8cd2e08e120bdcf63be4938b6fb
# Release 20151110-01
### New seed data
* seed/neologd-noun-ortho-variant-dict-seed.20151110.csv.xz
execute: Add many entries of general noun written in Hiragana or Katakana
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/bfa776fdb1859bad45f87bbd329eedf81516e432
# Release 20151109-01
### New seed data
* seed/mecab-user-dict-seed.20151109.csv.xz
execute: Aperiodic data update on 2015-11-09(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/25e7e84a99e6990d717500dc42471972709a8f53
# Release 20151105-01
### New seed data
* seed/mecab-user-dict-seed.20151105.csv.xz
execute: Aperiodic data update on 2015-11-05(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/28b8a7af3479d485a9538e1d43593eb3ab5f194d
# Release 20151102-01
### New seed data
* seed/mecab-user-dict-seed.20151102.csv.xz
execute: Aperiodic data update on 2015-11-02(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/ba13e1b13c087baf8e34a627d082388a16e0d4a1
# Release 20151029-01
### New seed data
* seed/mecab-user-dict-seed.20151029.csv.xz
execute: Aperiodic data update on 2015-10-29(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/fc22915722b1ccc2a9f9cf75c2f74d7d53328f5c
# Release 20151026-01
### New seed data
* seed/mecab-user-dict-seed.20151026.csv.xz
execute: Aperiodic data update on 2015-10-26(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/f12e90cc3a93d00ecf980779377b53e880fc3ca3
# Release 20151022-02
### Add new process
* libexec/make-mecab-ipadic-neologd.sh
execute: Add process to delete the entry whose surface/base-form is shorter/longer than optional length
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/64435d34a2518cd1cf9eb214989471479606cd43
### Update seed data
* seed/neologd-interjection-dict-seed.20151022.csv.xz
execute: Fix POS information (thanks @kazuhira_r & @moco_beta)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/9dae8af1da60c5be448b686d803c1a8d8fe271ab
# Release 20151022-01
### New seed data
* seed/mecab-user-dict-seed.20151022.csv.xz
execute: Aperiodic data update on 2015-10-22(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/fc22915722b1ccc2a9f9cf75c2f74d7d53328f5c
# Release 20151019-01
### New seed data
* seed/mecab-user-dict-seed.20151019.csv.xz
execute: Aperiodic data update on 2015-10-19(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/ec76766dda40519ad6781283c8b363433492227d
# Release 20151015-01
### New seed data
* seed/mecab-user-dict-seed.20151015.csv.xz
execute: Aperiodic data update on 2015-10-15(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/0a4427fd9fc3dce04e5202a9e95f6d841d2d9cd3
# Release 20151013-01
### New seed data
* seed/seed/neologd-noun-ortho-variant-dict-seed.20151013.csv.xz
execute: Add a seed file of orthographical variant of common noun
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/102e94c55a04a5d56487b2206e572bc70c0e2a24
# Release 20151008-01
### New seed data
* seed/mecab-user-dict-seed.20151008.csv.xz
execute: Aperiodic data update on 2015-10-08(Thu)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/b8a0e3f0fddf638163ab0e76845503dbf8cc4e84
# Release 20151005-01
### New seed data
* seed/mecab-user-dict-seed.20151005.csv.xz
execute: Aperiodic data update on 2015-10-05(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/f293b2aeaf606c949e8a14b676965e77d3320023
# Release 20151002-01
### New seed data
* seed/neologd-interjection-dict-seed.20151002.csv.xz
execute: Add the seed data file of interjection words
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/75ad1eab01c40ec9d87b5de2eea907c8c57c173d
# Release 20151001-01
### New seed data
* seed/mecab-user-dict-seed.20151001.csv.xz
execute: Aperiodic data update on 2015-10-01
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/9a441ef38a7b1315846671c768b10ab04f902521
# Release 20150928-01
### New seed data
* seed/mecab-user-dict-seed.20150928.csv.xz
execute: Aperiodic data update on 2015-09-28(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/631498c56a17a154627ede5876e914cdc3da8d2d
# Release 20150925-01
### New seed data
* seed/mecab-user-dict-seed.20150925.csv.xz
execute: Aperiodic data update on 2015-09-25(Fri)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/4eab1db96dc7bd0befa81adede38bf5babe458fe
# Release 20150922-01
### New seed data
* seed/mecab-user-dict-seed.20150922.csv.xz
execute: Aperiodic data update on 2015-09-22(Mon)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/9d4964e5dcafa27cd44ecbc6e526f932a0514019
# Release 20150918-01
### New seed data
* seed/mecab-user-dict-seed.20150918.csv.xz
execute: Aperiodic data update on 2015-09-18
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/a6a0401ed5f431de50402fcef4a28645548165d9
# Release 20150915-01
### New seed data
* seed/mecab-user-dict-seed.20150915.csv.xz
execute: Aperiodic data update on 2015-09-15
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/80864a07180e8822b73b5b9f0459f07962fc1512
# Release 20150913-01
### New seed data
* seed/mecab-user-dict-seed.20150913.csv.xz
execute: Aperiodic data update on 2015-09-13
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/570ba29fb97ac190240f63a0f3f12e09f0ef5a2a
# Release 20150912-01
### New seed data
* seed/mecab-user-dict-seed.20150912.csv.xz
execute: Aperiodic data update on 2015-09-12
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/a30c866d9d325713b12fe9520f7d1ab4f1eb3bda
# Release 20150907-01
### New seed data
* seed/mecab-user-dict-seed.20150907.csv.xz
execute: Aperiodic data update on 2015-09-07
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/f1af1807f8191145edb6a132388ae47cd1153613
# Release 20150905-01
### New seed data
* seed/mecab-user-dict-seed.20150905.csv.xz
execute: Aperiodic data update on 2015-09-05
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/cc0d9614f7855c40a50d281c0080e6686e384372
# Release 20150903-01
### New seed data
* seed/mecab-user-dict-seed.20150903.csv.xz
execute: Aperiodic data update on 2015-09-03
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/844434afdb361c72c4912829e412669fc75f631c
# Release 20150901-01
### New features
* seed/mecab-user-dict-seed.20150901.csv.xz
execute: Periodic data update on 2015-09-01
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/72e17f35c55d6947758f809ff419952d3468d1fe
# Release 20150827-01
### New seed data
* seed/mecab-user-dict-seed.20150827.csv.xz
execute: Aperiodic data update on 2015-08-27
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/03a043fab4af13650f0f919c6ff5fef4003316a4
# Release 20150824-01
### New seed data
* seed/mecab-user-dict-seed.20150824.csv.xz
execute: Aperiodic data update on 2015-08-24
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/69b5e5bbd31e6dea8c67bb84c6426f0d6bb2055a
# Release 20150822-01
### New features
* seed/mecab-user-dict-seed.20150822.csv.xz
execute: Add many fashion brand names
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/9dc89b2e64e866fef2b535ff4b9ea1c2abf43db0
# Release 20150821-02
### New features
* seed/mecab-user-dict-seed.20150821.csv.xz
execute: Add many fashion brand names (thanks kimoto)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/84bed2b1a103920b4d10b801ad02c8c7e960bc1b
# Release 20150821-01
### Bug fixes
* bin/install-mecab-ipadic-neologd
issue: https://github.com/neologd/mecab-ipadic-neologd/issues/4
execute: Fix the code about checking an update information of remote repository using 'git log' (thanks hidekuro)
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/fb388c9ba92dca62c28e8f63297dd9cbeb9fee54
# Release 20150817-01
### New features
* seed/mecab-user-dict-seed.20150817.csv.xz
execute: Periodic data update on 2015-08-17
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/e37daf9e0635d9f99d3ac6bf81b8e53f1ed3b973
# Release 20150810-01
### New seed data
* seed/mecab-user-dict-seed.20150810.csv.xz
execute: Aperiodic data update on 2015-08-10
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/d8d0ac20d38f3f7314911b30f06552c676406f1f
# Release 20150805-01
### Bug fixes
* seed/mecab-user-dict-seed.20150805.csv.xz
execute: Improve a value of cost column of many entries of a seed file
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/6e5c56d059a436044f1f0e8d6d1b5b272ce6aa23
# Release 20150803-01
### New seed data
* seed/mecab-user-dict-seed.20150803.csv.xz
execute: Periodic data update on 2015-08-03
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/847bb41c69f6638c52aa443b70e7e02f6c4f7b55
# Release 20150723-01
### New seed data
* seed/mecab-user-dict-seed.20150723.csv.xz
execute: Aperiodic data update on 2015-07-23
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/bea927a94821b38338e27aa8f4ea629fc64c3576
# Release 20150716-01
### New features
* seed/mecab-user-dict-seed.20150716.csv.xz
execute: Periodic data update on 2015-07-16
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/ff21846686f579a07b8ec24c128e7a9d380ea6c2
# Release 20150709-01
### New seed data
* seed/mecab-user-dict-seed.20150709.csv.xz
execute: Aperiodic data update on 2015-07-09
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/988df8b7a7c733c52996ecdd6c9b968d44be50df
# Release 20150702-01
### New features
* seed/mecab-user-dict-seed.20150702.csv.xz
execute: Periodic data update on 2015-07-02
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/d44b343c856afe7e128dccbe71bdb3db07b406a2
# Release 20150624-01
### New seed data
* seed/mecab-user-dict-seed.20150624.csv.xz
execute: Add many entries whose surface field has word boundaries using the character of half width space
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/e494d2ef55f08aa8639e64cd5e6afcbf620c2acf
# Release 20150623-01
### New seed data
* seed/mecab-user-dict-seed.20150623.csv.xz & seed/neologd-adverb-dict-seed.20150623.csv.xz
execute: Aperiodic data update on 2015-06-23
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/d0517c77e96721d2c5e38b3fb7c55dd07ea9de4b
# Release 20150618-01
### New features
* seed/neologd-adverb-dict-seed.20150618.csv.xz
execute: Add seed file of adverb entries
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/93ea2726c031aecc0c57d24b112705f7f8149fea
* bin/install-mecab-ipadic-neologd
execute: Add process to install the seed file of adverb entries
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/e0082ad45a1fa80e573161dadddd6ec66100f6f7
* libexec/make-mecab-ipadic-neologd.sh
execute: Add process to install the seed file of adverb entries
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/23ae2723ad4ac2c759ed7347c9307f8d2df9b083
# Release 20150616-01
### New features
* seed/mecab-user-dict-seed.20150616.csv.xz
execute: Periodic data update on 2015-06-16
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/c2b10a3468bfcd9708bb2fa42e559f359acf2d4c
# Release 20150609-01
### New features
* misc/patch/*.csv.20150609.diff
execute: Add patch file to fix yomigana field of rows of IPA dictionary
commit: https://github.com/neologd/mecab-ipadic-neologd/commit/69e49c05d78069fb1926df7dbc68575a6dcc8d99
* libexec/make-mecab-ipadic-neologd.sh