~vono22/narau/trunk

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
------------------------------------------------------------
revno: 116
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sun 2012-12-16 20:56:19 +0100
message:
  Fix compile error from the last commit.
  Restore normal download url.
------------------------------------------------------------
revno: 115
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sun 2012-12-16 20:16:57 +0100
message:
  Bug fixed, in both releases.
  - Fix crash when unselecting a main DB in the download activity
  - Fix a double crash, if the learn writing activity crash: Android start the learn writing menu activity, without init (Common.init())
  - Fix double display of english language in online dictionary activity, when selecting languages.
  - Cukcake: Better white on black menu. But there is layout problems for android 1.5 & 1.6....
  - Simpler preferences migration code.
  - DictionaryOnlineActivity: Fix service id change between 2 install, which leads to a crash (resource not found)
  - DictionaryOnlineActivity: Restore android default user agent, instead of Firefox 17 on Ubuntu...
  - DictionaryBase: set a request focus on the edit text, when started.
------------------------------------------------------------
revno: 114
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sun 2012-12-16 00:46:16 +0100
message:
  Cukcake edition:
  - First port of v0.8 on cupcake to froyo.
------------------------------------------------------------
revno: 113
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-12-13 21:37:03 +0100
message:
  Layouts Large:
  - Fix some layouts for a display more beautiful
  - Fix drills layouts, because of text to big to be render
  
  About:
  - Add changelog 0.7 to 0.8
  
  Downloader:
  - Change quit button to cancel. Now click on the cancel button in the DownloaderActivity always launch the main menu.
  
  Preferences:
  - Clear first run flag when running the clean() method.
------------------------------------------------------------
revno: 112
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-12-13 18:40:21 +0100
message:
  Kanji/Kana menu list:
  - Rescale the ic_media_play image to fit better
  
  Downloader:
  - Fix crash when unselect a main DB
  
  Main menu:
  - Notification message is now more readable.
  
  Dictionary:
  - Better display of MyMemory results.
------------------------------------------------------------
revno: 111
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-12-13 17:03:49 +0100
message:
  Polishing...
  
  About:
  - Change the Licence menu to About
  - Add the About tab
  - Add icon for about tab
  - Update icon for licence and thanks
  
  Download:
  - Update layout for the first run message (normal size)
  
  Dictionary:
  - Add menu to select language/service (still accessible by a long click on the search button)
  
  Main:
  - show the first run screen, with the download database proposal, only on first run, not when the databases are missing.
------------------------------------------------------------
revno: 110
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-12-13 01:54:38 +0100
message:
  All:
  - Fix some layouts due to icon change.
  - Fix a ClassCastException in KanjiToWordActivity because of changes from Button to ImageButton (previous/next).
------------------------------------------------------------
revno: 109
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-12-13 00:41:33 +0100
message:
  All:
  - Add ic_media_{next, previous, play} for theme buttons.
  
  KanjiToWord:
  - Enabled/Disabled the buttons prev/next instead of make them visible/invisible.
------------------------------------------------------------
revno: 108
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-12-12 22:51:39 +0100
message:
  DictionaryOffline:
  - Add menu: word match/word extended search.
------------------------------------------------------------
revno: 107
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-12-12 21:46:54 +0100
message:
  DictionaryOffline:
  - Remove debug log.
------------------------------------------------------------
revno: 106
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-12-12 21:43:58 +0100
message:
  Dictionary Offline:
  - Restaure the possibility to stop the loader thread, while displaying the results.
  - Add a small wait in the loader thread to let the main thread handle what he had receive.
------------------------------------------------------------
revno: 105
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-12-12 02:26:48 +0100
message:
  Drill:
  - Fix layouts, need code rework...
