-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
1781 lines (1039 loc) · 42.8 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
2017-11-20 nerijus
* strip whitespace when searching
2014-04-08 nerijus
* PyXML is no longer needed
2006-02-15 18:29 mjoc
* lib/gui/mainwin.py, po/lt.po, po/opendict.pot: Window "Edit
Dicitonaries" renamed to "Create Dictionaries".
2006-02-14 15:17 mjoc
* po/: lt.po, opendict.pot: Translation updated.
2006-02-13 02:08 nerijus
* lib/gui/mainwin.py: clear search field on ESC, implements feature
request 1351220
2006-02-12 22:10 nerijus
* po/lt.po, win32/setup.manifest.py, win32/setup.py: Version
changed to 0.6.1
2006-02-12 20:59 mjoc
* po/: lt.po, opendict.pot: Translation (po) file updated.
2006-02-12 20:56 mjoc
* lib/gui/dictconnwin.py, po/opendict.pot: Bug fix: encoding has
not been really used after chaning it in DictConnection dialog.
2006-02-12 02:53 mjoc
* ChangeLog, opendict.1, po/lt.po, po/opendict.pot: Manual page
added. ChangeLog updated.
2006-01-28 16:45 mjoc
* opendict.py, lib/info.py, lib/logger.py, lib/gui/dictconnwin.py,
lib/gui/helpwin.py, lib/gui/mainwin.py: 1. Debug logger messages
minimized; 2. DICT connection window sets encoding on the main
window menu; 3. Version changed to 0.6.1;
2006-01-08 23:12 nerijus
* lib/misc.py: fixed spelling
2006-01-08 14:14 mjoc
* lib/config.py, lib/gui/dictconnwin.py, po/lt.po, po/opendict.pot:
DICT connection window changes: 1) New encoding selection entry
added. 2) Windows remembers last server and encoding used.
2005-12-26 20:04 nerijus
* lib/: misc.py, parser.py, gui/mainwin.py: fixed grammar
2005-12-26 19:42 nerijus
* lib/parser.py: removed duplicated line
2005-11-10 13:45 mjoc
* lib/parser.py: If invalid line is found while parsing Slowo
format dictionary, error message is written to system.log. Until
this bug fix exception had not been cached.
2005-11-02 22:12 mjoc
* copying.html: FSF address updated.
2005-11-02 21:58 mjoc
* lib/: tests/test_editor.py, extra/html2text.py: First line with
#!/exec/path removed.
2005-10-26 00:19 nerijus
* win32/compile.bat: copy msvcr71.dll
2005-10-25 17:42 mjoc
* TODO.txt, opendict.py, po/opendict.pot: Very small changes: one
more todo item, etc.
2005-10-25 16:51 nerijus
* win32/: setup.manifest.py, setup.py: updated version to 0.6.0
2005-10-24 22:39 mjoc
* ChangeLog: New ChangeLog generated using cvs2cl utility.
2005-10-24 22:04 mjoc
* lib/gui/mainwin.py, po/lt.po, po/opendict.pot: Show/Hide button
removed (hidden) from the main window, menu item of the same
functionality added. Lithuanian translation updated.
2005-10-20 18:26 mjoc
* lib/info.py: Version changed to 0.6.0. Going to release stable
version 0.6.0.
2005-10-20 18:22 mjoc
* misc/opendict.desktop: Name changed from "OpenDict" to
"Dictionary OpenDict". More intuitive.
2005-09-06 22:59 mjoc
* doc/Plugin-HOWTO.html: Simple plugin example section written.
Needs more detailed instructions in the future.
2005-08-31 11:39 mjoc
* doc/Plugin-HOWTO.html: Introduction, Types od OpenDict
Dictionaries and Plain Dictionary Example sections written.
2005-08-30 00:27 mjoc
* doc/: OpenDict_plugin_dev.txt, Plugin-HOWTO.html,
Specification.txt: Old plugin-dev doc removed, spefication
removed, new plugin-dev howto added (not finished yet).
2005-08-17 19:46 mjoc
* pixmaps/: icon-24x24.png, icon-32x32.png, icon-48x48.png,
icon-620x620.png, icon-96x96.png, SVG/icon-rune.svg: Icon
improved a bit by adding some color transitioning.
2005-08-06 23:37 mjoc
* TODO.txt, lib/gui/mainwin.py, lib/gui/prefswin.py, po/lt.po,
po/opendict.pot: Option for default clipboard scanner use added
into preferences window.
2005-08-05 22:02 mjoc
* TODO.txt, lib/info.py, lib/gui/mainwin.py, po/opendict.pot:
Version changed to 0.5.9-CVS, clipboard-scanned text is trimmed
before searching for translation. New TODO entries added.
2005-06-14 00:47 nerijus
* README.txt, TODO.txt: updated README; converted to unix line
endings
2005-06-13 23:58 nerijus
* README.txt, opendict.py, lib/info.py: improved error message when
PyXML is missing, so thhat Fedora users know which package they
are missing; bumped version to 0.5.8
2005-06-10 23:35 mjoc
* lib/tests/data/sampleplugin/sample.py: Sample plugin for unit
testing updated to work with new module tree after adding 'lib'
to import path.
2005-06-10 23:17 mjoc
* po/: lt.po, opendict.pot: lt.po merging conflict resolved.
2005-06-10 23:10 mjoc
* AUTHORS.txt: Added authors file.
2005-06-10 23:04 mjoc
* ChangeLog, lib/gui/helpwin.py, lib/gui/mainwin.py, po/lt.po,
po/opendict.pot: 1. Controls are enabled before showing search
results 2. Nerijus B. added to authors list.
2005-05-31 14:34 nerijus
* opendict.py: ask unicode wx version; it still can use ansi
version if unicode is not available
2005-05-24 18:05 nerijus
* Makefile: simplified install/uninstall
2005-05-16 21:53 mjoc
* lib/info.py, lib/newplugin.py, lib/util.py, lib/gui/mainwin.py,
po/lt.po, po/opendict.pot: wx.EndBusyCursor bug fixed, no error
message on Windows build. Name correction is not used until
correct functionality is achieved.
2005-04-29 03:18 nerijus
* win32/setup.py: no changes
2005-04-29 03:16 nerijus
* win32/: compile.bat, setup.manifest.py: added setup script with
manifest
2005-04-29 02:27 nerijus
* win32/compile.bat: copy license file manually
2005-04-29 02:09 nerijus
* win32/compile.bat: encodings work with py2exe
2005-04-28 06:03 nerijus
* lib/info.py: py2exe now works
2005-04-28 05:58 nerijus
* opendict.py, lib/info.py, win32/compile.bat, win32/setup.py:
py2exe now works
2005-04-27 18:56 mjoc
* opendict.py: wxPython 2.5 is selected only if application is not
frozen (i.e. compiled using py2exe)
2005-04-27 18:46 mjoc
* opendict.py, lib/enc.py: OpenDict now supports wxPython
multiversioning. If both wxPython 2.4 and 2.5 are installed on
the same system, version 2.5 is used.
2005-04-27 15:54 nerijus
* win32/make.py: use python24
2005-04-27 01:02 mjoc
* lib/gui/helpwin.py: One more developer Nerijus Baliunas added to
"Thanks" window.
2005-04-27 00:43 mjoc
* lib/newplugin.py: Some plugins were not working because of
deleted sys.modules item after loading plugin. Now just old item
is deleted _before_ loding it.
2005-04-27 00:25 mjoc
* lib/config.py, lib/info.py, po/opendict.pot: Version changed to
0.5.8-CVS, default window size smaller (370x550)
2005-04-27 00:08 mjoc
* opendict.py, lib/installer.py, lib/newplugin.py,
lib/plaindict.py, lib/util.py, lib/gui/mainwin.py,
lib/gui/miscwin.py, po/lt.po, po/opendict.pot: InvalidDictWindow
improved: one can remove invalid directories by pressing Remove
button. Small bug fixes.
2005-04-26 19:13 mjoc
* ChangeLog: ChangeLog added.
2005-04-26 19:10 mjoc
* opendict.py, lib/installer.py, lib/xmltools.py,
lib/gui/prefswin.py, po/Makefile, po/lt.po, po/opendict.pot: 1.
Default dictionary value encoding fixed. 2. wxPython version is
checked using wx module and wxPython on failure.
2005-04-24 14:21 mjoc
* README.txt: New information for Windows users added.
2005-04-23 21:17 mjoc
* opendict.py, lib/tests/test_editor.py, lib/tests/test_plugin.py,
po/opendict.pot: Removed code using "from wxPython import *"
imported objects.
2005-04-23 21:02 mjoc
* win32/compile.bat: Windows batch file for simplifying py2exe
process added.
2005-04-22 00:45 mjoc
* lib/gui/mainwin.py, po/lt.po, po/opendict.pot: LT translation
updated, small changes.
2005-04-22 00:37 mjoc
* lib/gui/dicteditorwin.py, po/lt.po, po/opendict.pot: Lithuanian
translation updated.
2005-04-21 22:49 mjoc
* opendict.py, lib/gui/mainwin.py, lib/gui/pluginwin.py: 1. After
dict installation Install button is disabled. 2. wxPython
version is written to log when starting 3. Dict manager clears
info about dict after removing it
2005-04-17 01:59 mjoc
* README.txt, TODO.txt: README and TODO updated.
2005-04-17 01:55 mjoc
* lib/errortype.py, lib/util.py, lib/gui/mainwin.py, po/lt.po,
po/opendict.pot: Additional translating strings updated.
2005-04-17 01:36 mjoc
* lib/errortype.py, lib/util.py, lib/gui/pluginwin.py, po/lt.po,
po/opendict.pot: Lithuanian translation updated. Few bus fixed.
2005-04-17 00:50 mjoc
* lib/gui/dictconnwin.py: Grammar mistake fixed: Connectio
2005-04-16 23:16 mjoc
* po/: lt.po, opendict.pot: Translation updated.
2005-04-11 13:12 mjoc
* lib/gui/mainwin.py, po/opendict.pot: Trailing '\r' removed from
mainwin.py, opendict.pot updated.
2005-04-10 11:30 mjoc
* po/unix_proceed.sh: Removed.
2005-04-10 11:08 mjoc
* po/: messages.pot, opendict.pot: po/lt/ directory removed,
message.pot removed, opendict.pot added.
2005-04-10 11:03 mjoc
* po/: Makefile, lt.po: opendict.po not removed.
2005-04-09 23:48 mjoc
* opendict.py, lib/info.py, lib/logger.py, lib/util.py: Needed
directories are created before proceeding with app load.
2005-04-02 19:54 mjoc
* opendict.py: Import error bug fix for showing error message about
old wxPython version.
2005-04-02 00:25 mjoc
* lib/util.py: AgreementManager removes non existent directories.
2005-04-01 20:49 mjoc
* lib/: config.py, gui/mainwin.py, gui/pluginwin.py,
gui/prefswin.py: URL for dictionaries list file is taken from
configuration file now. Small improvements of output messages.
2005-03-31 22:14 mjoc
* lib/gui/mainwin.py: MainWindow.loadDictionary(): returns if
dictInstance is None.
2005-03-31 20:49 mjoc
* lib/gui/mainwin.py: Error message about invalid dictinaries
enhanced.
2005-03-29 19:56 mjoc
* opendict.py, lib/gui/mainwin.py: Very small bug fix in grammar
(message about invalid dictionaries).
2005-03-28 00:29 mjoc
* lib/gui/: dicteditorwin.py, mainwin.py: "Save As" button added to
DictEditor.
2005-03-27 23:38 mjoc
* Makefile: New Makefile style.
2005-03-27 23:36 mjoc
* po/: Makefile, lt.po: Makefile for translation files added.
2005-03-27 23:28 mjoc
* lib/: installer.py, gui/mainwin.py: Error message is shown when
word fails to be encoded in dictionary's own encoding.
2005-03-27 16:51 mjoc
* lib/gui/pluginwin.py: Dictionaries are sorted by name in both
views.
2005-03-27 16:41 mjoc
* lib/gui/mainwin.py: Menu item form scanning clipboard renamed to
"Take ..."
2005-03-27 16:33 mjoc
* lib/gui/prefswin.py: Dictionary list is sorted in
PreferencesWindow.
2005-03-27 15:58 mjoc
* lib/gui/mainwin.py: Font size is increased using Ctrl-= instead
of Ctrl-+.
2005-03-27 15:25 mjoc
* lib/: config.py, gui/prefswin.py: Removed groups and registers
setting from configuration as it is outdated and not used
anymore.
2005-03-27 15:13 mjoc
* lib/gui/mainwin.py: Tooltips added from text entry and lookup
button.
2005-03-27 14:50 mjoc
* lib/gui/: helpwin.py, mainwin.py: Minimal window width is a bit
smaller (320 pixels), "Lookup Up" menu item bug fixed,
LicenceWindow widget arrangement improved.
2005-03-27 14:17 mjoc
* lib/gui/mainwin.py: MainWindow can be resized to even more
smaller window, "Search" button renamed to "Lookup Up" button.
"Not Found" message is shown even if plugin does not return error
code.
2005-03-27 04:00 mjoc
* lib/gui/helpwin.py: Thanks page added to CreditsWindow.
2005-03-27 02:39 mjoc
* lib/: xmltools.py, gui/helpwin.py: 1. Buttons made smaller in
AboutWindow. 2. Index is written in binary mode.
2005-03-27 02:33 mjoc
* lib/gui/: mainwin.py, pluginwin.py: Clipboard scan feature added.
2005-03-26 23:47 mjoc
* pixmaps/icon-32x32.png: 32x32 size icon added, for Windows
platform.
2005-03-26 21:52 mjoc
* scripts/make-addons-list.py: [no log message]
2005-03-26 21:29 mjoc
* scripts/make-addons-list.py: Bug fix, didn't fetched description
from plugins.
2005-03-26 21:06 mjoc
* opendict.py, lib/newplugin.py, lib/gui/dicteditorwin.py,
lib/gui/mainwin.py, lib/gui/pluginwin.py: 1. Error dialog added
to notify about failed dictionaries 2. Wildcard bug fixed for
DictEditor
2005-03-26 20:37 mjoc
* lib/: util.py, gui/helpwin.py, gui/mainwin.py, gui/pluginwin.py:
1. Font style fixed for AboutWindow, didn't work on Windows
platform. 2. Plugin ZIP files are opened in binary mode, didn't
work on Windows too.
2005-03-26 20:31 mjoc
* lib/gui/mainwin.py: After selecting a word busy cursor is
started.
2005-03-26 20:27 mjoc
* pixmaps/hide.png: Forgotten to upload in the past.
2005-03-26 18:33 mjoc
* opendict.py, lib/config.py, lib/dicttype.py, lib/encodings.py,
lib/group.py, lib/installer.py, lib/logger.py, lib/meta.py,
lib/mywords.py, lib/newplugin.py, lib/parser.py,
lib/plaindict.py, lib/util.py, lib/xmltools.py,
lib/gui/dictaddwin.py, lib/gui/dictconnwin.py,
lib/gui/dicteditorwin.py, lib/gui/errorwin.py,
lib/gui/groupswin.py, lib/gui/helpwin.py, lib/gui/mainwin.py,
lib/gui/miscwin.py, lib/gui/mywordswin.py, lib/gui/pluginwin.py,
lib/gui/prefswin.py: Now lib/ dir is imported before any module
because of problems with some same named built-in modules (i.e.
parser) on Windows platform. Old files removed.
2005-03-26 18:06 mjoc
* lib/__init__.py: Added, as lib dir is going to be imported
itself.
2005-03-26 17:08 mjoc
* lib/tests/test_editor.py: test_save changed to compare lengths.
2005-03-26 17:04 mjoc
* lib/: plugin.py, register.py: Removed, not usable anymore.
2005-03-26 17:02 mjoc
* opendict.py, lib/config.py, lib/info.py, lib/installer.py,
lib/newplugin.py, lib/gui/helpwin.py, lib/gui/mainwin.py: 1.
Global home directory is now the directory where opendict.py is
located. 2. Old plugin.py and register.py are not imported
anywhere.
2005-03-23 00:06 mjoc
* lib/gui/pluginwin.py, scripts/make-addons-list.py: PluginWindow
remembers addons variable after closing. Addons script outputs to
opendict-add-ons.xml.
2005-03-22 23:47 mjoc
* scripts/make-addons-list.py: Several bug fixes and improvements.
2005-03-22 23:10 mjoc
* scripts/make-addons-list.py: Script for auto-generating addons
list added.
2005-03-22 14:37 mjoc
* TODO.txt: New TODO entry.
2005-03-22 02:34 mjoc
* lib/gui/pluginwin.py: I'm not sure if this is fixed now, but
sometime download progress dialog does not close. For the moment
it works correctly.
2005-03-22 02:15 mjoc
* lib/: util.py, gui/pluginwin.py: Status messages improved.
2005-03-22 01:29 mjoc
* lib/installer.py: Custom installation support for dictionaries
added. Runs install.install() if founds install.py.
2005-03-21 22:58 mjoc
* TODO.txt, lib/errortype.py, lib/installer.py, lib/parser.py,
lib/gui/mainwin.py: DictParser fixed, word is not encoded twice
anymore.
2005-03-21 21:10 mjoc
* lib/: util.py, gui/pluginwin.py: 1. "Done" is shown when
DownloadManager finishes download. 2. No message is shown after
cancelling file download.
2005-03-21 21:05 mjoc
* lib/gui/: dicteditorwin.py, mainwin.py: Busy cursor is shown
while loading dictionary in main window and opening file in
editor window.
2005-03-21 20:55 mjoc
* lib/gui/dictconnwin.py: Error dialog is shown if unable to
connect to server.
2005-03-21 20:39 mjoc
* lib/parser.py: MovaParser fixed, word is not encoded
2005-03-21 11:40 mjoc
* lib/: parser.py, plaindict.py, gui/mainwin.py: Small
improvements.
2005-03-20 18:30 mjoc
* lib/gui/mainwin.py: Standard "Find" stock button replaced with
simple "Search" button.
2005-03-20 18:12 mjoc
* lib/: config.py, gui/mainwin.py: "Find" item added to "File"
menu.
2005-03-16 20:57 mjoc
* lib/: installer.py, gui/mainwin.py, gui/pluginwin.py: Dictionary
name is added to installed list on PluginWindow after installing
new dictionary from PluginWindow.
2005-03-16 19:52 mjoc
* lib/: installer.py, plaindict.py, xmltools.py, gui/pluginwin.py:
Description support for registers added.
2005-03-16 19:09 mjoc
* Makefile, lib/installer.py, lib/newplugin.py, lib/plaindict.py,
lib/xmltools.py, lib/gui/mainwin.py, lib/gui/pluginwin.py: 1.
Version and authors info support to registers added. 2. Bugfixes
and improvements in PluginWindow.
2005-03-16 17:03 mjoc
* lib/gui/miscwin.py: Miscellaneous GUI classes.
2005-03-11 22:58 mjoc
* lib/gui/: helpwin.py, prefswin.py: Very small GUI improvements.
2005-03-11 21:28 mjoc
* copying.html, copying.txt, lib/gui/helpwin.py: 1. GNU GPL is
shown in HTML window 2. Removed licence text version 3. Added
licence HTML version
2005-03-11 21:09 mjoc
* opendict.py, lib/info.py, lib/meta.py, lib/newplugin.py,
lib/plaindict.py, lib/util.py, lib/xmltools.py,
lib/gui/mainwin.py, lib/gui/pluginwin.py: 1. Licence agreement
subsystem added for ability to add licence agreement for register
or plugin. 2. File path is made to be found automatically when
not defined for registered ddictionaries and plugins.
2005-03-11 18:28 mjoc
* ChangeLog: Changelog file is generated from CVS logs.
2005-03-11 18:16 mjoc
* lib/gui/: mainwin.py, pluginwin.py, prefswin.py: Loads default
dictionary on startup. Normal font bug fixed.
2005-03-07 11:25 mjoc
* ChangeLog, opendict.py, lib/installer.py, lib/newplugin.py,
lib/plaindict.py, lib/util.py, lib/xmltools.py,
lib/gui/dicteditorwin.py, lib/gui/helpwin.py, lib/gui/mainwin.py,
lib/gui/pluginwin.py, lib/gui/prefswin.py: Lots of small changes.
2005-03-04 17:31 mjoc
* ChangeLog, lib/gui/mainwin.py: Small changes.
2005-03-04 17:29 mjoc
* lib/gui/: helpwin.py, mainwin.py: Close button in LicenceWindow
right-aligned.
2005-03-04 17:26 mjoc
* lib/gui/prefswin.py: Buttons are right-aligned in
PreferencesWindow.
2005-03-04 17:24 mjoc
* lib/gui/prefswin.py: "Save" button removed from
PreferencesWindow.
2005-03-04 17:15 mjoc
* lib/: installer.py, gui/mainwin.py, gui/pluginwin.py: "Install
From File" button added to PluginManager.
2005-03-04 16:59 mjoc
* TODO.txt, lib/dicttype.py, lib/meta.py, lib/parser.py,
lib/plaindict.py, lib/gui/mainwin.py: New function added for
writing current dictionary configuration to disk. It is used
after indexing and changing text encoding now.
2005-03-04 15:47 mjoc
* lib/config.py: Window size/position are now saved by default.
2005-03-04 15:46 mjoc
* lib/gui/mainwin.py: Font face/size changing fixed after damage
while rewriting configuration hanfler.
2005-03-04 13:32 mjoc
* lib/gui/mainwin.py: Sash position is saved only if word list is
not hidden when exiting.
2005-03-04 11:36 mjoc
* lib/gui/pluginwin.py: OpenDict repository opendict-addons.xml
file URL changed to
http://files.akl.lt/~mjoc/OpenDict/Data/opendict-addons.xml.
Temporarily.
2005-03-03 09:27 mjoc
* lib/: config.py, gui/mainwin.py: Small fixes.
2005-03-03 09:15 mjoc
* pixmaps/stop.png: Stop PNG icon added.
2005-03-03 08:52 mjoc
* lib/: config.py, gui/dictconnwin.py, gui/prefswin.py: Finished
with DictConnectionWindow after reimpelenting new configuration
handler.
2005-03-03 01:49 mjoc
* lib/misc.py: Unsaved changes commited.
2005-03-03 01:34 mjoc
* opendict.py, lib/config.py, lib/misc.py, lib/xmltools.py,
lib/gui/mainwin.py, lib/gui/prefswin.py: Configuration subsystem
rewritten. Now configuration is stored in XML file.
2005-03-02 23:44 mjoc
* lib/gui/mainwin.py: Stop button added.
2005-03-02 23:33 mjoc
* lib/gui/mainwin.py: Search history for entry field enabled.
2005-03-02 23:21 mjoc
* lib/gui/helpwin.py: About window Credits section unicode problem
fixed.
2005-03-02 23:15 mjoc
* lib/: errortype.py, parser.py, gui/dictconnwin.py,
gui/mainwin.py: 1. DictConnectionWindow fixed and improved. 2.
Other small changes.
2005-03-01 00:28 mjoc
* lib/gui/pluginwin.py: [no log message]
2005-03-01 00:26 mjoc
* lib/: dicteditor.py, gui/dicteditorwin.py, gui/pluginwin.py:
Editor window almost read for real using.
2005-02-28 22:29 mjoc
* opendict.py, lib/installer.py, lib/gui/pluginwin.py: 1. Installer
notificates about successful installation 2. PluginManager
remembers available dictionaries list for one session
2005-02-27 22:24 mjoc
* lib/gui/: dicteditorwin.py, mainwin.py, pluginwin.py: 1.
PluginManager and DictEditor uses icon 2. Main window title is
set using titleTemplate
2005-02-27 14:59 mjoc
* lib/: dicteditor.py, gui/dicteditorwin.py, gui/mainwin.py,
tests/test_editor.py: 1. New editor tests 2. Small MainWindow
changes 3. EditorWindow improvements
2005-02-23 23:32 mjoc
* lib/gui/dicteditorwin.py: [no log message]
2005-02-23 23:32 mjoc
* TODO.txt, lib/installer.py, lib/newplugin.py: Editor window
improved, some other small improvements.
2005-02-22 23:18 mjoc
* lib/: dicteditor.py, gui/dicteditorwin.py, gui/mainwin.py,
tests/test_editor.py, tests/test_plugin.py,
tests/data/plugin.xml, tests/data/sampleplugin/plugin.xml: Editor
window interface uses Editor class (not finished), tests fixed.
2005-02-22 22:23 mjoc
* lib/: dicteditor.py, gui/dicteditorwin.py, gui/mainwin.py: Editor
class, separate from GUI, added
2005-02-22 22:21 mjoc
* lib/tests/data/sampledict.dwa: Sample dict for testing added
2005-02-22 22:20 mjoc
* lib/tests/test_editor.py: Editor test added.
2005-02-18 18:16 mjoc
* lib/: installer.py, plaindict.py, gui/pluginwin.py: Installer
fixed to recongnize normal and plain dict plugins.
2005-02-17 10:23 mjoc
* pixmaps/: icon-24x24.png, icon-48x48.png, icon-620x620.png,
icon-96x96.png, SVG/icon-rune.svg: Icon color is made to be more
yellow.
2005-02-16 21:00 mjoc
* opendict.py, lib/info.py: Error report is shown when Python/XML
module is not found.
2005-02-16 14:53 mjoc
* opendict.py: If wxPython library is not installed, user-friendly
message is outputed now.
2005-02-15 19:51 mjoc
* lib/: errortype.py, installer.py, parser.py, plaindict.py,
xmltools.py, gui/mainwin.py, gui/pluginwin.py: Plain/normal
plugin installation system started.
2005-02-15 18:48 mjoc
* pixmaps/: icon-24x24.png, icon-48x48.png, icon-620x620.png,
icon-96x96.png: New PNGs made.
2005-02-15 18:45 mjoc
* pixmaps/SVG/icon-rune.svg: Pages edges thinned.
2005-02-15 18:39 mjoc
* pixmaps/SVG/icon-rune.svg: New icon with rune (sun) added.
2005-02-15 11:11 mjoc
* pixmaps/SVG/icon.svg: Borders are even stronger now.
2005-02-15 10:57 mjoc
* pixmaps/SVG/icon.svg: Book border made stronger.
2005-02-13 01:22 mjoc
* run-opendict: run-script removed.
2005-02-13 01:21 mjoc
* lib/gui/: errorwin.py, pluginwin.py: Ability to fetch add-ons
list added.
2005-02-13 00:13 mjoc
* opendict.py, lib/meta.py, lib/newplugin.py, lib/xmltools.py,
lib/gui/pluginwin.py: * Add-ons list XML parser written * This
parser integrated into pluginwin.py * Small fixes
2005-02-12 22:11 mjoc
* opendict.py, lib/installer.py, lib/newplugin.py, lib/parser.py,
lib/plaindict.py, lib/gui/mainwin.py, lib/gui/pluginwin.py:
Logger integrated in mainwin.py, newplugin.py, plaindict.py
2005-02-12 21:09 mjoc
* opendict.py: Logger integrated.
2005-02-12 21:08 mjoc
* lib/logger.py: Logger functions added.
2005-02-12 18:30 mjoc
* lib/: errortype.py, gui/pluginwin.py: Information about
dictionaries showing fixed.
2005-02-11 20:23 mjoc
* opendict.py, lib/newplugin.py, lib/gui/mainwin.py: Some bug
fixes.
2005-02-11 09:49 mjoc
* pixmaps/: icon-24x24.png, icon-48x48.png, icon-620x620.png,
icon-96x96.png, SVG/icon.svg: Icons renewed.
2005-02-08 23:25 mjoc
* lib/gui/mainwin.py: Started using wx.NewId(), not finished
2005-02-08 23:13 mjoc
* misc/opendict.desktop: .desktop file updated.
2005-02-08 23:10 mjoc
* opendict.py, lib/installer.py, lib/newplugin.py,
lib/plaindict.py, lib/plugin.py, lib/util.py,
lib/gui/dictaddwin.py, lib/gui/mainwin.py, lib/gui/pluginwin.py:
Ability to remove dictionaries added (new style)
2005-02-08 20:10 mjoc
* opendict.py, lib/gui/mainwin.py, lib/gui/pluginwin.py:
PluginManager window changes: installed and avail splitted using
notebook.
2005-02-08 08:54 mjoc
* lib/gui/pluginwin.py: Small changes on Plugin Manager.
2005-02-08 00:06 mjoc
* lib/gui/pluginwin.py: Plugin window improved (buttons, list
width)
2005-02-07 23:07 mjoc
* lib/: installer.py, misc.py, parser.py, gui/mainwin.py,
gui/pluginwin.py: Plugin manager window enhanced.
2005-02-06 01:47 mjoc
* lib/: dicttype.py, errortype.py, installer.py, misc.py,
parser.py, plaindict.py, gui/mainwin.py, gui/pluginwin.py: 1.
DictParser rewritten to be more functional 2. TMXParser disabled
3. Plugin manager started rewriting
2005-02-05 20:15 mjoc
* lib/: installer.py, plaindict.py, xmltools.py: XML configs are
now written using PrettyPrint.
2005-02-05 19:25 mjoc
* lib/parser.py: SlowoParser rewritten.
2005-02-04 16:32 mjoc
* lib/parser.py: Reimplementing SlowoParser.
2005-02-04 13:40 mjoc
* TODO.txt: New ideas.
2005-02-04 13:33 mjoc
* TODO.txt, lib/parser.py: Minor changes.
2005-02-04 13:09 mjoc
* lib/: installer.py, util.py: Needed directories are checked and
created before installing dictionaries.
2005-02-04 12:35 mjoc
* opendict.py, lib/gui/mainwin.py: Minor changes.
2005-02-04 11:25 mjoc
* opendict.py, lib/gui/mainwin.py: wxPython 2.4 is not supported
anymore.
2005-02-04 02:41 mjoc
* lib/: dicttype.py, parser.py, plaindict.py, xmltools.py,
gui/errorwin.py, gui/mainwin.py: Serveral changes: 1. Indexing
(not finished) 2. MovaParser
2005-02-03 03:00 mjoc
* opendict.py, lib/meta.py, lib/parser.py, lib/gui/mainwin.py: 1.
MovaParser almost fixed 2. Related changes
2005-02-03 01:10 mjoc
* opendict.py, lib/installer.py, lib/meta.py, lib/newplugin.py,
lib/plaindict.py, lib/plugin.py, lib/util.py, lib/gui/mainwin.py:
Dictionaries installation unified
2005-02-02 23:54 mjoc
* lib/tests/test_plugin.py: ./test_plugin.py added (tests suite)
2005-02-02 23:53 mjoc