~ubuntu-branches/ubuntu/karmic/labyrinth/karmic

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
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
2008-04-01 Matthias Vogelgesang <matthias.vogelgesang@gmail.com>

	* src/MMapArea.py
	Critical bug fixed. Couldn't deselect after selecting with box.
	
2008-03-31 Martin Schaaf <mascha@ma-scha.de>

	* configure.ac
	* debian/changelog
	Bump version to 0.4.0.

2008-03-29 Matthias Vogelgesang <matthias.vogelgesang@gmail.com>

	* src/MainWindow.py
	* src/utils.py
	* data/labyrinth.glade
	Sync with trunk.

2008-03-28 Matthias Vogelgesang <matthias.vogelgesang@gmail.com>

	* src/MMapArea.py
	Fix Issue 80 doing correct undo move.
	* po/de.po
	* po/labyrinth.pot
	Update german translation.

2008-03-28 Martin Schaaf <mascha@ma-scha.de>

	* 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 <mascha@ma-scha.de>

	* configure.ac
	* debian/changelog
	o bumb version to 0.4.0rc7

2008-03-28 Martin Schaaf <mascha@ma-scha.de>

	* src/Makefile.am
	o add missing file for distribution creation

2008-03-27 Martin Schaaf <mascha@ma-scha.de>

	* src/MapList.py
	o fix renaming of thought
	* src/Browser.py
	o raise a AttributeError instead of a deprecated String

2008-03-27 Martin Schaaf <mascha@ma-scha.de>

	* configure.ac
	* debian/changelog
	o bumb version to 0.4.0rc6

2008-03-27 Matthias Vogelgesang <matthias.vogelgesang@gmail.com>

	* src/MMapArea.py
	Sync with trunk. Added selection box.

2008-03-25 Martin Schaaf <mascha@ma-scha.de>

	* 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-25 Martin Schaaf <mascha@ma-scha.de>

	* configure.ac
	* debian/changelog
	o bumb version to 0.4.0rc5

2008-03-25 Matthias Vogelgesang <matthias.vogelgesang@gmail.com>

	* src/utils.py
	* src/MapList.py
	* src/MainWindow.py
	* src/Browser.py
	* src/ImageThought.py
	* po/de.po
	* po/labyrinth.pot
	Export maps with images as tarball. Sync with trunk.

2008-03-25 Martin Schaaf <mascha@ma-scha.de>

	* 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 <matthias.vogelgesang@gmail.com>

	* 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 <matthias.vogelgesang@gmail.com>

	* src/Links.py
	Fixes issue 62. Links are not selected if not clicked. 

2008-03-23 Matthias Vogelgesang <matthias.vogelgesang@gmail.com>

	* src/MMapArea.py
	Off-screen clipping works for other scale factors too, but only in
	horizontal direction.

2008-03-23 Matthias Vogelgesang <matthias.vogelgesang@gmail.com>

	* src/MMapArea.py
	Fixed bug introduced with last revision.

2008-03-23 Matthias Vogelgesang <matthias.vogelgesang@gmail.com>

	* 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 <mascha@ma-scha.de>

	* 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 <mascha@ma-scha.de>

	* src/PeriodicSaveThread.py
	* src/MainwindowThread.py
	o save open maps every 60 seconds, fixing issue 64

2008-03-23 Martin Schaaf <mascha@ma-scha.de>

	* 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 <mascha@ma-scha.de>

	* 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 <matthias.vogelgesang@gmail.com>

	* debian/control
	Add python-gconf dependency.

2008-03-22 Matthias Vogelgesang <matthias.vogelgesang@gmail.com>

	* src/MapList.py
	* src/Browser.py
	Save configuration via gconf.

2008-03-21 Martin Schaaf <mascha@ma-scha.de>

	* src/ImageThought.py
	o export also bitmaps to cairo surface (pdf, svg), but there is a small color problem

