-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
2565 lines (1653 loc) · 73.7 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
2011-03-10 17:18 abgandar
* AQTImage.m: Add missing 64bit encoding/decoding fixes to the
AQTImage class (same as for the other AQTGraphics objects). This
should fix the 32/64bit interoperability problems between client
and server. Tested to work with Demo.m/Aquaterm.app in all
possible 32/64 bit combinations on 10.6
2011-03-10 04:43 mmiklavec
* AQTPlot.m: Increase the maximum allowed window width
(1000->4096).
2011-03-05 21:56 persquare
* AquaTerm.xcodeproj/per.pbxuser: Don't track my personal UI
settings.
2011-03-05 21:52 persquare
* AquaTerm.xcodeproj/project.pbxproj: Added a new target Package
that creates an installer .pkg
2011-03-05 10:27 persquare
* InstallerLicense.rtf, InstallerReadMe.rtf,
AquaTerm10.5+.pmdoc/01aquaterm-contents.xml,
AquaTerm10.5+.pmdoc/01aquaterm.xml,
AquaTerm10.5+.pmdoc/02aquaterm-contents.xml,
AquaTerm10.5+.pmdoc/02aquaterm.xml,
AquaTerm10.5+.pmdoc/index.xml: Adding PackageMaker project file
to create installer
2011-03-05 10:14 persquare
* AQTAdapter.h, AQTAdapter.m, AQTClientManager.h,
AQTClientManager.m, AQTClientProtocol.h, AQTColorMap.h,
AQTColorMap.m, AQTConnectionProtocol.h, AQTConstants.m,
AQTController.m, AQTGraphic.h, AQTGraphic.m,
AQTGraphicDrawingMethods.m, AQTLabel.h, AQTLabel.m, AQTModel.h,
AQTModel.m, AQTModelAdditions.m, AQTPath.h, AQTPath.m, AQTPlot.h,
AQTPlot.m, AQTPlotBuilder.h, AQTPlotBuilder.m,
AQTPrefController.m, AQTStringDrawingAdditions.h,
AQTStringDrawingAdditions.m, AQTView.m, Bugs.m, Demo.m, Timing.m,
aquaterm.h, aquaterm.m, AquaTerm.xcodeproj/per.pbxuser,
AquaTerm.xcodeproj/project.pbxproj: Major patch for 64-bit
compatibility.
2008-09-26 23:35 persquare
* AquaTerm.xcodeproj/project.pbxproj, AquaTerm.bridgesupport,
ReadMe.rtf, ReleaseNotes, distroMakefile: Adding BridgeSupport
2007-03-22 19:53 persquare
* AQTController.m, AquaTerm.app-Info.plist,
AquaTerm.framework-Info.plist, ChangeLog, Demo.m, ReadMe.rtf,
ReleaseNotes, distroMakefile, English.lproj/Credits.rtf,
installer/installer.packproj, installer/postflight,
installer/preflight, AquaTerm.xcodeproj/project.pbxproj: Final
changes before 1.1.0 release.
2007-03-22 18:26 persquare
* aquaterm.h, aquaterm.m: Add the RGBA methods to C API too.
2007-03-21 21:46 persquare
* AQTController.m: Make landscape printing the default.
2007-03-21 21:27 persquare
* AQTView.m: Removing log statements.
2007-03-21 21:20 persquare
* AQTController.m, AQTPrefController.h, AQTPrefController.m,
AQTView.m, English.lproj/crossBlack.tiff,
English.lproj/crossBlue.tiff, English.lproj/crossGreen.tiff,
English.lproj/crossRed.tiff, English.lproj/crossWhite.tiff,
English.lproj/crossYellow.tiff,
English.lproj/Preferences.nib/classes.nib,
English.lproj/Preferences.nib/info.nib,
English.lproj/Preferences.nib/objects.nib: Make crosshair color a
user pref.
2007-03-21 21:18 persquare
* English.lproj/Cross.tiff: Not used.
2007-03-21 19:40 persquare
* aquaterm.m: Release temp string.
2007-03-21 19:38 persquare
* AQTView.m, aquaterm.m: Better handling of event strings. Add
keyCode to event string for key presses.
2007-03-21 18:35 persquare
* AQTAdapter.h, AQTAdapter.m, AQTFunctions.h, AQTGraphic.h,
AQTGraphic.m, AQTGraphicDrawingMethods.m, AQTPlotBuilder.m,
Demo.m: Adding alpha channel handling.
2006-10-31 22:05 persquare
* installer/postflight: Adding the missing link. Time to deprecate
libaquaterm altogether.
2006-08-23 20:01 persquare
* AQTPlotBuilder.m: Fixing size method left out when renaming size
to canvasSize, reported by Will Ware. Only affected debug builds.
2006-08-01 00:59 persquare
* AquaTerm.xcodeproj/: per.mode1, per.pbxuser: Preparing for source
release.
2006-08-01 00:55 persquare
* distroMakefile: hdiutil is wreaking havoc on the installer
package, using DropDMG as a fix.
2006-07-31 23:49 persquare
* AquaTerm.xcodeproj/per.mode1, AquaTerm.xcodeproj/per.pbxuser,
AquaTerm.xcodeproj/project.pbxproj, ReadMe.rtf,
English.lproj/Credits.rtf: Targeting Universal Binary. Bumping
version to 1.0.1
2006-07-31 23:27 persquare
* AQTController.m, AquaTerm.app-Info.plist,
AquaTerm.framework-Info.plist, INSTALL, ReadMe.rtf, ReleaseNotes,
distroMakefile, installer/installer.packproj,
installer/postflight, installer/preflight: Targeting Universal
Binary. Bumping version to 1.0.1
2005-11-10 22:07 persquare
* AQTGraphicDrawingMethods.m: Try to be smart about paths that
should have been closed.
2005-11-10 22:05 persquare
* AQTPlotBuilder.m: Changing line cap style implies end of current
path.
2005-09-14 17:56 persquare
* installer/postflight: Fixing broken script.
2005-07-26 03:03 persquare
* AquaTerm.xcodeproj/project.pbxproj: Turn off debug logging.
2005-07-26 03:02 persquare
* AQTController.m: Minor changes pending 1.0.0 release.
2005-07-26 02:24 persquare
* distroMakefile: Minor changes pending 1.0.0 release.
2005-07-26 02:03 persquare
* Help/AQTAdapter.html: Some developer documentation.
2005-07-26 02:02 persquare
* ChangeLog, AQTAdapter.m: Minor changes pending 1.0.0 release.
2005-07-26 00:04 persquare
* Help/DevDocs.rtfd/: Pasted Graphic.tiff, TXT.rtf: Some developer
documentation.
2005-07-25 21:11 persquare
* distroMakefile: Cleaning and updating to XCode 2.
2005-07-25 21:02 persquare
* English.lproj/Credits.rtf: RTF broken by FileMerge.
2005-07-25 21:00 persquare
* Help/DevDocs.rtfd/: .typeAttributes.dict, Pasted Graphic.tiff,
TXT.rtf: Some developer documentation.
2005-07-25 20:17 persquare
* ReadMe.rtf: RTF broken?
2005-07-25 18:13 persquare
* AQTClientManager.m, AQTPlotBuilder.m, AquaTerm.app-Info.plist,
AquaTerm.framework-Info.plist, Bugs.m, Demo.m, INSTALL,
ReadMe.rtf, ReleaseNotes, Timing.m,
English.lproj/MainMenu1.nib/info.nib,
English.lproj/MainMenu1.nib/objects.nib,
English.lproj/Credits.rtf, installer/installer.packproj: Minor
changes pending 1.0.0 release.
2005-07-25 17:49 persquare
* AquaTerm.xcodeproj/: project.pbxproj, per.mode1, per.pbxuser:
Creating project file for 10.4.
2005-03-23 20:33 persquare
* AquaTerm.framework-Info.plist, Fwk-Info.plist: Changing name of
framework info file.
2005-03-23 20:29 persquare
* AquaTerm.pbproj/project.pbxproj: Bring up-to-date.
2005-03-23 20:29 persquare
* Bugs.m, Demo.m, Timing.m: Changing the default to be AquaTerm.app
and using -DAQT_STANDALONE to build stand-alone example
executables.
2005-03-23 20:22 persquare
* AQTController.m, AQTModelAdditions.h, AQTModelAdditions.m: Minor
clean-ups.
2005-03-09 04:41 hbabcock
* Demo.m: fixed gcc compilation instructions to work with current
configuration of aquaterm
2005-03-08 04:08 hbabcock
* INSTALL: updated install instructions to reflect AquaTerm
transition from library to framework
2005-02-22 13:21 persquare
* installer/: installer.packproj, postflight, preflight: Moving
libaquaterm to AquaTerm.framework with symlinks in /usr/local for
compatibility.
2005-02-22 13:20 persquare
* AquaTerm.pbproj/project.pbxproj, distroMakefile, ReleaseNotes:
Moving libaquaterm to AquaTerm.framework.
2005-02-22 10:59 persquare
* AQTPath.m: Fix inconsistency.
2005-02-17 13:51 persquare
* ChangeLog, INSTALL, ReleaseNotes: Bring up-to-date.
2005-02-17 13:49 persquare
* Demo.m: Demo unicode handling.
2005-02-17 11:43 persquare
* Demo.m: Display new features.
2005-02-17 11:22 persquare
* AQTGraphicDrawingMethods.m, AQTPlotBuilder.m: Labels should be
clipped too.
2005-02-17 11:21 persquare
* aquaterm.h, aquaterm.m: Bringing C API up-to-date. Discrepancy in
image functions compared to ObjC.
2005-02-14 22:50 persquare
* AQTAdapter.h, AQTAdapter.m, AQTGraphicDrawingMethods.m,
AQTLabel.h, AQTLabel.m, AQTPlotBuilder.h, AQTPlotBuilder.m:
Adding a shear angle option to labels. Useful for 3D projections.
2005-02-12 22:18 persquare
* AQTController.m, AQTGraphicDrawingMethods.m, AQTPrefController.h,
AQTPrefController.m, English.lproj/Preferences.nib/classes.nib,
English.lproj/Preferences.nib/info.nib,
English.lproj/Preferences.nib/objects.nib: Adding a preference to
constrain minimum linewidth to 0.0 - 1.0 pt in steps of 0.05 pt.
Specifying 0.0 turn constraint off.
2005-02-11 23:52 persquare
* AQTController.m, AQTGraphic.h, AQTGraphic.m,
AQTGraphicDrawingMethods.m, AQTPlot.m: Adding debug support for
clip rects. Only included if DEBUG_BOUNDS is given at build time.
Menu Debug->Show bounds toggles behavior.
2005-02-11 23:50 persquare
* ReleaseNotes: Updating.
2005-02-11 21:46 persquare
* AQTAdapter.h, AQTAdapter.m, AQTGraphic.h, AQTGraphic.m,
AQTGraphicDrawingMethods.m, AQTPlotBuilder.h, AQTPlotBuilder.m:
Adding clip rect support. (RFE #1094504)
2005-02-03 12:10 persquare
* AQTClientManager.m: Adding missing exception wrapper.
2005-02-03 11:58 persquare
* AQTController.m, AQTPrefController.h, AQTPrefController.m,
AQTStringDrawingAdditions.m,
English.lproj/Preferences.nib/classes.nib,
English.lproj/Preferences.nib/objects.nib: Automatic conversion
of Adobe Symbol font encoding to Unicode is now a preference.
2005-02-03 11:27 persquare
* AQTAdapter.m: Avoid introducing a new bug when fixing #1108709.
2005-02-03 11:24 persquare
* AQTAdapter.m: Fix for bug #1108709. Method -lastEvent now works
as advertised.
2005-01-23 21:55 persquare
* AQTAdapter.h, AQTAdapter.m, AQTGraphicDrawingMethods.m,
AQTPath.h, AQTPath.m, AQTPlotBuilder.h, AQTPlotBuilder.m,
aquaterm.h, aquaterm.m: Adding setLinestylePattern method to
create dashed lines and setLinestyleSolid to revert to solid
lines. Thanks to Chris Murphy who took the time to implement it.
2005-01-23 00:46 persquare
* AQTPrefController.m: Minor change.
2005-01-23 00:40 persquare
* English.lproj/Preferences.nib/classes.nib,
English.lproj/Preferences.nib/info.nib,
English.lproj/Preferences.nib/objects.nib, AQTClientManager.m,
AQTController.m, AQTPlot.m, AQTPrefController.h,
AQTPrefController.m: Adding preference to control window closing
behaviour.
2005-01-22 22:36 persquare
* aquaterm.m: Adding a missing function. D'oh!
2004-12-13 04:50 hbabcock
* AQTGraphicDrawingMethods.m: fix for bug #1081093, adjusts bounds
for finite line width
2004-12-12 21:01 persquare
* AQTAdapter.m, AQTClientManager.h, AQTClientManager.m,
AQTClientProtocol.h, AQTPlot.h, AQTPlot.m, AQTView.m: Adding
(private) method -timingTestWithTag: to AQTAdapter in order to
make it possible to run drawing speed tests from clients.
2004-12-12 19:56 persquare
* AQTFunctions.h, AQTGraphicDrawingMethods.m: Adding CAST_STRUCT_TO
macro.
2004-11-19 15:29 persquare
* AQTAdapter.m, AQTPlotBuilder.h, AQTPlotBuilder.m: Report default
size of colormap rather than 0 if builder not initialized.
2004-11-19 13:27 persquare
* AQTColorMap.m: Fixing range checking bug exposed by plplot
driver.
2004-10-29 13:15 persquare
* English.lproj/MainMenu1.nib/objects.nib: Removing unused menu
entry (Get Info).
2004-10-29 13:14 persquare
* AQTController.m: Forgot to close font plot.
2004-10-29 12:42 persquare
* AQTController.h, AQTController.m,
English.lproj/MainMenu1.nib/classes.nib,
English.lproj/MainMenu1.nib/info.nib,
English.lproj/MainMenu1.nib/objects.nib: Adding menu option to
display available fonts and their names.
2004-10-27 22:26 persquare
* AquaTerm.pbproj/project.pbxproj: Setting compatibility version to
Mac OS X 10.1.
2004-10-27 22:26 persquare
* AQTController.m: Adding configuration info to bugreport. Bumping
to version 1.0.b3.
2004-10-27 22:25 persquare
* AquaTerm.app-Info.plist, distroMakefile: Bumping to version
1.0.b3.
2004-10-27 22:24 persquare
* installer/installer.packproj: Making paths relative. Bumping to
version 1.0.b3.
2004-10-19 10:53 persquare
* AquaTerm.pbproj/project.pbxproj: Updating project file.
2004-10-19 10:52 persquare
* AQTStringDrawingAdditions.m, Demo.m: Nudging sub/superscript
size. Adding example to demo.m
2004-10-18 20:38 persquare
* AQTStringDrawingAdditions.m: Querying current font for underline
position and thickness.
2004-10-18 20:32 persquare
* AQTStringDrawingAdditions.m: Removing the old string drawing
code.
2004-10-18 20:06 persquare
* AQTStringDrawingAdditions.m: Reverting overprint changes.
2004-10-18 18:13 persquare
* AQTStringDrawingAdditions.m: recurse(): Adding overprinting.
2004-10-18 17:23 persquare
* AQTStringDrawingAdditions.m: recurse(): Adding underling. Adding
function documentation.
2004-10-18 15:52 persquare
* AQTStringDrawingAdditions.m: Adding improved string rendering
code.
2004-10-15 11:45 persquare
* AQTGraphicDrawingMethods.h, AQTGraphicDrawingMethods.m,
AQTStringDrawingAdditions.h, AQTStringDrawingAdditions.m: Moving
string drawing methods into a category of their own.
2004-10-14 22:56 persquare
* AQTGraphicDrawingMethods.m: Handle drawing a string differently
than an attributed string. General cleanup as a consequence
2004-10-14 22:54 persquare
* AQTLabel.h, AQTLabel.m: Don't convert a string to an attributed
string since the latter can be more efficiently handled when
drawing.
2004-10-14 13:56 persquare
* AQTGraphicDrawingMethods.m: _aqtLabelUpdateCache: Better parsing
of attributes (non-printing chars and font). Implicit conversion
from Adobe Symbol encoding to unicode. Cleaning up attribute
parsing code. Preparing for refactoring.
2004-10-12 14:35 persquare
* ReleaseNotes: Clear destination rect before adding a bitmap.
2004-10-12 14:25 persquare
* AQTAdapter.m: Clear destination rect before adding a bitmap. The
whole process of eraseRect: need to be cleaned up in the future.
2004-09-29 15:57 persquare
* AquaTerm.pbproj/per.pbxuser: Remove.
2004-09-29 15:56 persquare
* Bugs.m: Bring up to date.
2004-09-29 15:55 persquare
* AquaTerm.pbproj/per.pbxuser: Prepare to remove.
2004-09-29 12:03 persquare
* AQTController.m, AquaTerm.app-Info.plist, ReadMe.rtf,
ReleaseNotes, Help/AQTAdapter.html, ChangeLog: Bump to version
1.0.b2.
2004-09-29 12:01 persquare
* distroMakefile, installer/installer.packproj: Building .pkg
directly in destination because of data loss when copying.
2004-09-29 12:00 persquare
* installer/preflight: Remove library too.
2004-09-29 11:59 persquare
* Fwk-Info.plist: Adding an experimental Framework target.
2004-09-29 11:59 persquare
* AquaTerm.pbproj/project.pbxproj: Adding an experimental Framework
target. Minor changes.
2004-09-29 11:57 persquare
* AQTClientManager.m: Changing the way launching from client works.
2004-09-21 23:12 persquare
* AQTController.m, AQTPlot.m, AQTModelAdditions.m: Removing stray
logging.
2004-09-16 13:12 persquare
* ReadMe.rtf: Using RTF for main ReadMe file (again).
2004-09-16 13:11 persquare
* Help/: AQTAdapter.html, help.html: Adding help files to project.
2004-09-16 13:03 persquare
* AquaTerm.pbproj/project.pbxproj, AQTAdapter.h,
AQTClientManager.m, AQTClientProtocol.h,
AQTGraphicDrawingMethods.m, ReleaseNotes, distroMakefile: Final
changes for first beta release.
2004-09-16 13:00 persquare
* English.lproj/help.html: This file is now copied to Resources at
build time.
2004-09-12 23:23 persquare
* ChangeLog, ReleaseNotes: Update.
2004-09-12 23:22 persquare
* AquaTerm.pbproj/project.pbxproj: Don't strip deployment binaries
(yet).
2004-09-12 23:20 persquare
* distroMakefile: Minor changes.
2004-09-10 16:33 persquare
* AquaTerm.pbproj/project.pbxproj: Removing absolute file
references.
2004-09-10 15:57 persquare
* distroMakefile, AquaTerm.pbproj/project.pbxproj,
installer/installer.packproj: Rearranging stuff and updating
2004-09-09 13:33 persquare
* distroMakefile: First steps towards a fully automated release
system.
2004-09-09 12:53 persquare
* installer/: installer.packproj, postflight, preflight: Now using
Iceberg to create an installer pkg.
2004-09-04 17:46 persquare
* AQTClientHandler.h, AQTClientHandler.m: Removing unused files.
2004-09-04 17:42 persquare
* AQTAdapterPrivateMethods.h, AQTAdapterPrivateMethods.m: Removing
unused files.
2004-09-04 17:36 persquare
* AquaTerm.pbproj/project.pbxproj, AquaTerm.app-Info.plist:
Bringing project up to date.
2004-09-04 17:33 persquare
* AQTController.m, AQTGraphicDrawingMethods.m, AQTPrefController.h,
AQTPrefController.m, English.lproj/Preferences.nib/classes.nib,
English.lproj/Preferences.nib/info.nib,
English.lproj/Preferences.nib/objects.nib: Adding preference to
constrain minimum line width used in plot to 0.25 pts.
2004-09-03 23:24 persquare
* AQTClientManager.m: Catch server errors as gracefully as
possible, i.e. don't crash the client. (#1019717)
2004-09-01 11:46 persquare
* AQTClientManager.m: Fixing problems with launch of AquaTerm from
client (#1019712).
2004-08-31 19:26 persquare
* AQTClientManager.m: Remove hardcoded server name. Prefix log
messages with "libaquaterm::".
2004-08-25 21:11 persquare
* AQTGraphicDrawingMethods.m: Fixing bug where an invalid fontface
request would crash AQT. (#1015888)
2004-06-10 16:13 persquare
* AquaTerm.pbproj/project.pbxproj: Updating.
2004-06-10 16:10 persquare
* AQTModel.m, AQTModelAdditions.m, AQTPlot.m: Fixing resize bug.
2004-06-10 15:54 persquare
* AQTController.m: Changing default settings.
2004-06-09 19:49 persquare
* AQTGraphicDrawingMethods.m, AQTModel.h, AQTModel.m,
AQTModelAdditions.h, AQTModelAdditions.m, AQTPlot.h, AQTPlot.m:
Cleaning up dirtyRect handling, moving it to AQTModel from
AQTPlot. Moving methods from AQTPlot to a category
AQTModelAdditions.
2004-06-09 19:43 persquare
* AQTFunctions.h: Utility function to test for sizes with equal
h/w-ratio.
2004-06-09 10:09 persquare
* AQTPlot.h, AQTPlot.m: Fixing the broken dirtyRect handling.
2004-06-09 09:54 persquare
* Demo.m: Correction misuse of line instead of filled rect.
2004-05-22 17:29 persquare
* AQTView.m: Offset drawing by (0.5, 0.5). to get it properly
aligned.
2004-05-22 17:28 persquare
* AQTGraphicDrawingMethods.m: Closing holes in surfaces (between
filled areas). I don't understand the cause of this problem,
could be numerical.
2004-05-22 14:44 persquare
* AQTController.h, AQTController.m, AQTPlot.m: Fix hang when
closing > 4? windows simultaneously, by using a notification to
defer checking client state until all windows are closed (or
moved away).
2004-05-22 11:53 persquare
* AQTController.h, AQTController.m, AQTPlot.m,
English.lproj/AQTWindow.nib/info.nib,
English.lproj/AQTWindow.nib/objects.nib,
English.lproj/MainMenu1.nib/classes.nib,
English.lproj/MainMenu1.nib/info.nib,
English.lproj/MainMenu1.nib/objects.nib,
AquaTerm.pbproj/project.pbxproj: Adding window arranging
(cascade/tile).
2004-05-19 15:56 persquare
* AquaTerm.app-Info.plist: Bump version.
2004-05-19 15:55 persquare
* INSTALL, ReadMe, ToDo, distroMakefile, makeHelp: Minor updates.
2004-05-19 15:54 persquare
* aquaterm.h: Add warning comment to event handler callback.
2004-05-19 15:52 persquare
* AQTPlotBuilder.h: Add missing prototype.
2004-05-19 15:51 persquare
* AQTController.m: Be nice and display an error dialog if the
service can't be established.
2004-05-19 15:45 persquare
* AQTClientManager.h, AQTClientManager.m: Make connectionName a
parameter.
2004-05-19 00:23 persquare
* distroMakefile: Patch no longer needed.
2004-05-19 00:22 persquare
* ReleaseNotes: Updating with latest changes.
2004-05-18 23:56 persquare
* AquaTerm.pbproj/project.pbxproj: Updating project.
2004-05-18 23:54 persquare
* AQTPrefController.h, AQTPrefController.m: Adding preferences.
2004-05-18 23:53 persquare
* AQTView.m: Utilizing preferences.
2004-05-18 23:52 persquare
* AQTPlot.m: Utilizing preferences. Remember directory and filetype
for save (#872996).
2004-05-18 23:45 persquare
* AQTController.h, AQTController.m: Adding preferences to Aquaterm.
2004-05-18 23:43 persquare
* English.lproj/: AQTWindow.nib/info.nib,
AQTWindow.nib/objects.nib, ExtendSavePanel.nib/info.nib,
ExtendSavePanel.nib/objects.nib, MainMenu1.nib/classes.nib,
MainMenu1.nib/info.nib, MainMenu1.nib/objects.nib,
Preferences.nib/classes.nib, Preferences.nib/info.nib,
Preferences.nib/objects.nib: Adding Preferences nib. Updating all
nibs.
2004-03-30 11:17 persquare
* ReleaseNotes: Notes.
2004-03-30 11:13 persquare
* AQTGraphicDrawingMethods.m: Fixing a problem with leading spaces
in labels, causing problems with alignment.
2004-03-29 23:37 persquare
* AQTPlot.m: Enable Page Setup.
2004-03-17 11:20 persquare
* distroMakefile: Missing patch file added.
2004-03-17 11:19 persquare
* INSTALL: Fixing small errors.
2004-03-16 22:54 persquare
* AquaTerm.app-Info.plist: Preparing for release.
2004-03-16 22:44 persquare
* AquaTerm.pbproj/project.pbxproj: Preparing for release.
2004-03-16 22:23 persquare
* ChangeLog: Preparing for release.
2004-03-16 22:21 persquare
* AquaTerm.app-Info.plist: Bumping version number.
2004-03-16 22:09 persquare
* AQTBaseMethods.h, AQTBuilder.h, AQTBuilder.m,
AQTColorInspector.h, AQTColorInspector.m, AQTExtendedMethods.h,
AQTPlotController.h, AQTPlotController.m, AQTProtocol.h,
AQTProtocol.mdoc: Remove old files.
2004-03-16 22:05 persquare
* INSTALL, ReadMe, ReleaseNotes, ToDo, makeHelp: Visual appearance
changes.
2004-03-16 15:17 persquare
* AquaTerm.pbproj/project.pbxproj: Changes.
2004-03-16 15:17 persquare
* ReleaseNotes, makeHelp: Improving visual appearance.
2004-03-16 13:56 persquare
* AquaTerm.pbproj/project.pbxproj: A little rearranging. Script
the help file generation.
2004-03-16 13:56 persquare
* makeHelp: Script the help file generation.
2004-03-16 13:55 persquare
* ReadMe, ReleaseNotes: Cleanup.
2004-03-16 13:49 persquare
* ReadMe.txt, INSTALL, English.lproj/Credits.rtf, distroMakefile:
Cleanup.
2004-03-16 10:15 persquare
* AQTAdapter.h, AQTAdapter.m, aquaterm.h: Minor changes to visible
headers.
2004-03-16 10:14 persquare
* aquaterm.m: No more errorHandler callback from C API. It couldn't
really handle anything.
2004-03-16 10:04 persquare
* AQTAdapter.m: Correcting example code.
2004-03-16 09:58 persquare
* AQTAdapter.m, AQTClientManager.m: Fixing a problem where event
buffer wasn't properly initialized. An event loop time-out would
give an invalid return value (nil).
2004-03-15 16:41 persquare
* AQTFunctions.h, AQTFunctions.m: Fixing AQTIntervalContainsFloat()
to include endpoints. This caused horizontal and vertical
vertical lines starting on the canvas bounds to be skipped when
drwing plot. Cleaning functions. Using macros for comparison.
2004-03-15 13:27 persquare
* AQTPlot.m: Apply clipRect (=canvasRect) to graphic bounds before
comparing. Fixes a bug where plots aren't erased because of
objects extending past canvas bounds.
2004-03-14 21:38 persquare
* AQTPlot.m: Fixing dirty region handling.
2004-03-07 21:10 persquare
* AQTModel.m, AQTPlot.m: Minor change to log output format.
2004-03-04 23:35 persquare
* AQTPlotBuilder.h, AQTPlotBuilder.m: Removing a method and an ivar
that are no longer needed.
2004-03-02 23:43 persquare
* AquaTerm.pbproj/project.pbxproj: Deleted AQTPlotController.
2004-03-02 23:43 persquare
* AQTAdapter.m, AQTClientManager.h, AQTClientManager.m,
AQTClientProtocol.h, AQTConnectionProtocol.h, AQTController.h,
AQTController.m, AQTEventProtocol.h, AQTPlot.h, AQTPlot.m,
AQTPlotBuilder.h, AQTPlotBuilder.m: Massive changes to achieve
some code cleanliness. Deleted AQTPlotController and moved
functionality into AQTClientManager to avoid duplication of work.
No more cyclic dependencies between lib and app.
2004-03-02 23:40 persquare
* Bugs.m, Demo.m, Timing.m: Fix warnings.
2004-02-29 00:25 persquare
* AQTClientManager.m:
This is a fix for the bug, reported by Attilio Rivoldini, that
causes a segfault when freeing the autoreleasepool in the code
example in the (auto-) docs.
2004-02-23 16:16 persquare
* AquaTerm.pbproj/project.pbxproj: Adding Install target. Use
'sudo xcodebuild -target Install' to invoke.
2004-02-23 16:15 persquare
* AQTController.m: Adding stub text to bug/feedback mail. Always
use a mail client.
2004-02-23 16:13 persquare
* AQTAdapter.h, AQTAdapter.m, AQTPlotBuilder.h, AQTPlotBuilder.m,
aquaterm.h, aquaterm.m: Changing name from
getCurrentColorRed:green:blue to getColorRed:green:blue. Adding
getBackgroundColorRed:green:blue and support. Similar for C API.
2004-02-21 20:51 persquare
* INSTALL, distroMakefile: Automating point-releases.
2004-02-21 18:59 persquare
* AquaTerm.pbproj/per.pbxuser, AquaTerm.pbproj/project.pbxproj,
AquaTerm.app-Info.plist: Moving to XCode. This might cause
trouble.
2004-02-07 01:52 persquare
* AQTEventProtocol.h: Fixing(?) the bug that caused a hang when
trying to close a window with active client.
2003-12-29 23:11 persquare
* ReadMe.txt: Important note.
2003-12-29 23:02 persquare
* ReadMe.txt: Some more info...
2003-12-29 22:44 persquare
* AquaTerm.pbproj/project.pbxproj: Cleaning.
2003-12-29 22:44 persquare
* ReadMe.txt: Some more info.
2003-12-29 22:27 persquare
* ReadMe.txt, ToDo: Updating to AQT1.0.
2003-12-29 16:03 persquare
* AQTAdapter.m, AQTClientManager.m, AQTPlot.m, AQTPlotBuilder.m,
aquaterm.m: Removing excess logging.
2003-12-29 15:51 persquare
* ChangeLog: Update.
2003-12-29 15:49 persquare
* AQTClientProtocol.h, AQTEventProtocol.h: Minor change.
2003-12-29 15:38 persquare
* AquaTerm.pbproj/project.pbxproj: Rearranging stuff.
2003-12-29 15:37 persquare
* English.lproj/AQTWindow.nib/: classes.nib, info.nib, objects.nib:
Minor cleanup.
2003-12-29 15:37 persquare
* Demo.m: Adding transdformed image demo. Minor cleanup.
2003-12-29 15:36 persquare
* aquaterm.h, aquaterm.m: Major rewrite. This is now a wrapper
around the ObjC API.
2003-12-29 15:34 persquare
* AQTClientManager.m: Adding FIXME note.
2003-12-10 22:50 persquare
* AQTPlot.m, AQTView.m: Fixing cursor behavior to correctly
indicate event processing state.
2003-12-10 21:38 persquare
* AquaTerm.pbproj/project.pbxproj: Adding a unified C API.
2003-12-10 21:37 persquare