------------------------------------------------------------
revno: 104
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-12-11 23:34:12 +0100
message:
  All
  - Import Button's Holo Dark theme from android assets for sdk < 11
  - Rework some activity main menu icons: make them smaller
  - Add support to the description text in main menu activities, defined in AndroidManifest.xml.
  
  Dictionaries
  - Save preferences: Current search lang pair, current service (online).
  - Fix search result in double.
  - Fix receive of UTF-8 text from online result (google results didn't displayed well)
  - Add layouts for large screen (online)
  - Random clean code
  - Delete expriried cookies
  
  Kanji To Words:
  - Fix kanji header list view.
  - Add layouts for large screen.
------------------------------------------------------------
revno: 103
committer: Yvon TANGUY <vono22@yahoo.fr>
branch nick: trunk
timestamp: Tue 2012-12-11 02:07:49 +0100
message:
  Dictionary:
  - Lot of change to continue the code multialisation between online & offline dictionary.
  - Regressions bug fix
  - TODO: Land display of the online dictionary.
  - Now: need a lot of testing to fix all the little gleaches that remains.
  
  All:
  - Update android-support-v4.jar
  - Minor changes.
------------------------------------------------------------
revno: 102
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sun 2012-12-09 02:58:19 +0100
message:
  All:
  - Fix license comment
------------------------------------------------------------
revno: 101
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sun 2012-12-09 02:28:46 +0100
message:
  All:
  - Clean code & some rename/move files.
------------------------------------------------------------
revno: 100
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sat 2012-12-08 23:30:24 +0100
message:
  Dictionary Online:
  - Start having an UI for screen <= normal size in portrait mode.
  - Start putting the maximum of code in common with the offline dictionary
  
  HistoryDB:
  - If fetching data from the db, when init, failed, delete the db file, and create a new one.
  
  All:
  - Create a new class "Language" to replace the Locale class.
------------------------------------------------------------
revno: 99
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sat 2012-12-08 17:14:27 +0100
message:
  LearnWriting:
  - Discover of ImageButton :-[
------------------------------------------------------------
revno: 98
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sat 2012-12-08 03:05:54 +0100
message:
  Online dictionary search: partially done.
------------------------------------------------------------
revno: 97
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-12-06 03:46:08 +0100
message:
  DBInfos python script:
  - sort files by name
------------------------------------------------------------
revno: 96
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-12-06 03:44:52 +0100
message:
  Dictionary:
  - Better presentation of translations.
------------------------------------------------------------
revno: 95
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-12-06 03:43:59 +0100
message:
  Dictionary:
  - Fix German & Dutch glosses always at the last sense.
------------------------------------------------------------
revno: 94
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-12-06 00:20:47 +0100
message:
  Downloader:
  - Fix crash if there is a problem in the .txt download file links.
  - Before statring the download, close the databases.
------------------------------------------------------------
revno: 93
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-12-05 21:49:11 +0100
message:
  Dictionary:
  - Add some fix in glosses, where glosses contains the sense number.
------------------------------------------------------------
revno: 92
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-12-05 03:13:23 +0100
message:
  Database:
  - Use only time in miliseconds everywhere. Fix some bug....
  - Fix a crash after a dictionary database update, when init the history db.
  
  Dictionary:
  - When select an old search from the hsitory, change the current search language.
  - Display in the history the number of results of the last search. Not the current nember of result we have.
    This is to prevent display everywhere 0 after a dictionary db update.
  - After a dictionary database update, the search history is empty. So redo a full search for this old search, instead of display "No result".
------------------------------------------------------------
revno: 91
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-12-05 03:05:37 +0100
message:
  DBBuilder:
  - EDictReader: take the sens in consideration.
------------------------------------------------------------
revno: 90
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-12-04 21:36:37 +0100
message:
  Dictionary:
  - Word match preferences funcionality is now restore.
  - Word match works now with japanese text too.
------------------------------------------------------------
revno: 89
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-12-04 18:36:27 +0100
message:
  Minor fixes:
  - Fix button cancel callback function name with the init error view
  - Fix (try...) the empty list when going back on kanji to words (regression)
  - Add an infinite progress dialog when doing the search with the dictionary
  - Remove some debug log messages.
------------------------------------------------------------
revno: 88
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-12-04 17:22:31 +0100
message:
  rework-dictionary:
  - Select dictionary to search: DONE
------------------------------------------------------------
revno: 87
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-12-04 17:19:09 +0100
message:
  Another menu/action bar fix
------------------------------------------------------------
revno: 86
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-12-04 15:34:34 +0100
message:
  Learn writing: change butons icon previous/next kanji from visibible/invisible to enabled/disabled
  Fix nullpointer while display the KanjiView layouts in Eclipse
  Minor fix for Dictionary search lang in preferences.
------------------------------------------------------------
revno: 85
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-12-04 15:31:04 +0100
message:
  Layout update: Fix some display.
  Add icons to the action bar
------------------------------------------------------------
revno: 84
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-12-04 15:26:39 +0100
message:
  Icon resize for ActionBar
------------------------------------------------------------
revno: 83
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-12-04 11:49:49 +0100
message:
  Download:
  - Fix the DB display names after ratote the device.
------------------------------------------------------------
revno: 82
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-12-03 22:42:39 +0100
message:
  Fix layouts:
  -  Download and drills parts: completely rework the layouts for large screen (tablet)
  - Other minor layouts fix
  
  Bug:
  - Regression with the download:  dictdb files where saved with kanjidb names and vice versa
  - Fix potential null pointer when exit a drill.
------------------------------------------------------------
revno: 81
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-12-03 01:03:41 +0100
message:
  Dictionary:
  - Save the search history in a SQLite database.
  - Add the preferences to specifie the number os history to keep (0 delete the database)
  - When back key is pressed, if the history is show, hide it.
  
  Other:
  - Random comments change (auto layout)
  - Fix some public/private things
------------------------------------------------------------
revno: 80
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sat 2012-12-01 23:50:01 +0100
message:
  Add dictionary search history.
  Add a confirmation dialog in preferences before reset them.
------------------------------------------------------------
revno: 79
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sat 2012-12-01 15:09:30 +0100
message:
  DictionaryActivity & KanjiToWordActivity : Use now a ListFragment in common to display dictionary entries.
  Click on one entry: expend the small view to the full entry view (like before but without starting a new activity)
  Dictionary layout on tablet (land view): partially done
  Retore the soft keyboard auto show/hide: but only if there is not an hardware one.
  EntityDetailFragment: partially deprecated.
------------------------------------------------------------
revno: 78
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-11-28 22:18:28 +0100
message:
  Update FDroid metadata file.
------------------------------------------------------------
revno: 77
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-11-28 22:18:00 +0100
message:
  Dictionary:
  - Remove old zoom button icons.
  - Add layout for landscape view.
  - Add dictionary search thread management.
  - Restore search limit clause.
  - Add an option (menu) to search without limit clause.
  - Use selectionArgs[] in db query instead of full where clause.
------------------------------------------------------------
revno: 76
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-11-28 22:12:34 +0100
message:
  Add new zoom button icons.
------------------------------------------------------------
revno: 75
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-11-28 22:10:36 +0100
message:
  Clean SVG icon files:
  - remove inkscape stuff
  - add GPLv3 notice
------------------------------------------------------------
revno: 74
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-11-28 22:08:33 +0100
message:
  Fix python scripts for python 3.2
------------------------------------------------------------
revno: 73
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-11-28 00:41:48 +0100
message:
  Fix text zoom problem.
------------------------------------------------------------
revno: 72
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-11-27 21:10:48 +0100
message:
  - Dictionary: Globally it work again. Need tweeks and improvements
  -  Put in common the display of dictionary entries between the DictionaryActivity and KanjiToWordActivity (with ItemDisplay).
  - Remove the checkbox which disabled a lang in lang priorities preferences.
  - Fix few others bugs.
------------------------------------------------------------
revno: 71
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-11-27 15:41:06 +0100
message:
  Add eclipse project files.
------------------------------------------------------------
revno: 70
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-11-27 12:48:15 +0100
message:
  Fix a problem in EDict reader which made put gloss to the last sense only.
  Remove the gloss "(P)" from the list.
------------------------------------------------------------
revno: 69
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-11-27 01:37:30 +0100
message:
  Load dictionary data: should be OK.
------------------------------------------------------------
revno: 68
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-11-26 19:30:29 +0100
message:
  - Update most of the code to the Split database (the dictionary part still not update)
  - Fix 1 bug: KanjiToWords: Search lang priorities from kanji pref, and not dictionary: If avail lang was not in dict, it crashed.
------------------------------------------------------------
revno: 67
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-11-23 21:19:35 +0100
message:
  clean (2)
------------------------------------------------------------
revno: 66
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-11-23 21:17:32 +0100
message:
  clean
------------------------------------------------------------
revno: 65
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-11-23 14:15:04 +0100
message:
  Databse Creation: Split the kanji db like the dictionary: One database per lang.
  Update the python script which generate narau_db_infos.txt
------------------------------------------------------------
revno: 64
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-11-23 11:46:46 +0100
message:
  - Rearrange some classes (remame + change package) to prepare the split of databases (one db file per lang)
  - Fix an error in the previous changelog (0.6->0.7): SHA-515 -> SHA-512.
------------------------------------------------------------
revno: 63
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-11-22 22:06:19 +0100
message:
  Update python script narau_db_infos.py, to be more automatic:
  - Fetch version_code from AndroidManifest.xml
  - Fetch database creation time from sqlite db
  - Fetch database version format from sqlite db
  
  NarauDBBuilder:
  - Put in common the creation of the table "db_info"
  - Add the time creation
------------------------------------------------------------
revno: 62
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-11-22 19:46:22 +0100
message:
  Rework dictionary https://blueprints.launchpad.net/narau/+spec/rework-dictionary:
  Split Databases Creation Script: DONE
  Add EDict to database creation: DONE
  Add Spanish dictionary: DONE
------------------------------------------------------------
revno: 61
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-11-21 01:38:43 +0100
message:
  Merge to/from Cupcake version.
  Update the Cupcake version to use the Froyo SDK. Still work and less differences between both versions.
------------------------------------------------------------
revno: 60
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-11-20 22:11:57 +0100
message:
  - Lots of minor tweaks: Mostly in the download part
  - Better UI layouts for some devices (tablet, android 4)
  - Some bugs fixed: Crash when a database is missing, and display the lang priorities in the preferences.
------------------------------------------------------------
revno: 59
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-11-20 01:56:31 +0100
message:
  - Fix regression bug: No display of hiragan/katakana romanji translation in LearnWritingActivity
  - Better respect of android standard:
    * Using a ListActivity for the main menu
    * Using system notification in case of database deprecated or missing
  - Better management of the download database process.
------------------------------------------------------------
revno: 58
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sun 2012-11-18 22:02:56 +0100
message:
  Rework icons, to respect better the Android guide line Iconography (https://developer.android.com/design/style/iconography.html)
------------------------------------------------------------
revno: 57
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sun 2012-11-18 20:14:19 +0100
message:
  Fix nullpointer in LearnWritingActivity when there is no selection.
------------------------------------------------------------
revno: 56
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sat 2012-11-17 16:54:24 +0100
message:
  Update version (5, 0.8)
  Rename main activity.
------------------------------------------------------------
revno: 55
tags: narau-0.7.0
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-11-16 17:20:40 +0100
message:
  Fix download URL (as usual...)
------------------------------------------------------------
revno: 54
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-11-16 17:15:45 +0100
message:
  Merge Cupcake edition to v0.7
------------------------------------------------------------
revno: 53
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-11-16 15:44:37 +0100
message:
  Update the first_run window: Display what's is new in this version.
  Main menu window: Display a warning if a database is missing or deprecated.
------------------------------------------------------------
revno: 52
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-11-15 23:39:26 +0100
message:
  - Change checksum to MD5, SHA-512 was too slow for older android version.
  - Preparation of the download database process, for the split of the dict db: 1 progress bar for the total download, 1 progres bar for the current download.
  - Fix android 14+ buttons ok/cancel position (lint warning)
------------------------------------------------------------
revno: 51
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-11-15 16:28:56 +0100
message:
  Fix some random warnings
------------------------------------------------------------
revno: 50
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-11-15 16:06:38 +0100
message:
  Kanjis radical filter: done
------------------------------------------------------------
revno: 49
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-11-14 20:48:37 +0100
message:
  Kanjis filter almost done.
  Few things needing to be fixed before final 0.7 version.
------------------------------------------------------------
revno: 48
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-11-12 12:53:28 +0100
message:
  Fix bug  #1077619 "not able to install dictionaries - negative free space reported "
------------------------------------------------------------
revno: 47
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sat 2012-11-03 13:54:43 +0100
message:
  KanjiDB: New version, work in progress.
------------------------------------------------------------
revno: 46
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-11-01 11:35:26 +0100
message:
  Continue update the kanjis database.
  - Rename table (more coherent)
  - Clean schema (radical + position are now in separate tables)
  Note: The Narau code is not yet sync with the database builder.
------------------------------------------------------------
revno: 45 [merge]
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-10-31 12:05:26 +0100
message:
  merge from the fdroid branch (fix aapt error)
------------------------------------------------------------
revno: 44
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-10-31 12:04:21 +0100
message:
  commit to be able to merge
------------------------------------------------------------
revno: 43
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-10-30 20:42:43 +0100
message:
  New kanjidb version:
  - Add dictionary index for kanjis
  - Little change in the kanjivg part: it is now completely separate from the table "kanji"
  - Read kanjivg from the git directory, not the big file. The big xml file was too old.
------------------------------------------------------------
revno: 42 [merge]
tags: narau-0.6.0
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-10-29 15:06:29 +0100
message:
  Merge  back from fdroid branch
------------------------------------------------------------
revno: 41
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-10-29 14:10:56 +0100
message:
  Update some versionning stuff.
  Commit in advance one future modifications for v0.7 (just to clean the commit log). This update shouldn't change anything.
------------------------------------------------------------
revno: 40
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-10-29 13:54:18 +0100
message:
  Update version code.
------------------------------------------------------------
revno: 39
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-10-29 13:03:57 +0100
message:
  Reports to the cupcake branch
------------------------------------------------------------
revno: 38
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-10-29 12:36:10 +0100
message:
  Add the list of kanji in the learn writing activity.
  Add icons for the menu.
------------------------------------------------------------
revno: 37
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-10-29 09:49:56 +0100
message:
  Remove the originals svg files used to make the icons from the assets directory. They are not needed in the final APK.
  Move them to a new directory.
  Create the kanji list icon.
------------------------------------------------------------
revno: 36
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sun 2012-10-28 00:01:12 +0200
message:
  Update the cupcake version.
------------------------------------------------------------
revno: 35
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sat 2012-10-27 23:00:46 +0200
message:
  KanjiToWordActivity: Implement the show details of a word, by long clicking on it.
  KanjiToWordActivity: Use the text scale size used by the dictionary.
------------------------------------------------------------
revno: 34
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Sat 2012-10-27 16:55:22 +0200
message:
  KanjiToWordActivity: Almost finish (good for now)
  Add a new activity to display all kanjis in a list and get the long click one.
  Add a pref for the number maximum of words to load by default in kanji to words.
------------------------------------------------------------
revno: 33
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-10-25 19:30:07 +0200
message:
  Fix preferences sync.
------------------------------------------------------------
revno: 32
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-10-25 17:51:10 +0200
message:
  Cupcake report: Fix a null pointer when display the dictionary.
------------------------------------------------------------
revno: 31
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-10-25 16:44:43 +0200
message:
  Report the lasts changes to the Cupcake version.
  This version is still not well tested, but it globally work well.
------------------------------------------------------------
revno: 30
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-10-25 00:09:40 +0200
message:
  Far better UI for the KanjiToWords, in portrait format for smartphone screen.
  Littles fix/optim.
------------------------------------------------------------
revno: 29
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-10-24 01:55:27 +0200
message:
  Better KanjiToWords, but not finish yet.
  The UI need lots of changes.
------------------------------------------------------------
revno: 28
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Tue 2012-10-23 01:10:08 +0200
message:
  KanjiToWords: The logic to load the datas is  done.
  TODO:
  - Faster loading
  - Make a better view
  - Sort words by usage ?
------------------------------------------------------------
revno: 27
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-10-22 20:58:25 +0200
message:
  Remove unuse class.
------------------------------------------------------------
revno: 26
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-10-22 20:35:33 +0200
message:
  * Reports from fdroid branch v0.5.1:
   - Fix: make the continue button display after downloading the database to work as expected
   - Fix: some preferences where not taken in account (little rework of the preferences system)
   - Put the download url of "narau_db_infos.txt" into a resource file.
   - Remove all debug log
   - Random clean code
   - Update version: 0.5 -> 0.5.1
  * Start the kanji to words activity.
------------------------------------------------------------
revno: 25
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-10-22 20:29:02 +0200
message:
  Rename sqljet directory
------------------------------------------------------------
revno: 24
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Mon 2012-10-22 20:27:31 +0200
message:
  Update sqljet 1.1.0 -> 1.1.4
------------------------------------------------------------
revno: 23
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-10-19 19:59:20 +0200
message:
  Fix a stupid NullPointer.
------------------------------------------------------------
revno: 22
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-10-19 19:33:58 +0200
message:
  Update FDroid file.
------------------------------------------------------------
revno: 21
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-10-19 19:32:25 +0200
message:
  Add Narau code for Android Cupcake (1.5)+
  Only minimal tests was done.
  This port have exactly the same functionnalities than the main Narau code.
------------------------------------------------------------
revno: 20
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-10-19 19:30:04 +0200
message:
  Clean code
------------------------------------------------------------
revno: 19
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-10-19 16:41:19 +0200
message:
  Fix Portugese->Portuguese
------------------------------------------------------------
revno: 18
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-10-19 16:10:39 +0200
message:
  Update FDroid file.
------------------------------------------------------------
revno: 17
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-10-19 16:09:59 +0200
message:
  Third pass of fixes for the databases download. It should work as expected in most cases.
  Some clean code (remove debug Log tag)
------------------------------------------------------------
revno: 16
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-10-19 02:22:15 +0200
message:
  Fix the download file.
  Fix a potential NullPointer
  Update FDroid metadata file.
------------------------------------------------------------
revno: 15
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Fri 2012-10-19 02:05:43 +0200
message:
  Second pass of download databases fixes.
------------------------------------------------------------
revno: 14
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-10-18 21:01:59 +0200
message:
  First pass of download databases fixes.
------------------------------------------------------------
revno: 13
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Thu 2012-10-18 19:00:07 +0200
message:
  - Complete rework of the download system.
  - Fix some random warnings  (new eclipse workspace, so new messages!)
------------------------------------------------------------
revno: 12
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-10-17 21:42:19 +0200
message:
  Fix english string (downloading message)
------------------------------------------------------------
revno: 11
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-10-17 21:38:39 +0200
message:
  Fix kanji.db.gz url (bad upload...)
------------------------------------------------------------
revno: 10
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-10-17 21:30:15 +0200
message:
  Another attempt to make the database download to work...
------------------------------------------------------------
revno: 9
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-10-17 19:37:22 +0200
message:
  Update download links, try using dropbox
------------------------------------------------------------
revno: 8
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-10-17 16:49:41 +0200
message:
  Update the database download method. No testing yet, still bad code.
------------------------------------------------------------
revno: 7
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-10-17 13:40:41 +0200
message:
  Add the python script which create the file used by Narau to know the location of the database files.
  Add the first database information file.
------------------------------------------------------------
revno: 6
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-10-17 13:11:47 +0200
message:
  add bazaar ignore list
------------------------------------------------------------
revno: 5
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-10-17 12:53:09 +0200
message:
  Add direct download links to the kanjis/dictionary source files.
------------------------------------------------------------
revno: 4
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: narau
timestamp: Wed 2012-10-17 12:23:52 +0200
message:
  A working version of the FDroid package file. There is still one warning:
  W/ResourceType( 7861): No known package when getting value for resource number 0x01080049
------------------------------------------------------------
revno: 3
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: trunk
timestamp: Wed 2012-10-17 11:40:30 +0200
message:
  Update FDroid file (In progress...)
------------------------------------------------------------
revno: 2
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: trunk
timestamp: Wed 2012-10-17 11:12:43 +0200
message:
  Narau database builder: initial import
------------------------------------------------------------
revno: 1
committer: Yvon Tanguy <vono22@yahoo.fr>
branch nick: trunk
timestamp: Wed 2012-10-17 10:48:06 +0200
message:
  Initial import of version 0.5
------------------------------------------------------------
Use --include-merged or -n0 to see merged revisions.