-
Notifications
You must be signed in to change notification settings - Fork 33
/
ChangeLog
2185 lines (1568 loc) · 62.6 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 0.6 (November 2012):
* Improved user experience when zooming in or out.
* Dropped autotools build system.
* Moved maps into XDG application data folder.
* Various bug fixes.
Release 0.5:
* Removed tree view again, as it was causing too many bugs.
* Remove build-dependency on gnome-desktop.
2011-04-25 Matthias Vogelgesang <[email protected]>
* src/TextThought.py
* src/MainWindow.py:
Clean-up TextThought code in order to find font issue
2011-04-24 Matthias Vogelgesang <[email protected]>
* src/labyrinth.py
* src/MainWindow.py:
Add text domain to action group
2011-04-24 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py:
Fix double-clicking on thought
2011-04-24 Matthias Vogelgesang <[email protected]>
* src/Links.py
* src/MMapArea.py:
Fix issue 124 and fix regression that links could not be deleted
2011-04-24 Matthias Vogelgesang <[email protected]>
* po/pt_BR.po:
Really set to UTF-8
* configure.ac:
Prepare release candidate
2011-04-24 Matthias Vogelgesang <[email protected]>
* data/labyrinth-ui.xml
* src/MainWindow.py:
Removing 'delete from menu which interfered with application key
binding
2011-04-23 Matthias Vogelgesang <[email protected]>
* src/MainWindow.py
* src/MMapArea.py
* data/labyrinth-ui.xml:
Add Zoom-to-Fit functionality fixing issue 150
2011-04-23 Matthias Vogelgesang <[email protected]>
* src/MainWindow.py
* data/labyrinth-ui.xml:
Temporarily disable ResourceThoughts for an earlier release of 0.5
2011-04-23 Matthias Vogelgesang <[email protected]>
* src/TextThought.py:
Fix issue 136 with patch provided by Dennis Guse
2011-04-23 Matthias Vogelgesang <[email protected]>
* configure.ac:
Fix issue 143 with patch provided by CaptainM...
2011-04-23 Matthias Vogelgesang <[email protected]>
* src/Makefile.in:
Add ResourceThought
2011-04-23 Matthias Vogelgesang <[email protected]>
* src/MapList.py:
Fix issue 148 with Patch from "perlhead"
2011-04-23 Matthias Vogelgesang <[email protected]>
* src/*.py:
Respect PEP-8.
2011-04-23 Matthias Vogelgesang <[email protected]>
* src/MainWindow.py
* src/utils.py:
Replace deprecated libs
2009-03-08 Matthias Vogelgesang <[email protected]>
* data/labyrinth.glade
Fix Gtk warning
2009-02-28 Martin Schaaf <[email protected]>
* src/MMapArea.py
Used wrong variable name use height instead of heigth0. Thanks to
Kunshan Wang for the pointer.
2009-02-27 Matthias Vogelgesang <[email protected]>
* data/Makefile.am
Fix issue 132. Thanks again to Romain Tartiere.
2009-02-27 Matthias Vogelgesang <[email protected]>
* src/labyrinth.py
Fix issue 133. Thanks to Romain Tartiere.
2009-02-26 Martin Schaaf <[email protected]>
* src/MMapArea.py
Fix issue 135. Thanks to wks1985 for the patch.
2008-09-25 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Fix issue 126.
2008-08-10 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Fix issue 125.
2008-08-10 Matthias Vogelgesang <[email protected]>
* src/MainWindow.py
Set default size something lower so it works with netbook dimensions.
2008-07-21 Martin Schaaf <[email protected]>
* src/utils.py
* src/MainWindow.py
* src/MMapArea.py
o fix issue 86 by setting gnome theme default font
2008-07-21 Martin Schaaf <[email protected]>
* ChangeLog
o add missing entries
2008-07-16 Martin Schaaf <[email protected]>
* src/MMapArea.py
o fix background setting setted to foreground
o set gdk color as default not the tuple
2008-07-16 Martin Schaaf <[email protected]>
* src/MMapArea.py
o set "text" and "base" styles as foreground and backgroundcolor for widgets
with text like it is described in the documentation
2008-07-16 Martin Schaaf <[email protected]>
* src/TextThought.py
o fix if statement to use correct foreground var
2008-07-15 Martin Schaaf <[email protected]>
* src/TextThought.py
o fix issue 96 exception if text foreground color isn't set
2008-07-14 Martin Schaaf <[email protected]>
* src/MMapArea.py
* src/MainWindow.py
* src/TextThought.py
o fix AttributeErrors
o remember last selected font, fixes issue 119
2008-05-15 Matthias Vogelgesang <[email protected]>
* help/C/figures/lab_alignment.png
Add the alignment image.
2008-05-15 Matthias Vogelgesang <[email protected]>
* src/ResourceThought.py
Fix webpage loading on Fedora distributions. A protocol
must be given to load the page by the webbrowser module.
* help/C/labyrinth.xml
Add more help.
2008-05-13 Matthias Vogelgesang <[email protected]>
* src/ResourceThought.py
Allow editing of URIs.
* src/Links.py
Deselect links with Escape.
2008-05-12 Matthias Vogelgesang <[email protected]>
* help/C/labyrinth.xml
A paragraph about links. Remove top links for each
section.
2008-05-12 Matthias Vogelgesang <[email protected]>
* help/C/figures
* help/C/figures/lab_browser_start.png
* help/C/figures/lab_map_start.png
* help/C/labyrinth.xml
More help.
2008-05-12 Matthias Vogelgesang <[email protected]>
* src/Browser.py
* help/de
* help/de/de.po
* help/Makefile.am
* Makefile.am
* data/labyrinth.glade
Make help visible to users. Start german translation of help.
2008-05-06 Matthias Vogelgesang <[email protected]>
* src/MainWindow.py
Fix Issue 115.
2008-04-29 Matthias Vogelgesang <[email protected]>
* src/ResourceThought.py
* src/MainWindow.py
Fix severe bug on resource thought creation.
2008-04-29 Matthias Vogelgesang <[email protected]>
* src/ResourceThought.py
Allow editing of a resource thought through right click.
2008-04-20 Matthias Vogelgesang <[email protected]>
* src/ResourceThought.py
* src/TextThought.py
* src/MainWindow.py
* src/MMapArea.py
* src/utils.py
* data/labyrinth-ui.xml
* data/labyrinth.glade
Add resource thoughts, tackling issue 101.
2008-04-19 Matthias Vogelgesang <[email protected]>
* src/labyrinth.py
Minor cleanups like indentation.
2008-04-19 Matthias Vogelgesang <[email protected]>
* src/MainWindow.py
Small refactorizations.
2008-04-14 Matthias Vogelgesang <[email protected]>
* help/
Initial import of user manual.
2008-04-13 Matthias Vogelgesang <[email protected]>
* src/Browser.py
* src/MainWindow.py
Address some problems with the sidebar (Issue 94) such as
auto-showing and expanding.
2008-04-13 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Implemented issue 100. However it feels rather strange, so
it should be tested with users.
2008-04-11 Matthias Vogelgesang <[email protected]>
* src/DrawingThought.py
* src/Links.py
* src/TextBufferMarkup.py
* src/UndoManager.py
Refactorizations.
2008-04-11 Matthias Vogelgesang <[email protected]>
* src/Links.py
Add link colors through context menu.
2008-04-11 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
* src/MainWindow.py
Fixed outline treeview bugs and simplified its code.
2008-04-11 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Use a 1-pixel-wide border line for selection box.
2008-04-11 Martin Schaaf <[email protected]>
* src/MainWindow.py
Fix exception on maximizing loaded map by calling maximize on
the gtk window not on the labyrinth window object.
2008-04-10 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Fix bug and issue 109.
2008-04-10 Matthias Vogelgesang <[email protected]>
* src/MainWindow.py
* src/MMapArea.py
* data/labyrinth-ui.xml
* data/labyrinth.glade
Use Glade for the MapWindow. Added general alignment widgets.
2008-04-09 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Move multiple thoughts (fix issue 93). Introduced escape key
deselecting all thoughts.
2008-04-08 Matthias Vogelgesang <[email protected]>
* src/MainWindow.py
* src/MMapArea.py
* src/Browser.py
Save line/bezier state.
2008-04-08 Matthias Vogelgesang <[email protected]>
* src/UndoManager.py
* src/MainWindow.py
* src/MMapArea.py
* src/ImageThought.py
Add undo/redo to context sensitive menu. Use an image item for
change image.
2008-04-07 Matthias Vogelgesang <[email protected]>
* src/DrawingThought.py
* src/BaseThought.py
* src/MMapArea.py
* src/ImageThought.py
* src/TextThought.py
Started working on popup menus. Added image changing through
popup menu.
2008-04-06 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Fix bug and update model on thought deletion.
2008-04-06 Matthias Vogelgesang <[email protected]>
* src/MainWindow.py
* src/BaseThought.py
* src/MMapArea.py
* data/labyrinth-ui.xml
Add thought outline (activate throught view -> outline) for
a11y.
2008-04-05 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Fix critical bug and use default system font.
2008-04-05 Matthias Vogelgesang <[email protected]>
* src/MainWindow.py
* src/MMapArea.py
* data/labyrinth-ui.xml
* data/labyrinth.glade
Restructured menu bar according to the GNOME HIG.
2008-04-05 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
* src/TextThought.py
Fix theme colors. Use theme colors for text selection. Reduce
code.
2008-04-04 Matthias Vogelgesang <[email protected]>
* src/Links.py
Use theme colors for links too.
2008-04-04 Matthias Vogelgesang <[email protected]>
* src/utils.py
* src/MMapArea.py
* src/TextThought.py
Use Gtk theme colors and select according to GNOME's HIG.
2008-04-04 Matthias Vogelgesang <[email protected]>
* src/MainWindow.py
* src/MMapArea.py
Update link positions on bezier/line switch.
* po/labyrinth.pot
* po/de.po
Updated german translation.
2008-04-03 Matthias Vogelgesang <[email protected]>
* src/utils.py
* src/MainWindow.py
* src/BaseThought.py
* src/Links.py
* src/MMapArea.py
* data/labyrinth-ui.xml
Add bezier curves as stated in the ideas. It can be activated in the
edit menu.
2008-04-03 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Add alignment of thoughts, thus implementing Issue 87.
2008-04-03 Martin Schaaf <[email protected]>
* src/MapList.py
Refactoring of method _at_col_set_value.
2008-04-03 Matthias Vogelgesang <[email protected]>
* po/labyrinth.po
* po/de.po
* src/Browser.py
Translator credits.
* src/utils.py
* src/ImageThough.py
* src/DrawingThought.py
Simplifications.
2008-04-03 Matthias Vogelgesang <[email protected]>
* po/es.po
* po/LINGUAS
Added spanish translation by Peter Gordon.
2008-04-02 Matthias Vogelgesang <[email protected]>
* src/TextThought.py
Fix issue 92.
* po/de.po
Updated german translation.
2008-04-02 Matthias Vogelgesang <[email protected]>
* src/TextThought.py
Refactoring leads to -200 loc.
2008-04-02 Martin Schaaf <[email protected]>
* src/MapList.py
* src/MainWindow.py
Differentiate between index in MapList and index in browser (column
id). Column id is used as map index. Do not give an untitled map a
number. Calculate new column id from biggest existing column id.
Remove map title to map relation because it isn't used.
* src/Browser.py
Remove space in string.
2008-04-01 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Critical bug fixed. Couldn't deselect after selecting with box.
2008-03-31 Martin Schaaf <[email protected]>
* debian/chnagelog
Add all entries from the rc versions.
* configure.ac
Bump to 0.5.0dev version.
2008-03-31 Matthias Vogelgesang <[email protected]>
* data/labyrinth.glade
* src/MainWindow.py
Beautify drop dead ugly export dialog.
* src/utils.py
Simplification.
2008-03-29 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Inherit color from parent node.
2008-03-29 Martin Schaaf <[email protected]>
* src/TextThought.py
o set attribute to none or normal on unsetting (there is more work
todo)
2008-03-28 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Fix Issue 80 doing correct undo move.
* po/de.po
* po/labyrinth.pot
Update german translation.
2008-03-28 Martin Schaaf <[email protected]>
* src/labyrinth.py
o check for pygtk version before gtk is imported like it is said in
the pygtk FAQ, fixes Issue 82
2008-03-28 Martin Schaaf <[email protected]>
* src/Makefile.am
o add missing file for distribution creation
2008-03-27 Martin Schaaf <[email protected]>
* src/MapList.py
o fix renaming of thought
* src/Browser.py
o raise a AttributeError instead of a deprecated String
2008-03-27 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Fix problem when selecting through an object thus creating a link.
* ChangeLog
Correct changelog date of Martin's last entry.
2008-03-27 Martin Schaaf <[email protected]>
* src/TextThought.py
* src/MMapArea.py
* src/BaseThought.py
* src/MainWindow.py
* src/TextBufferMarkup.py
o add font selection support for thoughts, fixes issue 79
o change attributes instead of inserting, fixes hopefully issue 53
2008-03-26 Don Scorgie <[email protected]>
* src/Browser.py:
Only remember browser window size
using gconf when not running
under Windows (gconf isn't available
there. We need another solution)
2008-03-25 Matthias Vogelgesang <[email protected]>
* src/utils.py
* src/MapList.py
* src/MainWindow.py
* src/Browser.py
* src/ImageThought.py
Export maps with images as tarball.
2008-03-25 Martin Schaaf <[email protected]>
* src/ImageThought.py
* src/TextThought.py
* src/DrawingThought.py
* src/utils.py
o show a bigger border if a thought has extended info, fixes issue 33
2008-03-24 Matthias Vogelgesang <[email protected]>
* src/Browser.py
Allow resizing.
2008-03-24 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Add bounding box selection.
2008-03-24 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
More optimizations for issue 55. Partial redraw is done on editing and
selecting and off-screen clipping has been simplified.
2008-03-23 Matthias Vogelgesang <[email protected]>
* src/Links.py
Fixes issue 62. Links are not selected if not clicked.
2008-03-23 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Off-screen clipping works for other scale factors too, but only in
horizontal direction.
2008-03-23 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Fixed bug introduced with last revision.
2008-03-23 Matthias Vogelgesang <[email protected]>
* src/MMapArea.py
Don't draw off-screen thoughts. It is still a bit whacky and not working for
scales other than 1.0.
2008-03-23 Martin Schaaf <[email protected]>
* src/Browser.py
o remember map sort order, fixes issue 75
o catch exception if map is empty on file_save_cb
2008-03-23 Martin Schaaf <[email protected]>
* src/PeriodicSaveThread.py
* src/MainwindowThread.py
o save open maps every 60 seconds, fixing issue 64
2008-03-23 Martin Schaaf <[email protected]>
* debian/changelog
* configure.ac
o pump to version 0.4.0rc4
* src/ImageThought.py
* src/utils.py
o convert pixel array from pixbuf rgb order to cairo rgb order on exporting
2008-03-22 Martin Schaaf <[email protected]>
* debian/changelog
* configure.ac
o pump to version 0.4.0rc3
* src/ImageThought.py
o ignore if an image isn't exportable
2008-03-22 Matthias Vogelgesang <[email protected]>
* debian/control
Add python-gconf dependency.
2008-03-22 Matthias Vogelgesang <[email protected]>
* src/MapList.py
* src/Browser.py
Save configuration via gconf.
2008-03-21 Martin Schaaf <[email protected]>
* src/ImageThought.py
o export also bitmaps to cairo surface (pdf, svg), but there is a small color problem
2008-03-21 Martin Schaaf <[email protected]>
* debian/control
o add newer standard version
* src/ImageThought.py
o fix exception by only replace whole text if a parent node exist
2008-03-21 Martin Schaaf <[email protected]>
* debian/*
o add debian package management support
* configure.ac
o set version to 0.4.0rc2
2008-03-21 Matthias Vogelgesang <[email protected]>
* src/MainWindow.py
Add export to pdf.
2008-03-21 Matthias Vogelgesang <[email protected]>
* src/MapList.py
* src/Browser.py
Save and load browser size, fixing issue 18
2008-03-21 Martin Schaaf <[email protected]>
* src/DrawingThought.py
* src/MainWindow.py
* src/utils.py
* src/ImageThought.py
* src/TextThought.py
o add svg export (patch by Matthias Vogelgesang)
2008-03-21 Don Scorgie <[email protected]>
* src/TextThought.py:
* src/BaseThought.py:
* src/Links.py:
* src/DrawingThought.py:
Fix potential exception on map opening
* src/DrawingThought.py:
Give all points their own unique colour
* src/MMapArea.py:
Update the colour selectors when loading
a map
2008-03-21 Martin Schaaf <[email protected]>
* src/DrawingThought.py
* src/MainWindow.py
* src/MMapArea.py
* src/Browser.py
* src/ImageThought.py
* src/TextThought.py
* data/labyrinth-ui.xml
* data/labyrinth.glade
o add import/export of maps (patch by Matthias Vogelgesang)
* Authors
o added Matthias Vogelgesang and me
2008-03-20 Martin Schaaf <[email protected]>
* src/MMapArea.py
o check for attribute transform on coord transformation
* src/MainWindow.py
o fix color update if a thought is selected that doesn't have background or foreground colors
2008-03-18 Martin Schaaf <[email protected]>
* src/MMapArea.py
* src/MainWindow.py
o update color button when selecting thought (patch by Matthias Vogelgesang)
2008-03-03 Martin Schaaf <[email protected]>
* ChangeLog
o add missing entries
2008-02-18 Don Scorgie <[email protected]>
* src/MMapArea.py:
Fix backspace and delete when not
editing
2008-02-14 Martin Schaaf <[email protected]>
* /svn_ignore
add eclipse files to svn ignore
2008-02-14 Martin Schaaf <[email protected]>
* src/Links.py
set line witdth after link drawing back to original size
2008-02-14 Martin Schaaf <[email protected]>
* src/MainWindow.py
* src/MMapArea.py
* src/*Thought.py
* src/utils.py
* src/Links.py
add foreground and background color selection/setting support
2008-02-04 Martin Schaaf <[email protected]>
* src/MainWindow.py
* src/MMapArea.py
o allow deletion of links
o add some checks before deletion
o catch attribute error exceptions in some cases where not only thoughts are expected
2008-02-04 Martin Schaaf <[email protected]>
* src/MMapArea.py
o test for link element in child nodes, fixes bug introduced with
last commit for element checking in dom tree
2008-02-04 Martin Schaaf <[email protected]>
* src/MainWindow.py
* src/MMapArea.py
o catch AttributeError in get_selection_bounds when it is called with link object
o fix todo to check if a link exists before its deletion
o only delete thoughts by selcting Edit/DeleteThoughts (fixes issue 66)
o revert the last fix for link edit and add a better one
2008-02-03 Martin Schaaf <[email protected]>
* src/MainWindow.py
o set edit menu entries insensitive, when they cannot be used with the selected object
2008-01-31 Martin Schaaf <[email protected]>
* src/MapList.py:
o fix for Issue 68 - delete map corrupts open list
2007-05-21 Don Scorgie <[email protected]>
* src/MapList.py:
Oops. Broke creating new maps. Fixed.
2007-05-16 Don Scorgie <[email protected]>
* data/labyrinth.glade:
* src/Browser.py:
Remove Quit button from toolbar (as per HIG)
Fixes issue #44 (patch from Jean-François Fortin Tam)
2007-05-15 Don Scorgie <[email protected]>
* src/MapList.py:
* src/Browser.py:
Add searching in Browser window (issue #58)
Add "Last Modified" column and allow sorting by it and name (issue #59)
* src/MainWindow.py:
* data/labyrinth-ui.xml:
Add undo / redo to toolbar as an experiment (issue #60)
Increase size of initial window slightly to fit better
* src/MainWindow.py:
Use gtk+ built-in zooming actions (issue #63)
* src/MainWindow.py:
* src/Browser.py:
Don't ellipsize text in Browser while still space available (issue #61)
* src/MainWindow.py:
Attempt to reduce "over" movement when scrolling (slightly but not a huge
amount better)
* src/Links.py:
Fix disappearing thoughts when links selection code fails
(It still fails, but less so now) Partial fix for issue #62
* src/MMapArea.py:
Add initial thought navigation using arrow keys
2007-04-17 Don Scorgie <[email protected]>
* src/TextThought.py:
Fix thought boundaries when using attributes
Don't process (control) key presses when not editing
-Later- Fix byte table rebuilding in the presence of "undecipherable"
characters as Python puts it. Basically, add a try-except block to
ensure the character is correctly tested
2007-04-06 Don Scorgie <[email protected]>
* src/MMapArea.py:
* src/Links.py:
Add key filtering for +/- keys to increase / decrease
link strength (when selected)
* src/MMapArea.py:
* src/Links.py:
* src/BaseThought.py:
First pass at link selection
Able to select links (with think rectangle drawn around them)
BaseThought and MMapArea have minor modifications to support
Link selection
* src/TextThought.py:
Update attributes properly when using the mouse
to move the cursor
2007-04-06 Don Scorgie <[email protected]>
Merge of Windows-support branch:
* Windows/COPYING.txt:
* Windows/defs.py:
* Windows/lab.iss:
* Windows/labyrinth.lnk:
* Windows/labyrinth.bat:
* Windows/labyrinth.ico:
* Windows/WinSetup.bat:
* Windows/winsetup.py:
Add files for Windows build
* src/Browser.py:
* src/labyrinth.py:
* src/MainWindow.py:
* src/TextThought.py:
* src/utils.py:
Various fixes required to build and run on Windows properly
2007-04-05 Don Scorgie <[email protected]>
* src/TextThought.py:
Fix stupid bug to make text selection work
2007-04-05 Don Scorgie <[email protected]>
* src/MainWindow.py:
* src/MMapArea.py:
* src/TextThought.py:
* src/TextBufferMarkup.py:
Add support for italics and underline
* doc/TheFuture:
Rework goals for 0.4 release
2007-04-05 Don Scorgie <[email protected]>
* src/MMapArea.py:
Only update cursor type when the type has changes
(Patch from Kamila Chyla)
2007-04-05 Don Scorgie <[email protected]>
* AUTHORS:
* doc/TheFuture:
Minor updates (correct email, add tick)
* src/TextBufferMarkup.py:
Total rewrite from scratch. The old one wasn't as shiny
and didn't really do what I wanted
New one is smaller and does what is needed
Add support for enboldening and framework for other
text attributes
* src/DrawingThought.py:
* src/ImageThought.py:
* src/BaseThought.py:
Update to use new extended buffer properly
* src/UndoManager.py:
Handle text attributes properly
Combine translation / rotations
* src/MainWindow.py:
Un-disable Bold button
Add support for enabling and disabling Bold (along with other attributes)
Add undo support for translations and scaling
* src/MMapArea.py:
New signal to tell the Bold widget to enable when we want it to
Add undo transform (translate / scale)
Allow bold to be set in thoughts
* src/TextThought.py:
Update to use new extended buffer
Enable bold in text thoughts themselves
Shift some stuff around to work with the attributes
Add framework for further attribute work
2007-03-28 Don Scorgie <[email protected]>
* src/utils.py:
Make intermediate dirs for savedir (should fix issue #50)
2007-03-11 Don Scorgie <[email protected]>
* src/Browser.py:
* src/DrawingThought.py:
* src/ImageThought.py:
* src/TextThought.py:
* src/MMapArea.py:
* src/Links.py:
* src/prefs.py:
* src/MainWindow.py:
* src/UndoManager.py:
* src/labyrinth.py:
* doc/FileFormat:
* AUTHORS:
Updated my email address to new address
* src/MainWindow.py:
* src/MMapArea.py:
* src/UndoMAnager.py:
Enable undo / redo of scaling and translation
2007-03-10 Don Scorgie <[email protected]>
* src/BaseThought.py:
* src/ImageThought.py:
* src/DrawingThought.py:
* src/TextThought.py:
* src/MMapArea.py:
Various misc fixes to make all thoughts
work with transforms properly
* src/Mainindow.py:
* src/MMapArea.py:
Add arrows around main area for translation
Fix scaling properly
Translate using button 2 (middle button) instead
of ctrl-button 1
* src/MainWindow.py:
* src/MMapArea.py:
* src/TextThought.py:
* data/labyrinth-ui.xml:
Add initial support for scaling canvas and translating
on canvas (infinte-scroll canvas)
2006-11-25 Don Scorgie <[email protected]>
* src/Links.py:
* src/MainWindow.py:
Remove (incorrect) interpreter invocations
These files shouldn't be called outside of
labyrinth anyway (in normal circumstances)
2006-11-15 Don Scorgie <[email protected]>
* src/Links.py:
Only try and calculate ends on loading
if both parent and child exists (issue #34)