forked from erkyrath/Inform7-IDE-Mac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInform-TODO.oo3
7839 lines (7839 loc) · 248 KB
/
Inform-TODO.oo3
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
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE outline PUBLIC "-//omnigroup.com//DTD OUTLINE 3.0//EN" "http://www.omnigroup.com/namespace/OmniOutliner/xmloutline-v3.dtd">
<outline xmlns="http://www.omnigroup.com/namespace/OmniOutliner/v3">
<style-attribute-registry>
<style-attribute version="0" key="font-family" group="font" name="family" class="string">Helvetica</style-attribute>
<style-attribute version="1" key="font-fill" group="font" name="fill color" class="color">
<color w="0"/>
</style-attribute>
<style-attribute version="0" key="font-fixed-pitch" group="font" name="fixed pitch" class="bool">no</style-attribute>
<style-attribute version="0" key="font-italic" group="font" name="italic" class="bool">no</style-attribute>
<style-attribute version="0" key="font-size" group="font" name="size" class="number">12</style-attribute>
<style-attribute version="0" key="font-weight" group="font" name="weight" class="number">5</style-attribute>
<style-attribute version="0" key="paragraph-first-line-head-indent" group="paragraph" name="first line head indent" class="number">0</style-attribute>
<style-attribute version="0" key="paragraph-head-indent" group="paragraph" name="head indent" class="number">0</style-attribute>
<style-attribute version="0" key="paragraph-tab-stop-interval" group="paragraph" name="tab stop interval" class="number">0</style-attribute>
<style-attribute version="0" key="paragraph-tab-stops" group="paragraph" name="tab stops" class="string">28L,56L,84L,112L,140L,168L,196L,224L,252L,280L,308L,336L</style-attribute>
<style-attribute version="0" key="text-background-color" group="text" name="background color" class="color">
<color w="0" a="0"/>
</style-attribute>
</style-attribute-registry>
<named-styles>
<named-style id="clHto40b1Bp" name="Notes" display-order="0">
<style>
<value key="font-fill">
<color w="0.4"/>
</value>
<value key="font-italic">yes</value>
<value key="font-size">10</value>
</style>
</named-style>
</named-styles>
<settings/>
<editor content-size="{543, 436}" should-edit-text-folded="yes" is-spellchecking-enabled="yes">
<drawer display="sections"/>
<hoisted-rows ids="pEW3i1sGaa9"/>
<selected-rows ids="pXxzsXkKfSA h88p0JypPCP gdy7yMZj0T7 prJI_RO9NSb aZSazM0En3d"/>
</editor>
<columns>
<column id=":29b9302840e9a18f059ce303" type="text" width="18" minimum-width="18" maximum-width="18" text-export-width="1" is-note-column="yes">
<style>
<value key="font-fill">
<color w="0.4"/>
</value>
<value key="font-italic">yes</value>
<value key="font-size">10</value>
</style>
<title>
<text>
<p/>
</text>
</title>
</column>
<column id=":3f92302940e9a18f059ce303" type="text" width="406" minimum-width="13" maximum-width="1000000" text-export-width="72" is-outline-column="yes">
<title>
<text>
<p>
<run>
<lit>Topic</lit>
</run>
</p>
</text>
</title>
</column>
<column id="lFqTwc8XxAj" type="text" width="100" minimum-width="13" maximum-width="1000000" text-export-width="40">
<style>
<value key="font-italic">yes</value>
<value key="font-size">11</value>
</style>
<title>
<text>
<p>
<run>
<lit>Reported by</lit>
</run>
</p>
</text>
</title>
</column>
</columns>
<root>
<style>
<value key="font-size">13</value>
<value key="font-weight">9</value>
</style>
<style>
<value key="font-weight">9</value>
<value key="text-background-color">
<color r="0.816468" g="0.870691" b="1"/>
</value>
</style>
<item id="dpKxt8MeSn5" state="checked">
<values>
<text>
<p>
<run>
<lit>Zoom bugs</lit>
</run>
</p>
</text>
<null/>
</values>
<children>
<item id="ahIsv67qF1e" state="checked">
<values>
<text>
<p>
<run>
<lit>ZoomServer needs to go away if a crash happens</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
<item id="di-Xrt79jQN" state="checked">
<values>
<text>
<p>
<run>
<lit>Dies if you try to switch from editing one skein item to editing another in a different view</lit>
</run>
</p>
</text>
<null/>
</values>
<note expanded="yes">
<text>
<p>
<run>
<lit>Maybe we should just use the field editor? (Yep, we should)</lit>
</run>
</p>
</text>
</note>
</item>
<item id="mxwfoKbKoK2" state="checked">
<values>
<text>
<p>
<run>
<lit>Fails to load single source files</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
</children>
</item>
<item id="nL5kvLMS4-H" expanded="yes" state="indeterminate">
<values>
<text>
<p>
<run>
<lit>Inform bugs</lit>
</run>
</p>
</text>
<null/>
</values>
<children>
<item id="haCeobDamug" state="checked">
<values>
<text>
<p>
<run>
<lit>Add next/previous difference to transcript view panel bar (next by skein too?)</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
<item id="eNKVv51Ywls" state="checked">
<values>
<text>
<p>
<run>
<lit>Crash when going forward/back (should be fixed)</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
<item id="iY-weq_2stW">
<values>
<text>
<p>
<run>
<lit>Custom fonts seem to be broken</lit>
</run>
</p>
</text>
<null/>
</values>
<note expanded="yes">
<text>
<p>
<run>
<lit>(Seems to be fixed?)</lit>
</run>
</p>
</text>
</note>
</item>
<item id="drbXnh61p2Y">
<values>
<text>
<p>
<run>
<lit>Seems we select the first error after 'play all blessed' but don't scroll to it.</lit>
</run>
</p>
</text>
<null/>
</values>
<note expanded="yes">
<text>
<p>
<run>
<lit>Maybe only when the transcript tab is hidden</lit>
</run>
</p>
</text>
</note>
</item>
<item id="lNu0amumN87" state="checked">
<values>
<text>
<p>
<run>
<lit>Runtime problem panel doesn't work with glulx games</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
<item id="d4hvMWoAVwe">
<values>
<text>
<p>
<run>
<lit>Renumbering doesn't work while editing the extensions. </lit>
</run>
</p>
</text>
<null/>
</values>
<note expanded="yes">
<text>
<p>
<run>
<lit>(Hmm, the stuff is currently in the top-heavy ProjectPane class, so some refactoring required here)</lit>
</run>
</p>
</text>
</note>
</item>
<item id="h4amgmnGsnC">
<values>
<text>
<p>
<run>
<lit>Can't open red files in the editor before saving the project</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
<item id="oNrnpkGXITC">
<values>
<text>
<p>
<run>
<lit>Can't reach back/forwards buttons via VoiceOver</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
<item id="aGzZ0A_3m7s">
<values>
<text>
<p>
<run>
<lit>Documentation examples scroll to the right place, but VoiceOver will read from the top</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
<item id="hmK_oDH_4T3">
<values>
<text>
<p>
<run>
<lit>Cut & paste CR/LF text causes errors to come out incorrectly?</lit>
</run>
</p>
</text>
<text>
<p>
<run>
<lit>Graham Nelson</lit>
</run>
</p>
</text>
</values>
<note expanded="yes">
<text>
<p>
<run>
<lit>Might have fixed this; it was reported a long time ago. Might have just forgotten about it :-)</lit>
</run>
</p>
</text>
</note>
</item>
<item id="hSgEKuqUY4n">
<values>
<text>
<p>
<run>
<lit>Changing compile type in the settings in i6test fails to force a recompile</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
<item id="h9tvQwOAq99">
<values>
<text>
<p>
<run>
<lit>CocoaGlk output for the previous command does not appear until the next command is complete</lit>
</run>
</p>
</text>
<null/>
</values>
<note expanded="yes">
<text>
<p>
<run>
<lit>(Annoying, can't easily change the skein to accommodate this)</lit>
</run>
</p>
</text>
</note>
</item>
<item id="jnobGUEYoT_">
<values>
<text>
<p>
<run>
<lit>Make CocoaGlk produce output receiver events on single-character input</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
<item id="kZ6GfQmhLUW">
<values>
<text>
<p>
<run>
<lit>Dragging splitter to the right causes problems with the doc tab</lit>
</run>
</p>
</text>
<text>
<p>
<run>
<style>
<value key="font-italic">no</value>
<value key="font-size">12</value>
<value key="paragraph-head-indent">52</value>
<value key="paragraph-tab-stop-interval">8</value>
<value key="paragraph-tab-stops">51R,52L</value>
</style>
<lit>Justin Gareau</lit>
</run>
</p>
</text>
</values>
<note expanded="yes">
<text>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>5)If you drag the splitter all the way to the right, then drag it back to the middle, documentation in the right pane will have its last character cut off (see screenshot 1, attached).</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>Likewise, dragging the splitter all the way to the left will cause the left pane to have its last character cut off.</lit>
</run>
</p>
</text>
</note>
</item>
<item id="eFwyycW3PQD">
<values>
<text>
<p>
<run>
<lit>Pressing space in the documentation tab scrolls down, but not immediately after clicking a link</lit>
</run>
</p>
</text>
<text>
<p>
<run>
<style>
<value key="font-italic">no</value>
<value key="font-size">12</value>
<value key="paragraph-head-indent">52</value>
<value key="paragraph-tab-stop-interval">8</value>
<value key="paragraph-tab-stops">51R,52L</value>
</style>
<lit>Justin Gareau</lit>
</run>
</p>
</text>
</values>
<note expanded="yes">
<text>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>8)You can press the space bar to scroll down in the documentation tab, but if you click on next, previous or contents, it loses focus, so the space bar no longer has any effect.</lit>
</run>
</p>
</text>
</note>
</item>
<item id="hMzaXAhNK4h" state="indeterminate">
<values>
<text>
<p>
<run>
<lit>glulxe fails to load</lit>
</run>
</p>
</text>
<null/>
</values>
<note expanded="yes">
<text>
<p>
<run>
<lit>Trying to load CocoaGlk library from the wrong place</lit>
</run>
</p>
</text>
</note>
<children>
<item id="c2e-R0_9DFO" state="checked">
<values>
<text>
<p>
<run>
<lit>Temp fix (moved to directory to work around this)</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
<item id="o3Aw45MQUfn">
<values>
<text>
<p>
<run>
<lit>Full fix (change linking style)</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
</children>
</item>
<item id="iO5rLZYGvlw">
<values>
<text>
<p>
<run>
<lit>Index inspector</lit>
</run>
</p>
</text>
<null/>
</values>
<children>
<item id="mf92tLTR84o">
<values>
<text>
<p>
<run>
<lit>Closes items when updating</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
<item id="p7S_h11Porj">
<values>
<text>
<p>
<run>
<lit>Doesn't work properly if the very first item in the list is not a Volume.</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
</children>
</item>
<item id="cGTfeXxndvf">
<values>
<text>
<p>
<run>
<lit>CocoaGlk crashes on document close</lit>
</run>
</p>
</text>
<null/>
</values>
<note expanded="yes">
<text>
<p>
<run>
<lit>Drat, memory corruption unrelated to zombies. Holy water ineffective.</lit>
</run>
</p>
</text>
</note>
</item>
<item id="d71Ga6Zx5m7">
<values>
<text>
<p>
<run>
<lit>'Current' skein item update is delayed</lit>
</run>
</p>
</text>
<text>
<p>
<run>
<lit>Andrew Plotkin</lit>
</run>
</p>
</text>
</values>
</item>
<item id="pUfqlkK8QoY">
<values>
<text>
<p>
<run>
<lit>Crash after switching away and switching back to an Inform 6 app (might also happen with Inform 7?)</lit>
</run>
</p>
</text>
<null/>
</values>
<note expanded="yes">
<text>
<p>
<run>
<lit>2005-02-12 10:13:21.182 Inform[13631] *** NSRunLoop ignoring exception 'NSRangeException' (reason '*** -[NSCFArray objectAtIndex:]: index (1) beyond bounds (0)') that raised during ordered perform of target 5576560 and selector 'finishUpdate'</lit>
</run>
</p>
<p>
<run>
<lit>*** malloc[13631]: Deallocation of a pointer not malloced: 0xbfffd5e0; This could be a double free(), or free() called with the middle of an allocated block; Try setting environment variable MallocHelp to see tools to help debug</lit>
</run>
</p>
<p>
<run>
<lit>2005-02-12 10:13:21.192 ZoomServer[13906] Connection died!</lit>
</run>
</p>
<p/>
</text>
</note>
</item>
<item id="auixN41o2m2">
<values>
<text>
<p>
<run>
<lit>cblorb crash when compiling W&W? (Big games only, could be a timing issue?)</lit>
</run>
</p>
</text>
<text>
<p>
<run>
<lit>Graham nelson</lit>
</run>
</p>
</text>
</values>
<note expanded="yes">
<text>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>(b) Inform reacting to cblorb</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>On the cblorb front, though, I've mostly had success with</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>releases succeeding/failing. I say mostly, because although</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>it works most of the time, sometimes Inform doesn't switch to</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>the Errors pane - hiding what has happened; sometimes</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>the Errors pane shows only the Progress console, never</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>opening the HTML bit; and sometimes Inform crashes</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>unexpectedly shortly after the release has been made.</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>This only seems to happen on big games. I created</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>a miniature one and tried all kinds of things to try to</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>provoke the bug, but with no success - it worked every</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>time. So the only thing I can think of trying is to give</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>you a copy of the project which goes wrong for me,</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>I'm afraid! It's attached, along with the current Cblorb</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>source. The easiest way to provoke blorb failures is to</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>change the style of the website to one it doesn't know,</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>e.g., change</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>Release along with cover art, the source text, a website and a file of "Collegio magazine" called "Collegio.pdf".</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>(should work) to</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>Release along with cover art, the source text, a "Purple" website and a file of "Collegio magazine" called "Collegio.pdf".</lit>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
</run>
</p>
<p>
<run>
<style>
<value key="font-family">Monaco</value>
<value key="font-fill">
<color w="0"/>
</value>
<value key="font-italic">no</value>
</style>
<lit>(which should fail).</lit>
</run>
</p>
</text>
</note>
</item>
<item id="gAymluY-lhQ">
<values>
<text>
<p>
<run>
<lit>SegFault on exit</lit>
</run>
</p>
</text>
<null/>
</values>
<note expanded="yes">
<text>
<p>
<run>
<lit>Can't trace this one :-/ Seems to happen while finishing up the autorelease pool. Haven't seen this in a while.</lit>
</run>
</p>
</text>
</note>
</item>
<item id="eeizTQglOqY">
<values>
<text>
<p>
<run>
<lit>Don't open temporary files for NI projects: you can't switch back!!</lit>
</run>
</p>
</text>
<null/>
</values>
</item>
<item id="kQ9xVjBJfkm" state="checked">
<values>
<text>
<p>
<run>
<lit>Breakpoints menu item (main menu, not context menu) seems to only work with the left pane</lit>
</run>
</p>
</text>