2008-03-21 Martin Schaaf <mascha@ma-scha.de>

	* 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 <mascha@ma-scha.de>

	* debian/*
	o add debian package management support
	* configure.ac
	o set version to 0.4.0rc2

2008-03-21 Matthias Vogelgesang <matthias.vogelgesang@gmail.com>

	* src/MainWindow.py
	Add export to pdf.

2008-03-21 Matthias Vogelgesang <matthias.vogelgesang@gmail.com>

	* src/MapList.py
	* src/Browser.py
	Save and load browser size, fixing issue 18

2008-03-21 Martin Schaaf <mascha@ma-scha.de>

	* 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  <Don@Scorgie.org>

	* 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 <mascha@ma-scha.de>

	* 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 <mascha@ma-scha.de>

	* 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 <mascha@ma-scha.de>

	* src/MMapArea.py
	* src/MainWindow.py
	o update color button when selecting thought (patch by Matthias Vogelgesang)

2008-03-03 Martin Schaaf <mascha@ma-scha.de>

	* ChangeLog
	o add missing entries

2008-02-18  Don Scorgie  <Don@Scorgie.org>

	* src/MMapArea.py: 
	Fix backspace and delete when not
	editing

2008-02-14 Martin Schaaf <mascha@ma-scha.de>

	* /svn_ignore
	add eclipse files to svn ignore 	

2008-02-14 Martin Schaaf <mascha@ma-scha.de>

	* src/Links.py
	set line witdth after link drawing back to original size 	

2008-02-14 Martin Schaaf <mascha@ma-scha.de>

	* 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 <mascha@ma-scha.de>

	* 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 <mascha@ma-scha.de>

	* 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 <mascha@ma-scha.de>

	* 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 <mascha@ma-scha.de>

	* src/MainWindow.py
	o set edit menu entries insensitive, when they cannot be used with the selected object 	

2008-01-31 Martin Schaaf <mascha@ma-scha.de>

	* src/MapList.py:
	o fix for Issue 68 - delete map corrupts open list 	

2007-05-21 Don Scorgie <Don@Scorgie.org>

	* src/MapList.py:
	Oops.  Broke creating new maps.  Fixed.
	
2007-05-16 Don Scorgie <Don@Scorgie.org>

	* 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 <Don@Scorgie.org>

	* 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 <Don@Scorgie.org>

	* 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 <Don@Scorgie.org>

	* 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 <Don@Scorgie.org>

	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 <Don@Scorgie.org>

	* src/TextThought.py:
	Fix stupid bug to make text selection work


2007-04-05 Don Scorgie <Don@Scorgie.org>

	* 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 <Don@Scorgie.org>

	* src/MMapArea.py:
	Only update cursor type when the type has changes
	(Patch from Kamila Chyla)

2007-04-05 Don Scorgie <Don@Scorgie.org>

	* 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 <Don@Scorgie.org>

	* src/utils.py:
	Make intermediate dirs for savedir (should fix issue #50)

2007-03-11  Don Scorgie  <Don@Scorgie.org>

	* 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 <Don@Scorgie.org>

	* 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 <DonScorgie@Blueyonder.co.uk>

    * 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 <DonScorgie@Blueyonder.co.uk>

	* src/Links.py:
	Only try and calculate ends on loading
	if both parent and child exists (issue #34)

	* src/MapList.py:
	Don't calculate the number of nodes within a map
	It's not used and seems to cause problems with some maps
	( issue #36)

=========== V0.3 ===========
2006-11-13 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* configure.ac:
	* NEWS:
	Bump Version
	Prepare for 0.3 release

	* data/Makefile.am:
	Fix make distcheck (add uninstall rule)

	* doc/TheFuture:
	* README:
	Update for 0.3 release


2006-11-12 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/MMapArea.py:
	* src/labyrinth.py:
	* src/Browser.py:
	Fix thought numbers on loading.  Again.  Sigh (issue #32
	and previously issue #6)
	Fix loading of maps from the command line

	* src/MainWindow.py:
	Make export dialog work again (issue #29)

2006-11-08 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/utils.py:
	* src/TextThought.py:
	Use Tango palette colours, which are slightly
	less jarring, though feel somewhat strange ;)
	Text selection is still bright red
	Primary thought is "Butter"
	Selected thoughts are "Sky Blue"

	* src/MMapArea.py:
	Add an implicit "current_root" which acts as the
	anchor for new thoughts without being selected

	* src/MainWindow.py:
	Only set / change the mode with pygtk versions > 2.8
	as the function was apparently only introduced
	during 2.10

2006-11-07 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* data/labyrinth-ui.xml:
	* src/MainWindow.py:
	* src/MMapArea.py:
	Add "(Un)Link Thoughts" menu item
	which links or unlinks thoughts when
	2 (and only 2) thoughts are selected
	shortcut: ctrl-L (for want of a better one)

	* data/labyrinth.glade:
	Follow global toolbar style prefs in
	browser window (Jean-François Fortin Tam)

	* src/DrawingThought.py:
	Add erase mode using shift key
	Add erase action to undo list

2006-11-06 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/Browser.py:
	* src/MainWindow.py:
	Fix a couple of typos and unclear messages
	Issue #28 - Josef Vybíral

	* src/MainWindow.py:
	* src/Browser.py:
	* src/utils.py:
	* data/labyrinth-ui.xml:
	* data/labyrinth.glade:
	New, improved Browser window
	Move "Help->About" to Browser window.  Remove from map windows
	Based heavily on a patch from Jean-François Fortin Tam.  Issue #15

	* src/MainWindow.py:
	* data/labyrinth-ui.xml:
	Remove Quit and New actions.  Remove their callbacks
	- New hasn't worked for a while anyway and Quit
	has been removed for a while
	Convert several menu items to use stock labels

2006-11-05 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/TextThought.py:
	Don't draw selected text when
	not editing

	* src/MMapArea.py:
	Implement ctrl-a when no thought
	is being edited

	* src/TextThought.py:
	implement ctrl-a in thoughts.
	Various improvments in handling
	arrow keys

	* src/TextThought.py:
	Make backspace work again at end of text

	* src/TextBufferMarkup.py:
	* src/DrawingThought.py:
	* src/UndoManager.py:
	* src/MainWindow.py:
	* src/BaseThought.py:
	* src/ImageThought.py:
	* src/TextThought.py:
	* src/MMapArea.py:
	* src/Makefile.am:
	* data/labyrinth-ui.xml:
	Add undo and redo capabilities
	Each action should be mirrored properly
	Thought selection across undo's may be somewhat
	shaky and inconsistant.
	There are probably also many bugs still in the
	implementation

	* src/Links.py:
	Clean up old Links class


2006-11-04 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/TextThought.py:
	Hook up remaining (interesting) signals from IMContext
	Insert preedit text where appropriate (including all the
	shiny pango attrs that go with it)

	* src/TextThought.py:
	Check the function return for get_direction, not just the function
	address.  Oops.

	* src/MainWindow.py:
	* src/Browser.py:
	* data/labyrinth-ui.xml:
	* data/labyrinth.glade:
	New, improved Browser window
	Add "Convert" to export to image (currently)
	Move "Help->About" to Browser window.  Remove from map windows
	Based hevily on a patch from "nekohayo".  Issue #15

	* src/MainWindow.py:
	* src/Browser.py:
	* data/labyrinth-ui.xml:
	* data/labyrinth.glade:
	New, improved Browser window
	Add "Convert" to export to image (currently)
	Move "Help->About" to Browser window.  Remove from map windows
	Based hevily on a patch from "nekohayo".  Issue #15

	* src/BaseThought.py:
	Don't print events - just pass silently

	* src/TextThought.py:
	* src/BaseThought.py:
	* src/MMapArea.py:
	* src/prefs.py:
	* src/labyrinth.py:
	* src/Makefile.am:
	Catch (temporarily) im_context signals and dump to terminal
	Add prefs.py to calculate / store preferences
	Add RTL mode when in a RTL environment -
	right edge anchored and edit sign displayed in
	top right corner
	Mixing RTL and LTR doesn't work so well yet.

	* src/MainWindow.py:
	Fix creation of new maps - MapNumber wasn't referenced
	properly

	* src/DrawingThought.py:
	* src/utils.py:
	* src/MainWindow.py:
	* src/BaseThought.py:
	* src/Links.py:
	* src/Browser.py:
	* src/MMapArea.py:
	* src/ImageThought.py:
	* src/TextThought.py:
	* data/labyrinth-ui.xml:
	Merge of "Rework" branch.
	Architecture rework of MMapArea and Thoughts
	Fixes (hopefully) many problems encountered thus far
	In addition, new features that have fallen out:
	- Kill Move mode.
	 - In edit mode, single click selects
	 - Single click + drag moves
	 - Double click edits
	 - Single click with ctrl drags a link
	- Multiple selection of thoughts is now possible
	  using shift and ctrl keys
	 - When multiple thoughts selected, extended buffer
	   clears and becomes insensitive
	- Don't recalculate every text thought's text every
	  redraw.  Reduces CPU load significantly
	- Cursor changes happen on mouse-over
	- More cursor changes than you can shake a stick at
	- Middle clicking pastes primary selection text when possible
	- Thought heirarchy goes by selection order.  Thoughts selected
	  more recently appear in front of thought that appear less recently
	- Framework in place for popup menus (though none appear yet)
	- Framework in place to select links (though not done yet)
	Bug fixes included are:
	- Don't "jerk" thoughts around when moving.  Moving is much
	  smoother now (#19)
	- Escape key finishes editing a thought (#23)
	- Backspace at the start of text kills things.  Delete at end of
	  text ditto (#25)
	- Fix a fairly strange bug in resizing images using the top-right corner

2006-10-23 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/TrayIcon.py:
	* src/labyrinth.py:
	* src/utils.py:
	* src/MapList.py:
	* src/MainWindow.py:
	* src/Makefile.am:
	* src/Browser.py:
	Massive update to Browser from Andreas Sliwka
	Split into MVC style: MapList contains the maps
	Browser only shows them
	Add debug_print function
	Move defs stuff into utils
	Add optional TrayIcon (disabled by default: --use-tray-icon)

2006-10-21 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* README:
	Added "License" section at the top of the file

	* data/labyrinth.svg:
	* data/labyrinth-24.png:
	* data/labyrinth-22.png:
	* data/labyrinth-16.png:
	Shiny new icon from Josef Vybíral
	(icon released under GNU GPL v2)

    * src/Makefile.am:
    Add TextBufferMarkup.py (Issue #16)
    Thanks to "jmalonzo" for spotting :)


2006-10-19 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/MainWindow.py:
	Don't complain if no selection is made in extended buffer
	and edit menu is opened with focus on extended buffer

	* src/BaseThought.py:
	* src/DrawingThought.py:
	* src/ImageThought.py:
	Adapt to fit new text entry stuff (pass im_context to
	begin_edit which isn't called for other thought types)

	* src/MMapArea.py:
	* src/TextThought.py:
	New text entry stuff.  Pass all keystrokes
	through an IM Context.  Picks up dead keys
	and unicode entry (though no cool underlines u atm).
	Update view entirely when > 1 key is pressed in
	quick succession
	Construct a byte table in text thoughts to handle
	proper deletion / selection / movement within
	multibyte characters


2006-10-18 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/BaseThought.py:
	Fix typo in docstring (Thanks to Rob Tirrell)


2006-10-17 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/MainWindow.py:
	* src/BaseThought.py:
	* src/TextBufferMarkup.py:
	* src/MMapArea.py:
	* data/labyrinth-ui.xml:
	Implement cut / copy / paste for thoughts and extended buffer
	New menu - "Edit" for copy etc., delete thought and View Extended
	Minor edit of TextBufferMarkup
	Clipboard works for both primary selection and main clipboard :)


	* doc/TheFuture:
	A few minor updates from the Export stuff below

	* src/MainWindow.py:
	* src/BaseThought.py:
	* src/DrawingThought.py:
	* src/Links.py:
	* src/utils.py:
	* src/Browser.py:
	* src/MMapArea.py:
	* src/ImageThought.py:
	* src/TextThought.py:
	* data/labyrinth-ui.xml:
	* data/labyrinth.glade:
	Implement "Export as Image" in File menu.
	Supports png and jpg.  Whether supported is determined
	based on file extension.  Initial file name comes from
	map title.
	Export dialog is in glade file (need to move glade stuff
	into utils!)
	Not fully finished - spin boxes need hooked up
	Several new methods in all thought classes (update_bbox,
	export, get_max_area)


2006-10-16 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/MMapArea.py:
	When loading, ensure nthoughts > actual thoughts on canvas
	Don't create duplicate thought numbers.  Maybe fix issue #6 (possibly)

	* src/DrawingThought.py:
	Don't draw multiple copies of drawings when saved / loaded

	* src/MainWindow.py:
	Fix maximised restore across 2 saves

	Merge of "Further Info" personal branch.  This is an
	experiment into adding a "More Info" text area to the
	bottom of Map windows (when the user requests it).
	It also includes several other minor features.
	These are outlined below (main stuff described
	below all entries).  Sorry for the long entry
	* doc/TheFuture:
	Updated what's done.  Added new "non-feature" section

	* src/MainWindow.py:
	Save and restore maximised state of windows
	Remove old "number_windows" function
	* src/BaseThought.py:
	* src/DrawingThought.py:
	* src/TextBufferMarkup.py:
	* src/Browser.py:
	Don't display window.  Let window display itself
	* src/MMapArea.py:
	* src/ImageThought.py:
	* src/TextThought.py:
	* data/labyrinth-ui.xml:
	Add "Drawing Mode" and "Add Image" to Mode menu
	(All): Add "more info" option to Mode menu.  When selected,
	add a text entry to bottom of window (resizeable) to add further
	info to a thought.  Save and restore this option.  Save and
	restore text buffer across instances.  Add new toolbar to bottom
	of window that will (in future) allow text to be bold, italics etc.
	Allow saving of these text properties (in future) using TextBufferMarkup.py,
	borrowed from Gourmet Recipe Manager (http://grecipe-manager.sourceforge.net/)
	Note: This isn't final.  There is still quite a bit of work to do in it
	It's in a workable state though, so I'm committing.

2006-10-13 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/MMapArea.py:
	Update view when thought deleted (got lost somewhere along the line)

	* doc/TheFuture:
	Update - Text selection now works (damned ugly thought)

	* src/TextThought.py:
	* src/MMapArea.py:
	Make text selection with cursor by dragging work properly

	* src/BaseThought.py:
	* src/DrawingThought.py:
	* src/ImageThought.py:
	Add "selected" callback to thoughts.  Used for notification when
	the user selects the thought.  Makes text selection much easier
	Make thought.handle_movement return a bool indicating whether
	movement was in fact handled


	* src/TextThought.py:
	Fix delete key with no selection enabled

	* src/TextThought.py:
	Allow index to go to end of text / line when user requests it
	with mouse selection of text

	*  src/BaseThought.py:
	* src/MMapArea.py:
	* src/TextThought.py:
	Rework lots of stuff to allow beginning of text selection with
	mouse.  Right now, only moves the "index".  Pressing shift + clicking
	will select a range.  Click-dragging will not.  Yet.
	Doesn't obey current selected areas either yet.

	* src/TextThought.py:
	Handle text selection using keyboard navigation
	(Ignore the hideous colour for now ;)

	* src/BaseThought.py:
	* src/DrawingThought.py:
	* src/ImageThought.py:
	* src/MMapArea.py:
	Pass modifier mask when handling keystrokes

2006-10-12 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/labyrinth.py:
	Only import utils once labyrinth knows where to look

2006-10-11 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/BaseThought.py:
	* src/DrawingThought.py:
	* src/utils.py:
	* src/MMapArea.py:
	* src/ImageThought.py:
	* src/TextThought.py:
	Split out drawing of thought outlines (into utils.py)
	Standardise (somewhat more) on what ul and lr really mean
	Fix resizing of drawing thoughts in edit mode

	* src/labyrinth.py:
	Make current path clearer in terminal printing

	* src/Makefile.am:
	Really regenerate defs.py and labyrinth when configure is run
	Might (hopefully) fix issue #1

	* src/labyrinth.py:
	* src/Browser.py:
	Add new command line options:
	-o / --open: open a map from the given (full) path and filename
	-m / --map: open a map with the filename from the internal "database"
	(Based on patch from Kevin Kubasik.  Fixes issue #3)

	* src/MainWindow.py:
	Add (stupid) icons to toolbar entries.
	Temporarily improves issue #2 until gtk+ fixes it


2006-10-10 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* doc/TheFuture:
	* doc/FileFormat:
	Rejig to be more readable in 80-column format

	* doc/TheFuture:
	List of goals for 1.0 release


2006-10-08 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/MainWindow.py:
	* src/Browser.py:
	Add missing strings to translations


======= Version 0.2 ======================
2006-10-06 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* configure.ac:
	Bump version

	* src/MainWindow.py:
	Actually set the window icon properly.  No, really this time

	* src/Browser.py:
	Make 'Open' and 'Delete' buttons only sensitive when a map is selected

	* src/ImageThought.py:
	Gracefully handle case where image file isn't available (display empty thought)

	* src/MMapArea.py:
	When bad (unended) links are loaded, assume them to be broken and remove them properly

	* po/POTFILES.in:
	Add ImageThought as it now contains translatable strings

	* doc/TheFuture:
	Update for v0.2

	* doc/FileFormat:
	Add new file (incomplete) describing the save format for Labyrinth maps

	* doc/Makefile.am:
	Add FileFormat to EXTRA_DIST

	* src/MainWindow.py:
	* src/Browser.py:
	* src/labyrinth.py:
	Fix uninstalled mode.  Silence glade warning when not really a warning

	* src/labyrinth.py:
	fix i18n stuff.  Hopefully.

2006-10-04 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* Browser.py:
	* MainWindow.py:
	Fix window icon

	* configure.ac:
	* src/MainWindow.py:
	* src/labyrinth.py:
	* src/DrawingThought.py:
	* src/Browser.py:
	* src/MMapArea.py:
	* src/ImageThought.py:
	* src/TextThought.py:
	* Makefile.am:
	* po/LINGUAS:
	* po/ChangeLog:
	* po/POTFILES.in:
	Add i18n framework.  Maybe.

	* src/Browser.py:
	Only activate 'Open' and 'Delete' when an item is selected

	* src/MMapArea.py:
	* src/MainWindow.py:
	Set mode back properly when image is inserted

	* src/MMapArea.py:
	Only allow drawing in "Drawing" mode.  In edit mode, allow linking thoughts instead

	* src/Browser.py:
	* src/MainWindow.py:
	Set icon for browser and windows to be Labyrinth icon


2006-10-03 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/MainWindow.py:
	* src/BaseThought.py:
	* src/DrawingThought.py:
	* src/Links.py:
	* src/Makefile.am:
	* src/MMapArea.py:
	* src/ImageThought.py:
	* src/TextThought.py:
	* data/labyrinth-ui.xml:
	Add DrawingThought.  Add "Drawing Mode" to toolbar
	Attempt to fix various problems with XML loading in all thought types
	Various code cleanups
	Make removing links work properly again (I hope)


2006-09-25 Don Scorgie <DonScorgie@Blueyonder.co.uk>

    * src/TextThought.py:
    Fix corner rounding when a thought only contains an 'i'
    * src/MMapArea.py:
    Fix problem when loading a map stuck in "AddImage" mode


2006-09-13 Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* src/MMapArea.py:
	Use the FileChooser instead of the old, nasty FileSelector

	* src/ImageThought.py:
	* src/TextThought.py:
	Curve the corners of thoughts slightly.  Makes the entire thing slightly prettier
	and less intimidating

	* src/ImageThought.py:
	Clip title to only be actual filename (ignore path and suffix)

	* src/BaseThought.py:
	* src/MMapArea.py:
	* src/ImageThought.py:
	Add a cursor change when resizing images, reflecting direction of change


	* src/BaseThought.py:
	* src/MMapArea.py:
	* src/ImageThought.py:
	Make loading and saving of image thoughts work.  Fingers crossed.
	Should work.
	Cleanup temp stuff from BaseThought

	* src/TextThought.py:
	* src/ImageThought.py:
	Make links originate and end in the center of thoughts
	which looks so much cooler :)

	* src/MainWindow.py:
	* src/BaseThought.py:
	* src/Makefile.am:
	* src/MMapArea.py:
	* src/ImageThought.py:
	Beginnings of an Image Thought.  New mode: "Add Image".  Dosn't drop out when image added though :(
	In edit mode, image can be resized
	In mode mode, image is moved
	Links are screwed up
	Doesn't save or load (hence still screws up any maps using them)
	Can't add text to images

    * src/MMapArea.py:
    Fix typo (Rogi Lemar)

    * src/BaseThought.py:
    * src/MainWindow.py:
    * src/MMapArea.py:
    * src/TextThought.py:
    New base thought type: resizable.  Will be used to contain drawings and images
    Hook up "New Image" Button to (temporarily) draw a basic resizable thought
    Fit everything else in required
    - Click-dragging (in edit mode) near a resizable thoughts edge will allow it to be resized
    - Move mode works as expected
    WARNING: as the resizable thought isn't fully supported, its likely to corrupt maps if used
    WARNING: No, really, any use of resizable thoughts is likely to destroy maps, creating random links
             and screwing everything up (They also aren't saved)

2006-09-09 Don Scorgie <DonScorgie@Blueyonder.co.uk>

    * src/MainWindow.py:
	* data/labyrinth-ui.xml:
	Added "add image" button in preperation for future work

    * src/Makefile.am:
    * src/defs.py.in:
	Fix compilation once again.  Sigh


2006-09-06  Don Scorgie <DonScorgie@Blueyonder.co.uk>

	* configure.ac:
	* src/Makefile.am:
	* src/defs.py.in:
	Make defs get generated properly.  Hopefully (taken from Alacarte)

	* src/Links.py:
	Import TextThought instead of Thoughts

	* data/labyrinth-??.png:
	* data/labyrinth.svg:
	* data/labyrinth.desktop.in:
	Add these vital files.  Labyrinth should now show up in the Applications->Office menu
	Complete with its own (very ugly) icon

	* data/Makefile.am:
	Update to install icons and desktop file

	* TextThought.py:
	* MMapArea.py:
	Move Thoughts.py to new file
	Update MMapArea to use the file

	* BaseThought.py:
	New file: Base class for thoughts

    * Thoughts.py:
    * MMapArea.py:
    Update to use BaseThought.  Rename Thought to TextThought

	* MMapArea.py:
	* Thoughts.py:
	Draw links behind thoughts to make thoughts feel more solid

	* MMapArea.py:
	Don't redraw on mouse motion when not watching
	Only redraw every 1/40th second to stop from hammering X server

2006-08-29  Don Scorgie  <DonScorgie@Blueyonder.co.uk>

	* Initial Import into new home on Google

What follows is the svn log dumped from the repo on my machine.  Don't judge it too harshly ;)

------------------------------------------------------------------------
r85 | don | 2006-08-28 16:16:00 +0100 (Mon, 28 Aug 2006) | 2 lines

Oops forgot to add in md5sums.

------------------------------------------------------------------------
r84 | don | 2006-08-28 16:01:54 +0100 (Mon, 28 Aug 2006) | 2 lines

Update web page a little.  Bump version up to 0.1.

------------------------------------------------------------------------
r83 | don | 2006-08-28 14:03:40 +0100 (Mon, 28 Aug 2006) | 2 lines

Add 2 new screenshots showing the browser and current map window

------------------------------------------------------------------------
r82 | don | 2006-08-28 12:47:41 +0100 (Mon, 28 Aug 2006) | 2 lines

Fix spelling mistake

------------------------------------------------------------------------
r81 | don | 2006-08-28 12:46:40 +0100 (Mon, 28 Aug 2006) | 2 lines

More README update

------------------------------------------------------------------------
r80 | don | 2006-08-28 12:37:17 +0100 (Mon, 28 Aug 2006) | 2 lines

Make the about dialog go away when requested

------------------------------------------------------------------------
r79 | don | 2006-08-28 12:31:15 +0100 (Mon, 28 Aug 2006) | 2 lines

Minor addition to configure.ac

------------------------------------------------------------------------
r78 | don | 2006-08-28 12:29:53 +0100 (Mon, 28 Aug 2006) | 2 lines

Make installation actually work (hopefully)

------------------------------------------------------------------------
r77 | don | 2006-08-28 12:14:41 +0100 (Mon, 28 Aug 2006) | 3 lines

Remove Quit from menu in map windows
Try and fix installation again.  Fail :(

------------------------------------------------------------------------
r76 | don | 2006-08-27 20:23:09 +0100 (Sun, 27 Aug 2006) | 2 lines

Update README and TheFuture a little more in light of the new browser

------------------------------------------------------------------------
r75 | don | 2006-08-27 18:43:15 +0100 (Sun, 27 Aug 2006) | 2 lines

Stupid work-around to make maps save when open and quit is selected

------------------------------------------------------------------------
r74 | don | 2006-08-27 15:48:36 +0100 (Sun, 27 Aug 2006) | 3 lines

Update glade to make prettier.  Slightly.
Make rows respond to activation

------------------------------------------------------------------------
r73 | don | 2006-08-26 16:07:15 +0100 (Sat, 26 Aug 2006) | 2 lines

More browser work.  Hooked up most of the signals required.

------------------------------------------------------------------------
r72 | don | 2006-08-26 14:26:58 +0100 (Sat, 26 Aug 2006) | 5 lines

Updated configure, README

First pass at Browser.  Not too shabby though.  Doesn't work just yet,
but give it time

------------------------------------------------------------------------
r71 | don | 2006-08-24 22:03:02 +0100 (Thu, 24 Aug 2006) | 4 lines

Update a couple of comments
Add new TheFuture entry for current (soon) release
Update NEWS for new release

------------------------------------------------------------------------
r70 | don | 2006-08-24 21:36:37 +0100 (Thu, 24 Aug 2006) | 2 lines

Remove old cruft

------------------------------------------------------------------------
r69 | don | 2006-08-24 21:30:12 +0100 (Thu, 24 Aug 2006) | 3 lines

Move functions.py to utils.py
Just seems nicer somehow

------------------------------------------------------------------------
r68 | don | 2006-08-23 22:44:06 +0100 (Wed, 23 Aug 2006) | 16 lines

Many, many updates from the local "rework" branch.

* Add new functions.py to store functions that can be used by anyone
* Rework Thoughts, links so only MMapArea has a copy of all of them
* Remove / kill parent child relationship for thoughts
 - These make loading / Saving much easier
 - They make updating links much easier
 - They make considering things much easier

* Save window geometry

All old classes are still there.  Much needs cleaned up.

TheFuture needs cleaning properly


------------------------------------------------------------------------
r67 | don | 2006-08-14 18:30:04 +0100 (Mon, 14 Aug 2006) | 5 lines

Update save to use only 2 passes (although, very hackily)
Make loading actually delete thoughts when requested
Make save only save when area is closed
Update TheFuture somewhat (maybe)

------------------------------------------------------------------------
r66 | don | 2006-08-01 21:34:16 +0100 (Tue, 01 Aug 2006) | 3 lines

More loading work.  Seems to be mostly done (first pass).  Issue remains
with saving a doc twice: The text is repeated!The text is repeated!

------------------------------------------------------------------------
r65 | don | 2006-08-01 20:54:49 +0100 (Tue, 01 Aug 2006) | 3 lines

More loading work.  Almost working (badly).  Now links are drawn, but it
doesn't update properly and moving nodes breaks things

------------------------------------------------------------------------
r64 | don | 2006-08-01 19:58:25 +0100 (Tue, 01 Aug 2006) | 3 lines

More work on loading.  Coords are parsed and small squares shown on
screen

------------------------------------------------------------------------
r63 | don | 2006-08-01 18:42:07 +0100 (Tue, 01 Aug 2006) | 4 lines

First attempt at a pass at loading of files:
* Load all files in save directory
* Only set title of window

------------------------------------------------------------------------
r62 | don | 2006-07-31 20:44:41 +0100 (Mon, 31 Jul 2006) | 2 lines

Save to a real-life file!

------------------------------------------------------------------------
r61 | don | 2006-07-31 20:17:55 +0100 (Mon, 31 Jul 2006) | 3 lines

Lots more saving stuff.  Prints out the complete (for now) save file in
a pretty format

------------------------------------------------------------------------
r60 | don | 2006-07-31 19:36:13 +0100 (Mon, 31 Jul 2006) | 3 lines

First attempt at saving to XML.  Dumps the content of each node and the
cursor position to stdout when double-click happens

------------------------------------------------------------------------
r59 | don | 2006-07-23 13:31:15 +0100 (Sun, 23 Jul 2006) | 2 lines

Remove note_number since its no longer used

------------------------------------------------------------------------
r58 | don | 2006-07-16 16:56:42 +0100 (Sun, 16 Jul 2006) | 2 lines

Remove dead python setup files

------------------------------------------------------------------------
r57 | don | 2006-07-16 16:52:05 +0100 (Sun, 16 Jul 2006) | 2 lines

Remove extra files.  Most are auto-generated.  src/Labyrinth has moved

------------------------------------------------------------------------
r56 | don | 2006-07-16 16:47:25 +0100 (Sun, 16 Jul 2006) | 2 lines

... and another forgotten file

------------------------------------------------------------------------
r55 | don | 2006-07-16 16:46:30 +0100 (Sun, 16 Jul 2006) | 2 lines

Move UI description to lower-case

------------------------------------------------------------------------
r54 | don | 2006-07-16 16:44:52 +0100 (Sun, 16 Jul 2006) | 2 lines

Sigh.  One more file to add

------------------------------------------------------------------------
r53 | don | 2006-07-16 16:44:10 +0100 (Sun, 16 Jul 2006) | 2 lines

Add m4 subdir, forgotten in last commit

------------------------------------------------------------------------
r52 | don | 2006-07-16 16:42:32 +0100 (Sun, 16 Jul 2006) | 7 lines

Move to autotools style setup.  Allows installing to happen.  Takes care
of removing .py from labyrinth in bindir.  Adapt everything to cope.
Adapt everything to allow to run from either uninstalled or from
installed instance.

Based on auto* stuff from deskbar-applet.  Added (empty) changelogs.

------------------------------------------------------------------------
r51 | don | 2006-07-15 19:19:11 +0100 (Sat, 15 Jul 2006) | 2 lines

Update md5 sums of packages on web-page

------------------------------------------------------------------------
r50 | don | 2006-07-15 19:15:01 +0100 (Sat, 15 Jul 2006) | 4 lines

Bump version v0.0.5
Update README et. al. to reflect changes.  Discover install is broken.
Decided "What the fuck.".  Moving to new system (hopefully) soon.

------------------------------------------------------------------------
r49 | don | 2006-07-15 18:49:51 +0100 (Sat, 15 Jul 2006) | 2 lines

Continued work on index for web-page

------------------------------------------------------------------------
r48 | don | 2006-07-15 18:41:25 +0100 (Sat, 15 Jul 2006) | 5 lines

Make the primary thought red when not selected (Making it easier, for
non-colour-blind people, to pick out).
Move screenshot to -002.  Add in -005 screenshot.
Start updating website

------------------------------------------------------------------------
r47 | don | 2006-07-15 18:11:50 +0100 (Sat, 15 Jul 2006) | 12 lines

Fix stupid bugs.  Find out Python is actually EVIL.  When it doesn't
feel like it, it won't alert you to exceptions, just silently fail.

Anyway:  Make deletion of parent nodes work properly.
	 Make title change as requested
	 Handle deletion of primary node gracefully
	 If title text is "", revert to "Unknown Map %d"
	 Ensure selection of primary and current root works when
deleting thoughts
	 Probably a load more.  True feature parity with before rewrite.
Woo-hoo

------------------------------------------------------------------------
r46 | don | 2006-07-14 18:18:31 +0100 (Fri, 14 Jul 2006) | 2 lines

Make window title the primary thought content.  If > 27 chars, truncate.

------------------------------------------------------------------------
r45 | don | 2006-07-13 20:41:55 +0100 (Thu, 13 Jul 2006) | 2 lines

Bring up to feature-parity with before.  Delete *Classic versions

------------------------------------------------------------------------
r44 | don | 2006-07-13 20:19:23 +0100 (Thu, 13 Jul 2006) | 4 lines

Fix a few regressions about editing and selecting different nodes and
...
Nothing terribly interesting :(

------------------------------------------------------------------------
r43 | don | 2006-07-13 19:35:21 +0100 (Thu, 13 Jul 2006) | 3 lines

Rework links.  THings are now around the same level as before the
rewrite, but much clearer in the code :)

------------------------------------------------------------------------
r42 | don | 2006-07-13 19:15:31 +0100 (Thu, 13 Jul 2006) | 2 lines

Start Link rework.  Make Area and Thoughts work together.

------------------------------------------------------------------------
r41 | don | 2006-07-12 22:57:45 +0100 (Wed, 12 Jul 2006) | 3 lines

Rework of Thoughts.  More clean now.  Seems to work for the most part.
No colouring.  No links as yet.  Not tried things out properly.

------------------------------------------------------------------------
r40 | don | 2006-07-12 21:49:24 +0100 (Wed, 12 Jul 2006) | 3 lines

Oops.  Forgot the delete function.  Fixed.  Still nothing works though
;)

------------------------------------------------------------------------
r39 | don | 2006-07-12 21:01:10 +0100 (Wed, 12 Jul 2006) | 5 lines

Great MMapArea rewrite.  Breaks program badly until Links and Thoughts
are rewritten to support it.

New code is much cleaner and easier to follow though.

------------------------------------------------------------------------
r38 | don | 2006-07-10 21:20:53 +0100 (Mon, 10 Jul 2006) | 2 lines

Make Node deletion work.  (Added a list of children to current thought)

------------------------------------------------------------------------
r37 | don | 2006-07-10 21:01:15 +0100 (Mon, 10 Jul 2006) | 2 lines

Add list of children.  Save drawing links the wrong way around

------------------------------------------------------------------------
r36 | don | 2006-07-10 20:46:49 +0100 (Mon, 10 Jul 2006) | 3 lines

Make dragging of links work in editing mode.  Make links update when
dragging thoughts around.

------------------------------------------------------------------------
r35 | don | 2006-07-10 20:16:02 +0100 (Mon, 10 Jul 2006) | 2 lines

Links now work as before

------------------------------------------------------------------------
r34 | don | 2006-07-10 19:47:59 +0100 (Mon, 10 Jul 2006) | 2 lines

First attempt at adding a link type.  Very, very broken for now.

------------------------------------------------------------------------
r33 | don | 2006-07-10 17:47:44 +0100 (Mon, 10 Jul 2006) | 4 lines

Implement Moving and Editing Modes.  Now, to edit a thought, you have to
be in editing mode (default).  To move thoughts around, you must be in
move mode.

------------------------------------------------------------------------
r32 | don | 2006-07-10 17:24:51 +0100 (Mon, 10 Jul 2006) | 2 lines

Add a silly "About" dialog

------------------------------------------------------------------------
r31 | don | 2006-07-10 17:08:43 +0100 (Mon, 10 Jul 2006) | 3 lines

Make NewWindow, CloseWindow and Quit work as expected.  Allows > 1
window at a time to be worked on

------------------------------------------------------------------------
r30 | don | 2006-07-10 16:46:38 +0100 (Mon, 10 Jul 2006) | 2 lines

Add menubar and titlebar to window.  Nothing works yet thought.

------------------------------------------------------------------------
r29 | don | 2006-07-10 15:59:41 +0100 (Mon, 10 Jul 2006) | 2 lines

Add UI description.  Update setup and MANIFEST to ship them

------------------------------------------------------------------------
r28 | don | 2006-07-10 15:50:30 +0100 (Mon, 10 Jul 2006) | 3 lines

Add new file describing MainWindow
Update script to use LabyrinthWindow

------------------------------------------------------------------------
r27 | don | 2006-07-10 14:45:34 +0100 (Mon, 10 Jul 2006) | 3 lines

NEW VERSION
Bump version number to 0.0.3

------------------------------------------------------------------------
r26 | don | 2006-07-10 14:45:02 +0100 (Mon, 10 Jul 2006) | 2 lines

Put the correct filenames on the webpage

------------------------------------------------------------------------
r25 | don | 2006-07-10 14:40:47 +0100 (Mon, 10 Jul 2006) | 2 lines

Add in md5 sums

------------------------------------------------------------------------
r24 | don | 2006-07-10 14:35:46 +0100 (Mon, 10 Jul 2006) | 2 lines

Remove MANIFEST from repo.  It's automatically generated.

------------------------------------------------------------------------
r23 | don | 2006-07-10 14:35:23 +0100 (Mon, 10 Jul 2006) | 2 lines

Add in webpage to repo.  Including screenshot.

------------------------------------------------------------------------
r22 | don | 2006-07-10 14:31:48 +0100 (Mon, 10 Jul 2006) | 2 lines

Include MANIFEST.in in dist, adding in other various files

------------------------------------------------------------------------
r21 | don | 2006-07-10 14:27:26 +0100 (Mon, 10 Jul 2006) | 3 lines

Make package installable.  Update TheFuture to show some ideas.  Add
NEWS file.  Update README to reflect changes

------------------------------------------------------------------------
r20 | don | 2006-07-10 13:07:07 +0100 (Mon, 10 Jul 2006) | 2 lines

Add a missing *

------------------------------------------------------------------------
r19 | don | 2006-07-10 06:02:05 +0100 (Mon, 10 Jul 2006) | 2 lines

Add some docstrings.  Create README.  Update TheFuture

------------------------------------------------------------------------
r18 | don | 2006-07-10 02:45:16 +0100 (Mon, 10 Jul 2006) | 3 lines

Remove some surplus prints.  A selected thought will now become the root
node.  Yay.  Means that there can now be multiple root thoughts.

------------------------------------------------------------------------
r17 | don | 2006-07-10 02:40:46 +0100 (Mon, 10 Jul 2006) | 3 lines

Rework signals.  Make single click select node.  Make double click edit
node.  Make dragging nodes actually work as expected.  I hope.

------------------------------------------------------------------------
r16 | don | 2006-07-10 01:14:01 +0100 (Mon, 10 Jul 2006) | 2 lines

Make draggin work properly.  Pretty cool.

------------------------------------------------------------------------
r15 | don | 2006-07-10 00:59:07 +0100 (Mon, 10 Jul 2006) | 3 lines

Cleanup some syntax
First attempt at drag-moving boxes around.  Doesn't work.  Yet.

------------------------------------------------------------------------
r14 | don | 2006-07-09 23:54:57 +0100 (Sun, 09 Jul 2006) | 3 lines

Make thoughts selectable.  Clicking in them makes them change back to
"editing" state

------------------------------------------------------------------------
r13 | don | 2006-07-09 23:44:40 +0100 (Sun, 09 Jul 2006) | 3 lines

... and then I go and spoil it all by doing something stupid like ...
chaning my mind.  Home / End go to start / End of line

------------------------------------------------------------------------
r12 | don | 2006-07-09 23:40:52 +0100 (Sun, 09 Jul 2006) | 2 lines

Added Home and End buttons to go to start and end of buffer

------------------------------------------------------------------------
r11 | don | 2006-07-09 23:37:35 +0100 (Sun, 09 Jul 2006) | 2 lines

Add a corner in the top-left of the currently-being-edited note

------------------------------------------------------------------------
r10 | don | 2006-07-09 23:34:43 +0100 (Sun, 09 Jul 2006) | 2 lines

Shade current root thought a hideous bluey color

------------------------------------------------------------------------
r9 | don | 2006-07-09 22:38:52 +0100 (Sun, 09 Jul 2006) | 2 lines

Don't fall over when ctrl-C'd to quit.  Personal peeve

------------------------------------------------------------------------
r8 | don | 2006-07-09 22:37:38 +0100 (Sun, 09 Jul 2006) | 3 lines

Option parsing.  Only 1 option - -h (for help)
At least shows something now

------------------------------------------------------------------------
r7 | don | 2006-07-09 22:09:59 +0100 (Sun, 09 Jul 2006) | 2 lines

Update require to actually check version of Gtk available (maybe)

------------------------------------------------------------------------
r6 | don | 2006-07-09 22:04:51 +0100 (Sun, 09 Jul 2006) | 4 lines

Make the background white
If current_thought is empty when finishing editing, don't bother drawing
it

------------------------------------------------------------------------
r5 | don | 2006-07-09 21:10:07 +0100 (Sun, 09 Jul 2006) | 5 lines

Added a small overview of where this might be leading in the next
version

Bump version number

------------------------------------------------------------------------
r4 | don | 2006-07-09 21:04:16 +0100 (Sun, 09 Jul 2006) | 2 lines

Make MoveUp and MoveDown work as expected

------------------------------------------------------------------------
r3 | don | 2006-07-09 19:58:18 +0100 (Sun, 09 Jul 2006) | 3 lines

Make text insertion work
First pass at Up navigation.  Very broken

------------------------------------------------------------------------
r2 | don | 2006-07-09 19:18:25 +0100 (Sun, 09 Jul 2006) | 3 lines

Moving back / forward while editing thought
Backspace / delete actually work as expected

------------------------------------------------------------------------
r1 | don | 2006-07-09 18:59:02 +0100 (Sun, 09 Jul 2006) | 2 lines

Initial Import of Labyrinth to new home

------------------------------------------------------------------------