This repository has been archived by the owner on Mar 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathChangeLog
1849 lines (1381 loc) · 77.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
SubVersion: $Id$
Log of changes: tilp (cables, calcs, files, ticonv)
- 31/03/2013, version 1.17 (1.3.4, 1.1.8, 1.1.6, 1.1.4): debrouxl
- regenerate with Autoconf 2.69 and Automake 1.11.5.
- honor CFLAGS when compiling cleaner. Patch by Malcolm J. Lewis, SF bug #3491681.
- fix FreeDesktop .desktop files. Patch by Malcolm J. Lewis, SF bug #3491673.
- enable USB scan at startup (options.auto_detect) by default.
- perform minor documentation updates
- install_tilp.sh: make the script sensitive to PREFIX and SRCDIR environment variables; abort early when $PREFIX cannot be written to.
- add "torture test" programs for testing how functions of the public API react to NULL parameters, and execute these torture tests in maintainer recompilation scripts.
- make the .desktop files pass desktop-file-validate.
- a renaming related to a change in libticalcs2: FNCT_DUMP_ROM -> FNCT_DUMP_ROM1.
- installer: upgrade dependency on GTK+ runtime from gladewin32 2.12.9 to gtk-win 2.24.8.
- convert from Glade to GTK+Builder, mostly by Jon Sturm.
- replace GLADE_CB macro with TILP_EXPORT, by Jon Sturm.
- make Glib 2.32 and later print info and debug messages, restoring the behaviour of older versions.
- integrate new TI-Z80 ROM dumper (with, among others, the ability to automatically dump 82 and 85, and the ability to unlock 73/83+/84+ Flash memory without an OS patch), and other ROM dumping improvements, by Benjamin Moody.
- use LF line endings throughout the sources.
- add initial, experimental TI-80 VSC support, by Randy Compton.
- some updates, wording and formatting changes to the man pages.
- fix some spelling errors (or at least, infrequent forms) reported by Lintian (through Albert "alberthro" Huang) and rpmlint (through TC01).
- installer: fix 32-on-64 support, remove superfluous lines. Reported by Benjamin Moody.
- change cross-compilation maintainer script after adding dynamic libusb-win32 loading to libticables.
- in the installer, use rwpsetup instead of dhasetup for installing DB9/DB25 drivers on 64-bit Windows.
- define combobox semantics in XML and retrieve them from C, instead of having two desynchronized definitions.
- fix a number of problems related to unaligned reads/writes and left shifts of count >= width of type; fix more compiler warnings reported by clang.
- fix more compiler warnings reported (or made more visible) by clang.
- compile manpage cleaner with host compiler (borrowing Benjamin Moody's code from libticalcs' configure).
- fix crash reported by Deathrider.
- add -Werror=implicit-function-declaration to maintainer scripts.
- install_tilp.sh: add ready-made `apt-get install` command line for Debian & derivatives.
- installer: use libusb0.dll to install driver on both 32-bit and 64-bit Windows, instead of either libusb0_x86.dll or libusb.dll. Patch by Benjamin Moody.
- remove some MinGW special-casing. Reported by Jonimus and tifreak, discussed with Jonimus and Benjamin Moody.
- redirect log output to a file, better way. Patch by Benjamin Moody.
- compile with -mwindows, so as to disable the command-line window.
- maintainer build scripts: make declaration-after-statement a hard error.
- 14/12/2011, version 1.16 (1.3.3, 1.1.7, 1.1.5, 1.1.3): debrouxl
- add support for getting screenshots from Nspire CX calculators.
- when displaying calc information, print boot2 version if any; add several translatable strings and translations.
- on Windows, redirect stdout to ~/.tilp.log (because the Windows terminal is too slow); eliminate explicit usage of stdout.
- on Windows, add support for storing the config file in the home directory and for upgrading from a config file stored in the install directory.
- upgrade COPYING files and FSF addresses embedded in files, so as to make rpmlint happier.
- add a check against NULL in tilp_pbar_type to prevent a crash when attempting to communicate with CALC_NONE, reported by AHelper2;
- add traces in tilp_device_open to indicate the cable, port and calculator with which communication is attempted, and a warning if the calculator is CALC_NONE.
- upgrade libusb-win32 and INF files to a version that 1) allows stable use of the filter driver and 2) makes Nspire support useful again on Windows. Cleanup the tree.
- installer: download GTK+ runtime directly from the graphical installer.
- rename icon to tilp.xpm.
- integrate FD.o .desktop files.
- reconfigure with autoconf 2.68 and libtool 2.4.
- add MIME types definition, contributed by Jon Sturm and slightly modified.
- improve drag&drop code, contributed by Jon Sturm.
- reconfigure with libtool 2.4.2.
- fix a cause of crashes if a transfer fails.
- upgrade version of gettext to 0.17, released in late 2007.
- overhaul install_tilp.sh.
- 28/05/2011, version 1.15 (1.3.2, 1.1.6, 1.1.4, 1.1.2): debrouxl
- remove autogenerated Changelog files and empty TRANSLATORS files.
- change encoding in .rc file.
- update three files left over from the translation update in TILP II 1.14.
- GUI improvements by Jon Sturm (require GTK+ 2.12 or later):
- use more native icons;
- add a menu.
- explicitly check for AC_PROG_CXX, fixes `configure` after regeneration by `autoreconf -i -f` on a host running libtool 2.x (reported and fixed by Jon Sturm).
- remove several functions that have been deprecated for years.
- first round of compiler (gcc, clang) warning fixes.
- fix a number of compiler warnings, memory leaks, unclosed files.
- misc. changes and documentation updates, most of them Nspire-related.
- fixes for the TI-83+ series: no OS version checking is necessary for the
del_var and clock operations, because they are already covered by the OPS_*
model checks (reported by Jon Sturm)
- remove unused TI-8x OS version checking code.
- require AMS >= 2.09 for folder creation on the TI-68k series.
- minor changes to make autotools definitions work with both libtool 1.x and 2.x.
- use AM_GNU_GETTEXT_VERSION to use a consistent version of gettext (namely 0.16, released in late 2006).
- fix display of files whose size is exactly 1 KB or 1 MB.
- reconfigure under Debian Squeeze with Autoconf 2.67 and Automake 1.11.1.
- in the building process of the manpage cleaner, use $(CC) instead of gcc. Extracted from MacPorts.
- add VS 2008 project/solution files.
- documentation and comment updates.
- GTK+ 2.24 compatibility fix.
- 08/04/2010, version 1.14 (1.3.1, 1.1.5, 1.1.3, 1.1.1): debrouxl
- minor documentation updates.
- updated translations.
- updated existing InnoSetup script, created cross-compilation InnoSetup script.
- removed usage of deprecated GTK functions
- updated tilp.desktop file, contributed by Jon Sturm.
- updated tilp.rc file.
- updated to Autoconf 2.65.
- 01/06/2009, version 1.13 (1.3.0, 1.1.4, 1.1.2, 1.1.0): roms
- merged Lionel's patch: add some new & shorter command line flags
for use by GCC4TI
- changed location of "My TI Files" folder (Vista)
- replaced obselete function used in the drive list menu (Vista)
- fixed bug #2146886: "Crash when auto-detecting device"
- removed obsolete virtual link cable
- upgraded deprecated GTK+ code
- 13/08/2008, version 1.12: (1.2.0, 1.1.3, 1.1.1, 1.0.6): roms
- added NSpire OS1.4 support
- 11/03/2008, version 1.11: (1.2.0, 1.1.2, 1.1.1, 1.0.6): roms
- fixed various bug crashes due to non NULLified pointers in
pbar structure.
- don't check whether calc is ready before doing a screenshot. Avoid to
return to HOME.
- force ready check when sending NSpire OS
=> released on 28/03/2008
- 26/01/2008, version 1.10b: (1.2.0, 1.1.2, 1.1.0, 1.0.6): roms
- fixed InnoSetup installer for use with GTK+ >= 2.10.x
- 16/10/2007, version 1.10: (1.2.0, 1.1.0, 1.1.0, 1.0.6): roms
- adding NSpire support
- ticables library does not reset link at opening stage any longer.
Managed by TiLP now.
- modified CalcInfos structure to support NSpire
- format IDLIST for NSpire
- reworked Device Infos dialog box
- bug to fix: with text msg_box: need to press a key before ENTER
rather than pressing ENTER
- added support for the alternate (KDE/M$) button order (kevin)
=> released on 10/01/2008
- 01/10/2007, version 1.09: (1.1.1, 1.0.9, 1.0.9, 1.0.5): roms
- removed old GTK file selector because being deprecated with GTK+ 2.12
- slightly increased timeout when sending FLASH applications, the
previous timeout is nearly too small for big apps
- fixed KDE file selector support (needed autoheader rerun) (kevin)
- remember filesel_type=native when saving the configuration (kevin)
- fixed dirname+filename concatenation for KDE file selector (kevin)
=> not released
- 17/09/2007, version 1.08 (1.1.0, 1.0.8, 1.0.8, 1.0.5): roms
- screenshots can be copied into the clipboard
- use fixed fonts for release and manpage dboxes
- slightly reworked options in popup menus
- don't overwrite variable as default behavior for action box
- refresh progress bar (bug)
- check for AMS/OS version for clock support
=> tested & validated
=> released on 25/09/2007
- 13/09/2007, version 1.07b (1.1.0, 1.0.7, 1.0.7, 1.0.4): roms
- fixed ticables2 library due to bad check of dhahelper
- 03/09/2007, version 1.07a (1.0.9, 1.0.7, 1.0.7, 1.0.4): roms
- re-released due to missing file in Windows Installer (dhahelper.sys)
- includes latest ticables2 library for TiEmu (USB support)
- 26/08/2007, version 1.07 (1.0.8, 1.0.7, 1.0.7, 1.0.4): roms
- updated various documentation about the use of new USB drivers
=> released on 01/09/2007
- 19/06/2007, version 1.06 (1.0.6, 1.0.7, 1.0.7, 1.0.4): roms
- followed API changes in ticalcs2 library
- fixed potential bug in action box (var existence checking)
- fixed this bug (in ticonv):
sending LCHASE.8xp from 20sec.zip package failed on
TI84+ USB due to un-detokenization of varname (because tifiles2 don't
know whether file is targetted for TI84+ or TI84+ USB).
Sending is OK, receiving is still KO because we should pass vartype
with named lists.
- removed grouping/ungrouping of files from popup menu. Replaced it by
an access to GFM.
- fixed KDE path detection for multilib systems with both 32-bit and
64-bit libraries installed (kevin)
- made zlib non-optional now that libtifiles2 requires it anyway (kevin)
- close link cable before probing and open it after otherwise current
link cable can't be probed (serial & parallel)
=> not released
- 10/06/2007, version 1.05 (1.0.5, 1.0.6, 1.0.6, 1.0.3): roms
- sending of APPV variables in FLASH is not allowed; avoid this.
- skip sending of IDlist.8xidl (pseudo-variable)
- fixed displaying of Pic/Str/Gdb in directory listing (win32)
- fixed displaying of Y?/r? and 't' in directory listing (win32)
=> not released
- 02/04/2007, version 1.04 (1.0.5, 1.0.6, 1.0.5, 1.0.2): roms
- cosmetic change in the name of the TiEmu virtual link
- added KDE file dialog support (like in TiEmu)
- fixed/improved handheld model check
- fixed aliasing violations in Win32 file dialog code (kevin)
- added Ti File Properties dialog box
- filter -s from CFLAGS/CXXFLAGS/LDFLAGS on Darwin (kevin)
- keep link open status to avoid multiple error messages
- fixed Win32 file dialogs not setting fname to NULL when returning NULL (kevin)
=> released on 14/05/2007
- 23/02/2007, version 1.03 (1.0.4, 1.0.5, 1.0.4, 1.0.1): roms
- enabled i18n
- set home/working folder as current folder on MinGW build
=> released on 14/03/2007.
- 17/01/2007, version 1.02 (1.0.3, 1.0.4, 1.0.3, 1.0.1): roms
- added xdg-open in front of the list of browsers (kevin)
- add trailing slash for directory (otherwise, dirname with spaces
like 'My Files' are not opened properly)
- fixed sending of vars into archive thru the App node
- Titanium/USB dumper is now launched remotely
- bug #1662383: V200 replies as busy but screenshot is working anyways
- clean-up/fixes in many tifile_is calls (some of them have been simplified,
some others have been replaced by tifiles_file_test)
- check for TI8x OS version when deleting var/app
- check that handheld specified in device box matches those detected at ready check
- added a 2s pause when resetting USB communication (seems to be needed...)
- don't allow to send a TI73 TiGroup file on a TI89 for instance
(check that TiGroup matches target handheld)
=> released on 20/02/2007.
- 28/09/2006, version 1.01 (1.0.3, 1.0.2, 1.0.2, 1.0.1): roms
- as stated by Benjamin, replaced snprintf by g_snprintf which is safer
- added CABLE_DEV support for testing purposes (visible under Linux only)
- GIF: don't ask when built in _CONSOLE mode
- doesn't reopen DirectLink when using UsbKernel access
- don't reopen cable in tilp_ticalcs_isready because the Titanium with USB
doesn't like this under Linux.
- removed non-working leftovers from old Cocoa port, made OS X work like Linux instead (kevin)
- fixed locale directory (kevin)
- fixed memory leaks in config file handling (kevin)
- fixed Manpage.txt file name for non-Win32 and MinGW (kevin)
- fixed COPYING and RELEASE file names for MinGW (kevin)
- fixed about dialog not closing when Close is clicked with GTK+ 2.10 (kevin)
- remap USB handhelds from/to config file and from command line (bug)
- renamed executable tilp-2 into tilp
- renamed manpage accordingly (kevin)
=> released on 10/11/2006.
- 17/09/2006, tagged as version 1.00 (1.0.0, 1.0.0, 1.0.0, 1.0.0): roms
=> released on 20/09/2006.
- 28/08/2006, version 0.24 (0.1.4, 0.2.7, 0.2.8, 0.0.6): roms
- added grouping/ungrouping of TiGroup file in the clist popup menu
- tested & validated previous item
- revert addition of -H switch to firefox call, FC5's Firefox has no such switch
TiLP shouldn't been invoked through sudo anyway, if it is in Ubuntu, that's a packaging bug (kevin)
- fixed bug with file selection (files was selected but never removed from selection)
- removed local/full path option
- fixed DnD to target folder
- fixed skip/retry/cancel trap: doesn't catch ERR_ABORT
- added skip/retry/cancel for sending of var/app
- fixed action box: can't enter folder/varname with more than 8 chars
- fixed command line (GUI mode): file is used twice
- can send TiGroup from command line and fixed bug in tilp_send
- fixed TiGroup restore
- fixed UTF8 translation in the action box (relies on the real handheld model)
- reworked RAM/FLASH used/free displaying: use table container
- for now, display a user box between the sending of dumping program and the receiving of data.
This will give time to user to enter needed commands without triggering timeouts.
- reverted back previous change. ticalcs2 library don't allow this (program is sent internally)
- modified ticalcs2 library consequently. Reverted back previous change again and clean-up.
- set all custom dialog boxes to GTK_WIN_POS_MOUSE instead of GTK_WIN_POS_NONE
- set all modal dialog boxes to GTK_WIN_POS_MOUSE instead of GTK_WIN_POS_NONE
- raise a information message when Linux user choose Titanium/USB.
- 26/08/2006, version 0.23 (0.1.4, 0.2.6, 0.2.7, 0.0.5): roms
- source code is frozen: entering in testing phase
- check return value of all tifiles_xxxx calls into TiLP
- reworked user boxes: use GTK standard ones instead
- fixed 'Current Folder' button
=> released on 28/08/2006.
- 22/08/2006, version 0.22 (0.1.3, 0.2.5, 0.2.6, 0.0.5): roms
- added full TiGroup support (sending only)
- 06/08/2006, version 0.21 (0.1.3, 0.2.5, 0.2.4, 0.0.5): roms
- sending app without dirlist make TiLP crash: fixed
- re-enabled 'local/full path' option
- added option allowing to select behaviour of backup (old: backup/group, new: TiGroup)
- fixed possible conflict between FLASH token & FLASH folder
- preload FLASH files like single/group files (consistency)
- renamed/cleaned-up tilp_slct.c functions
- del_var: increase timeout due to garbage collecting
- fixed timeout in send_flash, send_tigroup and del_var
- 'Ready' reopens SilverLink device like DirectLink (the only way to clear error)
- reworked selection system so that selection contains FileEntry with only _one_ VarEntry. Needed for future skip/retry/cancel dialog box
- implemented Skip/Retry/Cancel dialog box when sending file/apps
- fixed bug: file can be selected several times
- fixed T. Evans' bug: fix path with save dialog
- fixed Ubuntu Bug #49256 (reported as bug #1513271)
- 18/07/2006, version 0.20 (0.1.3, 0.2.4, 0.2.2, 0.0.5): roms
- use ticalcs_probe instead of the previous code (easier & clearer)
- added Seamonkey to the browser list, suggest Firefox instead of the obsolete Mozilla Suite (kevin)
- fixed bug #1523480: --no-gui doesn't work
- fixed bug reported by "Andrew Haninger" <[email protected]>: can't send TI85 backup
from command line
- fixed bug in the filename naming scheme
- implemented Armand's suggestion: allow to directly input the path from keyboard
- 12/07/2006, version 0.19 (0.1.3, 0.2.3, 0.2.2, 0.0.5): roms
- for now, use this naming scheme for TI9x var filenames: folder.var.extension
- suggestion of FTP83+: don't allow use of USB options is USB support is not available.
- 25/06/2006, version 0.18 (0.1.1, 0.2.2, 0.2.0, 0.0.4): roms
- implemented full TiGroup support (ram, archive and flash)
- re-enabled device open/close instead of reset.
- fixed NULL dereference in filesel.c (kevin)
- refresh right frame after var retrieval
- fixed bad displaying of lists on TI84+ due to bad translation of CalcModel value.
- 18/06/2006, version 0.17 (0.1.1, 0.2.2, 0.2.0, 0.0.3): roms
- changes in tifiles API (TiGroup)
- changes in ticalcs API (backup with TiGroup)
- fixed accelerator keys in popup menu (right frame)
- added accelarator keys in popup menu (left frame)
- fixed manpage about DirectLink
- 11/06/2006, version 0.16 (0.1.1, 0.2.1, 0.1.5, 0.0.3): roms
- removed text argument in pbars: not used because internally set-up by ticalc2
- reworked management of progress bars
- fixed mis-use of file selection (mix between local.selection & local.file_selection)
=> critical bug !
- B.Moody: "If TiLP detects a cable, but no calculator is connected, then the cable
will not be uninitialized properly before being reinitialized. The result
is that TiLP attempts to open the cable twice." -> patch merged.
- updates dirlist & memory when sending apps
- 09/06/2006, version 0.15 (0.1.1, 0.2.0, 0.1.5, 0.0.3): roms
- use reworked dirlist API
- updated TiLP to follow the slightly modified FLASH app dirlist format
- fixed 'bug' #1499672: sorting by name is case insensitive for now.
- fixed bug #1499672: sorting by type didn't work properly on the pc-panel
- implemented sending of several FLASH app at once
- allowed simultaneous sending of apps & vars
- 28/05/2006, version 0.14 (0.1.0, 0.1.3, 0.1.4, 0.0.3): roms
- fixed USB device reconnection
- reworked device box: display detected USB device in a list as well as full probing list.
- tilp_device_probe_usb is now restricted to FLASH devices only (faster)
- "SilverLink is still NACK'ed after error. Does not appear with TiLP1 => open/close
instead of reset. Why ?" => Silver/DirectLink cable are now reopened instead of being
reset when error occurs.
- allow receiving of several FLASH app at once
- fixed/improved tilp_file_check & tilp_file_move_with_check
- 25/05/2006, version 0.13 (0.0.9, 0.1.3, 0.1.4, 0.0.3): roms/tyler
- removed certificate support (deprecated)
- raise the action box when sending files from command line in GUI mode
- fixed violation in tree_selection_changed (raised when selecting files for deletion)
- fixed progress bar update (tyler)
- allowed MinGW Compiler to run TiLP on a Linux File Hierarchy system (tyler)
- 09/05/2006, version 0.12 (0.0.9, 0.1.2, 0.1.3, 0.0.3): roms
- fixed bug in the use of USB auto-detect
- rename 'Ready' button into 'Connect' when using DirectLink
- update remote frame in the action box
- update memory used when sending/deleting variables
- 06/05/2006, version 0.11 (0.0.9, 0.1.1, 0.1.3, 0.0.3): roms
- added a new label which display RAM/FLASH free &used
- show more levels in the current path
- reworked/factorized opening/closing of device
- auto-detect USB devices at startup
- reworked full auto-detection
- 15/04/2006, version 0.10 (0.0.7, 0.1.0, 0.1.2, 0.0.3): roms
- follows ticalcs2 changes in the API
- added Titanium USB handheld support
- reworked displaying of Handheld Informations box
- 03/04/2006, version 0.09 (0.0.7, 0.0.8, 0.1.2, 0.0.3): roms
- added TI84+ USB handheld support
- re-map 0x2080..9 chars into the ctree
- 03/02/2006, version 0.08 (0.0.7, 0.0.6, 0.1.0, 0.0.1): roms (testing phase: ~260 tests)
- the right view did not filter file types correctly
- user's suggestion: automatically change for detected cable/calc.
- fixed displaying of greek chars in the action dbox.
- can't load pdf/eps files
- clamp gtk_update.cnt2 to avoid warnings
- fixed group filename (recently modified but not propagated).
- don't update dirlist with TI82/85
- don't display hw revision for TI8x calcs
- fixed the command line argument passing in the InnoSetup script (shell registering)
- 21/02/2006, version 0.07 (0.0.6, 0.0.5, 0.0.9, 0.0.1): roms
- switched to ticonv library
- fixed bug with the re-target folder feature.
- make handheld goes to HOME when not ready (kevin)
- implemented feature request: "TiLP always gets a list of the files on the calc, even if I already " (T. Evans)
- when ticables/ticalcs error occurs: reset cable and wait for 0.5s (i/o link active -> disappear)
- don't use cable_handle & calc_handle fields: they are private
- fixed command line
- added skip/retry/cancel box when sending of multiple files
- same for receiving of several variables
- 07/02/2006, version 0.06 (0.0.4, 0.0.6, 0.0.4): roms
- updated manpage according to bug #1397587
- varnames with greek characters are now saved fine (T. Evans)
- fixed bug #1430307: "full path on cmd line" (hiboo)
- removed 'exit home dir' limitation/security (kevin)
- ungroup TI82/85 files when option is set to 'single'
- rewrite target folder when sending to a specific folder (T. Evans)
- fixed bug in the Win32 file selector (default folder)
- 03/02/2006, version 0.05 (0.0.4, 0.0.6, 0.0.4): roms
- tifiles2 library has switched to 'glib filename encoding'
- fixed missing or bad utf8/glib conversions
- added TiGroup support (sending only = read only)
- 30/01/2006, version 0.04 (0.0.4, 0.0.5, 0.0.4): roms
- reverted tifiles to locale encoding
- checked/fixed tilp for use of the good filename encoding
- 21/01/2006, version 0.03 (0.0.4, 0.0.5, 0.0.4): roms
- fixed a bug in the TiLP error management system
- cable probe: use first cable instead of the last one. Anywais, this box should display a list so that user can choose cable & calc.
- 15/09/2005, version 0.02 (0.0.3, 0.0.3, 0.0.3): roms
- updated autotools scripts (tijl)
- imported gettext 0.14.5 (tijl)
- enabled i18n (tijl)
- fixed glade errors by linking tilp with -export-dynamic (tijl)
- fixed MinGW compilation issues but the -lcomdlg32 issue still need to be fixed.
- 09/06/2005, version 0.01 (0.0.1, 0.0.1, 0.0.1): roms
Use new TiLP2 framework (libti*2)
=============[ TiLP II starts here ]==============
- 26/05/2005, version 6.79 (3.9.2, 0.6.5, 4.5.9): jb
Images in EPS/PDF files now compressed if zlib is available and
ASCII85-encoded.
Updated version in configure.ac to 6.79.
- 24/05/2005, version 6.79 (3.9.2, 0.6.4, 4.5.9): jb
Added PDF/EPS image support for screenshots.
- 28/02/2005, version 6.78 (3.8.8, 0.6.2, 4.5.7): roms
Fixed creation of /usr/lib/tilp directory.
Fixed 'Help->User's manual item'.
ROM dump for TI83+/84+ SilverEdition is now complete but may not work.
Improved go_to_bookmark.
Updated obsoleted bookmarks.
- 29/01/2005, version 6.77 (3.8.7, 0.6.1, 4.5.6): roms
Added full FLASH support for TI89 Titanium.
Added full FLASH support for TI84+. This might have broken TI83+
support.
- 02/10/2004, version 6.76 (3.8.7, 0.6.1, 4.5.5): roms
Thanks to "Benjamin Moody" <[email protected]> for his new TI83+/TI84+ ROM dumper.
Bug fixed in the action box (overwrite/rename variables).
Log file location improved by Julien Blache <[email protected]>.
- 18/09/2004, version 6.75 (3.8.6, 0.6.1, 4.5.4): roms
Added TI84+ and TI89 Titanium support thru std I/O port (linkport).
OS upgrade does not work on both models !
Need to add new ROM dumper.
- 22/08/2004, version 6.74c (3.8.6, 0.6.0, 4.5.3): roms
Rebuild to use a new GTK+/Win32 package. The previous one was abandonned and conflicts with The GiMP.
- 02/07/2004, version 6.74b (3.8.6, 0.5.9, 4.5.3): roms
Fixed a bug reported in the forum: TiLP crashes when parsing a folder which contains dots
(such as 'a1.2').
- 29/06/2004, version 6.74 (3.8.6, 0.5.9, 4.5.3): roms
Checked possible bugs reported on TI89 AMS 2.05 by Lionel Debroux <[email protected]>:
- warning with PortTalk (mis-installed): not reproducted.
- change settings set an error: not reproduced.
- comm box: VTi and TiEmu cable were swapped, fixed.
- pb of backup: not reproduced.
- 16/05/2004, version 6.73 (3.8.5, 0.5.9, 4.5.3): roms
Added null cable support.
Bug fix in the comm box.
- 24/04/2004, version 6.72 (3.8.4, 0.5.9, 4.5.3): roms
Comm box improved: reset port when changing cable (avoid bad args).
Added local GTK+ deprecation in toolbar.c (GTK+ 2.4, Gentoo).
Bug fix (SilverLink Win32): string buffer in tilp_error too short.
- 08/04/2004, version 6.71 (3.8.1, 0.5.8, 4.5.3): roms
Redirection of stdout/stderr by callbacks and minor improvements.
Timeout has been increased to 30s instead of 10s during FLASH apps/os
sending to avoid garbage collection.
SilverLink/Win32 support is ok for all operations.
SilverLink/Linux support is ok for all operations except sending OS.
Bug: formatting of path in labels.c
Bug: wrong handling of TIB files.
Fixed many other bugs.
- 24/03/2004, version 6.70 (3.8.0, 0.5.7, 4.5.2): roms
Added menu entry and mime types for KDE & Gnome.
Bug fix: creation of the '/usr/lib/tilp' directory.
Note: --enable-exit-homedir is on now !
Bug: gdk_pixbuf_save requires error to be set on NULL.
Added access to log file from menu.
GUI clean-up.
configure.in requires latest versions for _all_ libs. To be sure !
- 17/03/2004, version 6.69 (3.7.6, 0.5.6, 4.5.2): roms
Use new libticalcs (removed GLib dependancies) thus libticalcs-4 is no
longer needed.
We were using dirlist in v1 mode due to memory corruption.
Fixed in dirlist_v1_to_v2: XXXX_NODE_NAME was not duplicated by
malloc. This is the reason why dirlist v1=>2 was buggy !
Dirlist v2 is ok.
- 27/08/2003, version 6.68: Maintenance release by JB.
Upgraded to libtool 1.5
Upgraded to automake 1.7
Fixed registry location on UNIX : sysconfdir
Fixed potfiles generation
- 19/05/2003, version 6.67-beta3 (3.7.6, 0.5.6, 4.5.0):
French html manual added.
- 15/05/2003, version 6.67-beta2 (3.7.6, 0.5.6, 4.5.0):
Beta release of the Windows version on ticalc.org.
- 09/05/2003, version 6.68 (3.7.6, 0.5.6, 4.4.9):
Re-enabled mfc folder for SVN repository.
Rebuilt under Win32.
Fixed "Invalid UTF-8 ..." strings appearing in DOS box and some bug
fixes.
- 04/05/2003, version 6.67-beta1:
Beta release of the Linux version on ticalc.org.
- 03/05/2003, version 6.67 (3.7.6, 0.5.6, 4.4.9):
Bug fix in the screenshot box (fsel box displayed while connection
failed).
Statusbar updated to new callback.
mkdir: utf8 to locale conversion (the GLib function seems not to
work correctly) -> pending
- 23/04/2003, version 6.66 (3.7.5, 0.5.5, 4.4.9):
Bug fixes with g_strfreev thanks to Tijl.
Small fixes in the plugin support.
Execution order changed: run, and next: load/save
Added Group File Viewer plugin.
- 20/04/2003, version 6.65 (3.7.5, 0.5.5, 4.4.9):
Fixed problems of font by using Unicode translation.
All characters (latin & greek) are displayed fine in both windows
(computer & calc).
Win32 build.
Fonts dir removed.
- 20/04/2003, version 6.64 (3.7.5, 0.5.4, 4.4.9):
Tijl's patch merged.
- 15/04/2003, version 6.63 (3.7.4, 0.5.3, 4.4.7):
'use_checksum' option removed (unused).
Warnings due to redefinition of PACKAGES in plugins fixed.
Bitmap to bytemap conversion added into tilp_screen.c as well as
blurry mode.
Switched to dirlist v2.
- 05/04/2003, version 6.62 (3.7.4, 0.5.3, 4.4.7):
Icon name & descriptive separated.
i18n enabled for Windows.
- 31/03/2003, version 6.61 (3.7.4, 0.5.2, 4.4.7):
Plug-in support improved and fixed.
Included French translations.
tilp_error.c & gtk_refresh.c modified (locale to utf8 translation).
- 30/03/2003, version 6.60 (3.7.4, 0.5.2, 4.4.7):
i18n updated.
Changed location of the registry file (/etc/ -> ${prefix}/etc).
- 28/03/2003, version 6.59 (3.7.2, 0.5.1, 4.4.6):
Win32 rebuild (GTK target under MSVC).
ICO files re-enabled (it seems that pixbuf support many other formats
than png/jpg).
registry file location changed to $(share).
- 21/03/2003, version 6.58 (3.7.2, 0.5.1, 4.4.6):
Dependancy change: libticalcs-4 instead of libticalcs.
- 17/03/2003, version 6.57 (3.7.1, 0.5.1, 4.4.5): testing phase
Process ('Guidelines for logging.txt' from the Ti Link Guide):
- fastAVRlink on COM2 (TiLP)
- DSK on the 'T'
- GreyLink on COM1 (TI's SDK)
TIXX: screen, dirlist, backup, vars, os/app, dumping, clock, idlist
TI73: ok, ok, ??, ok, ok/??, na, na, na
TI83+: ok, ok, ok, ok, ok/ok, ??, na, ??
TI82: ok, na, ok, ok, na/na, ??, na, na
TI85: ok, na, ok, ok, na/na, ??, na, na
TI83: ok, ok, ok, ok, na/na, ??, na, na
TI86: ok, ok, ok, ok, na/na, ok, na, na
TI92: ok, ok, ok, ok, na/na, ok, na, na
TI89: ok, ok, ok, ok, ok/ok, ok, ok, ok
TI92+: ok, ok, ok, ok, ??/??, ok, ok, ?? (not testable w/ VTi)
V200: ok, ok, ok, ok, ??/??, ok, ok, ?? (not testable w/ VTi_v200)
TI89 ROM dumping has been tested with SilverLink cable thru libusb
under 2.5.65 kernel (try and run make gconfig) !
Other tests have been done with an AVRlink @ 9600 bauds.
Bug fix in file selections.
- 08/03/2003, version 6.56 (3.7.0, 0.4.9, 4.4.3):
DnD improved and finished.
Some fixes.
- 05/03/2003, version 6.55 (3.7.0, 0.4.8, 4.4.3):
GUI modified to be conform with the Gnome's HIG (Human Interface
Guidelines) specification.
Send var & Send app splitted.
- 03/03/2003, version 6.54 (3.7.0, 0.4.8, 4.4.3):
Command line support improved. Manpage updated. Bug fix.
- 02/03/2003, version 6.53 (3.7.0, 0.4.8, 4.4.3):
Added support for new directory list format (libcalcs v4.4.3).
- 23/02/2003, version 6.52 (3.6.7, 0.4.8, 4.4.2):
DnD done.
Bug fix in the comm box.
Clock management is working fine now.
- 13/02/2003 to 23/02/2003, version 6.51 (3.6.7, 0.4.8, 4.4.2):
6.06's Makefile merged.
Some clean-up and modifications in the core.
GTK2 migration finished.
Added the ability to directly send var to FLASH (TI83+).
- 07/02/2003, version 6.50 (3.6.6, 0.4.7, 4.4.1):
Migration to GTK2 started...
/*
TiLP v7.00: GTK+ 2.0
*/
- 03/02/2003, version 6.05 (3.6.5, 0.4.5, 4.3.2):
tilp_core clean-up to prepare TiLP v7.00...
- 29/01/2003, version 6.04 (3.6.4, 0.4.4, 4.3.1):
"Msg: Invalid port: try to use an I/O port device which is incompatible with the link cable. Cause: It's due to a misuse of library, probably a TiLP bug. Mail to: [email protected] System: No such file or directory (errno = 2)." -> "changing link cable w/o changing port -> invalid port": bug fixed.
The bug fix has not been propagated into the Win32 port, yet.
Multiple mkdir functions moved into tilp_files.c (it was a bug !)
- 26/01/2003, version 6.03 (3.6.4, 0.4.4, 4.3.1):
Slightly modified configure.in script for the GenToo distro.
(Brent Redeker <[email protected]>).
Fixed installing pb with icons (again).
- 25/01/2003, version 6.02 (3.6.4, 0.4.4, 4.3.1):
Added BSD target to configure.ac. Tijl's patches merged.
configure.ac cleaned-up.
Compilable with MinGW (under MSYS and CygWin).
- 20/01/2002, version 6.01 (3.6.3, 0.4.2, 4.3.0):
Fixed installing pb with icons.
Added checking for mkfontdir.
- 17/01/2002, version 5.54 (3.6.3, 0.4.2, 4.3.0): 6.00-final
Officially released. Announced on ticalc, freshmeat and gnome.
Released a TiLP SDK for Windows which contains code, headers and libs.
- 15/01/2002, version 5.53 (3.6.2, 0.4.2, 4.3.0): pre17
Icons have been converted into pixmaps. This solves problems of
endianess (JB).
- 25/12/2002, version 5.52 (3.6.2, 0.4.2, 4.3.0): pre16b
- 23/12/2002, version 5.51 (3.6.1, 0.4.2, 4.2.9): pre16
Added pkg-config support.
- 20/12/2002, version 5.50 (3.6.0, 0.4.1, 4.2.8): pre15 or 6.00 final ?
Rebuilt under Win32 (w/ ticables v3.5.4).
Officially released on ticalc.org
- 15/11/2002, version 5.49 (3.5.1, 0.4.0, 4.2.8): pre14b
configure.ac improved.
- 01/11/2002, version 5.48 (3.5.0, 0.3.9, 4.2.7): pre14
Added registry parsing.
To do: registry program.
- 29/10/2002, version 5.47 (3.5.0, 0.3.9, 4.2.7): pre13
Win32: cable changes was not taken into account.
Pb of calling convention with the SilverLink driver under Win98.
Plug-in support frozen.
- 26/10/2002, version 5.46 (3.4.9, 0.3.9, 4.2.7): pre12
Plug-in pre-support.
Bug fixed in the screenshot dbox thanks to K. Kofler.
- 25/10/2002, version 5.45 (3.4.9, 0.3.9, 4.2.7): pre11
Win32 rebuild.
XPM/ICO functions slightly modified.
- 21/10/2002, version 5.44 (3.4.8, 0.3.9, 4.2.7): pre10
Added a registry file for future plugins.
- 03/10/2002, version 5.43 (3.4.7, 0.3.9, 4.2.5): pre9
Added bookmarks.
- 29/09/2002, version 5.42 (3.4.7, 0.3.9, 4.2.5): pre8
Added icon & WM informations.
- 28/09/2002, version 5.41 (3.4.7, 0.3.9, 4.2.5): pre7
GUI changes in the Linux version (synch)
- 25/09/2002, version 5.40 (3.4.7, 0.3.8, 4.2.4): pre6
Win32 port.
- 17/09/2002, version 5.39 (3.4.6, 0.3.7, 4.2.3): pre5
Bug fix in the GUI thanks to K. Kofler.
ROM dumping roll-back fixed.
- 15/09/2002, version 5.38 (3.4.5, 0.3.6, 4.2.1): pre4
Linux version officially released on ticalc.org !
- 11/09/2002, version 5.37 (3.4.5, 0.3.6, 4.2.1): pre3
<< September 11th, 2002: 1st commemoration of terrorist attacks, 3000
people was killed... >>
Well, added Jesse Palmer's icons.
Changed pixmap naming scheme.
Added .ico support in image manipulation routines.
- 03/09/2002, version 5.36 (3.4.5, 0.3.4/0.3.5, 4.2.0/4.2.1):
I got my first job. Yipee !
Confirmation box for sending variables.
- 01/09/2002, version 5.35 (3.4.5, 0.3.4, 4.1.8/4.1.9):
GUI clean-up.
AMS2ROM to fix.
Clock management added.
- 31/08/2002, version 5.34 (3.4.5, 0.3.3, 4.1.7): testing phase
TIXX: vars, backup, flash, gfm, comp
TI82: ok, ok, na, ok, ok
TI85: ok, ok, na, ok, ok
TI83: ok, ok, na, ok, ok
TI86: ok, ok, na, ok, ok
TI83+: ok, ok, ok, ok, ok
TI73: ok, ok, ok, ok, ok
TI92: ok, ok, na, ok, ok
TI89/TI92+: ok, ok, ok, ok, ok
V200: ok, ok, ok, ok, ok, clock: ok/ko
- 26/08/2002, version 5.34 (3.4.5, 0.3.2, 4.1.6): pre2
Added V200 support.
Added User's Manual (html format).
- 23/08/2002, version 5.33 (3.4.5, 0.3.1, 4.1.5):
Display what the TI file is in the right window (file type)
- 19/08/2002, version 5.32 (3.4.5, 0.3.0, 4.1.5): 6.00-pre1
image routines modifications (stdint.h)
screendump inversion fixed
added the ability to save a startup directory
chdir call wrapped (Linux security checking)
- 18/08/2002, version 5.31:
testing phase:
- screendump: blurry colors fixed
- screendump: jpeg to fix
- TI82/85: calc & GFM are ok
- TI83/86: calc & GFM are ok
- TI73/83+: all ok except for FLASH os
- TI89/92/92+: calc & GFM ok
- 17/08/2002, version 5.30 (3.4.0, 0.2.8, 4.1.4):
send/recv vars rewritten
- 16/08/2002, version 5.29 (3.4.3, 0.2.8, 4.1.3):
- GUI clean-up and improvement
- help file remove.
- 14/08/2002, version 5.28 (3.4.3, 0.2.7, 4.1.3):
- lib headers changes
- the tilp core related files now begin by tilp_*.[c|h]
- 12/08/2002, version 5.27 (3.4.1, 0.2.6, 4.1.2):
- libticalcs clean-up (ticalc_set_cable/calc)
- 11/08/2002, version 5.26 (3.4.1, 0.2.6, 4.1.1):
- dirlist rewritten
- 10/08/2002, version 5.25 (3.4.1, 0.2.5, 4.1.0):
- tilp core
- 10/08/2002, version 5.24 (3.4.1, 0.2.5, 4.1.0):
- removed compatibility wrapper
- some constants removed
- idlist fixed
- 27/07/2002, version 5.23 (3.4.1, 0.2.4, 4.0.7):
- cb_idlist
- cb_send_flash
- cb_recv_flash
- 20/07/2002, version 5.22 (3.4.1, 0.2.3, 4.0.6):
Some functions completely rewritten:
- cb_send_backup
- cb_recv_backup
- cb_send_var
- cb_recv_var
- cb_romdump
- 19/07/2002, version 5.21 (3.4.0, 0.1.2, 4.0.2):
Applied JB patch: fix a segfault.
- 18/07/2002, version 5.20 (3.4.0, 0.1.2, 4.0.2):
Some fixes. Latest useable release before libticalcs changes !
- 16/07/2002, version 5.19 (3.3.1, 0.1.1, 3.4.2):
GFM useable but not completely finished.
- 14/07/2002, version 5.18 (3.3.1, 0.1.0, 4.0.2):
Added grouping/ungrouping of vars and displaying.
Source code clean-up (by using the libtifiles API)
- 12/07/2002, version 5.17 (3.3.1, 4.0.2, 0.0.9):
Modified for libtifiles changes.
- 05/07/2002, version 5.16 (3.2.7, 4.0.1, 0.0.6):
Removed TIFFEP support but GFM source code is still present.
- 04/07/2002, version 5.15 (3.2.7, 4.0.1, 0.0.5):
Ported to Win32 for SilverLink driver tests.
- 13/06/2002, version 5.14 (3.2.5, 4.0.0, 0.0.2):
Added libtifiles support, libtiffep removed.
Plugin menu removed.
/*
TiLP v6.00:
- libtiffep is not used any longer
- added a new lib: the libtifiles library
*/
- 04/06/2002, version 5.13 (3.2.5, 3.3.9, 1.2.1):
Mac OS-X merge and html manual added.
- 30/05/2002, version 5.12 (3.2.4, 3.3.8, 1.2.1):
A bug fix in the 'Convert AMS upgrade function'.
- 24/05/2002, version 5.11 (3.2.4, 3.3.8, 1.2.1):
A bug fix in the Calc window (thanks to Kevin Kofler).
- 12/05/2002, version 5.10 (3.2.4, 3.3.7, 1.2.1):
Bug fix with sending of FLASH apps (pb introduced in 5.07).
- 08/05/2002, version 5.09 (3.2.4, 3.3.7, 1.2.1):
Added the ability to sign TI83+ FLASH applications trough the
Peter Martijn Kuipers' appsign utility.
GUI clean-up.
- 07/05/2002, version 5.08 (3.2.4, 3.3.7, 1.2.1):
GUI overhaul & clean-up (Win32).
- 05/05/2002, version 5.07 (3.2.4, 3.3.7, 1.2.1):
GUI overhaul & clean-up (Linux).
- 29/04/2002, version 5.06 (3.2.4, 3.3.7, 1.2.1):
TI83+ ROM dumping support fixed.
- 24/04/2002, version 5.05:
Some bug fixes:
- ZIP vartype has no file extension
- the left window is no longer updated whenever a var is sent (Win32)
- WinZip cmdline removed from menu (Win32)
- GFM item grayed (Win32)
Thanks to Michel Rozpendowski <[email protected]>
- 14/04/2002, version 5.04:
Moved image manipulation routines into a 'img' folder.
Part common with the (Gtk)TiEmu project.
- 05/04/2002, version 5.03 (3.2.3, 3.3.3, 1.2.1):
Added BMP support for both Windows & Linux (file invalid ?!);
Win32 saving support improved.
Added the ability to save a screenshot with grayscales (blurry mode).
Load support is still buggy !
- 15/03/2002, version 5.02:
TILP_VERSION symbol is now always defined.
- 01/03/2002, version 5.01 (3.2.1, 3.3.1, 1.2.0):
Little bug fixes after official release (bug reports):
- the config file (tilp.ini or ~/.tilp) is removed whenever a new
version is installed. This avoids some problems with link cables...
- TI83+ (var corrupted & size): fixed thanks to Paxl !
- parallel link cable (under WinNT) problem: fixed.
- romdump crashes at the end of transfer: fixed.
- 24/02/2002, version 5.00 (3.2.0, 3.3.0, 1.2.0):
Official release of TiLP for Linux, Windows and Mac OS-X.
- 23/02/2002, version 4.99 (3.1.7, 3.2.1, 1.2.0):
Merged with TiLP/OS-X
- 19/02/2002, version 4.98 (3.1.6, 3.2.0, 1.2.0):
Fixed dirlist selection with TI8x calculators.
- 18/02/2002, version 4.97 (3.1.6, 3.2.0, 1.2.0):
Error pipelining added and working_mode improved.
ProbeIO dbox: bug fix when TiLP is launched without console.
Some Win32 fixes: GFM, probing, ...
Tested under Linux, Windows 98, NT4, 2000 and XP.
- 17/02/2002, version 4.96c (3.1.5, 3.1.9, 1.2.0):
Sorting of computer files improved.
Ready fixed.
Bug fixes (introduced w/ sorting of ctree window):
- does not list FLASH apps on TI83+: fixed
- dirlist TI86: fixed
Ability to send TI83 files to TI83+ calc: added.
- 16/02/2002, version 4.96b (3.1.4, 3.1.8, 1.2.0):
Some Win32 fixes (thanks to K. Kofler):
- files.c exploded in files.c & vars.c: done
- sorting of files/dirs: done
- remote control: less buggy !
- glib/iconv: done
- font displaying: use T. Singer's font. I hope to change this.
I have recompiled the glib-1.1.8/Win32 without iconv support for
reducing the size of the setup package.
- 14/02/2002, version 4.96 (3.1.4, 3.1.8, 1.2.0):
The opening of files is more protected now (error catching).
Some Win32 fixes (thanks to K. Kofler):
- some items disabled: fixed
- change drive menu item: fixed
- create directory, doesn't refresh: fixed
- receiving a 'beta' var makes TiLP crash: fixed
- receiving of group, unable to save: fixed
- refreshing after receiving vars & apps: fixed
- recv of FLASH app, no update: fixed
- round display to KB: done
- rate display: fixed
- TiFFEP support: fixed
- greek beta -> action on file: done
- rename/delete of directories: done
- 14/02/2002, version 4.95 (3.1.4, 3.1.8, 1.2.0):
Merge with Mac OS-X: building projects are in 'osx'.
- 14/02/2002, version 4.94 (3.1.3, 3.1.6, 1.2.0):
Changed some things in libticalcs.
- 13/02/2002, version 4.93 (3.1.3, 3.1.5, 1.1.9):
K. Kofler has tested the 4.92 release of TiLP and found some bugs:
- MFC42D.dll is missing in the package: fixed
- GFM, could not load big files (g_malloc error): fixed but there is
still a bug (varsize is shifted)
- RBM|File|Rename, box appears 2 times: fixed
- overwrite var, the varname does not appear: fixed
- remote control TI89/92+, calc frozen: fixed
- GFM, null window: fixed
- ctree sorting & selection buggy: fixed
- Probing with stdout & libticables: to do...
Sorting routines for clist & ctree have been completely rewritten.
Added data rate support from libticables: better.
- 12/02/2002, version 4.92:
BlackLink support improved under Win2K (same bug as FlashZ !)
A problem with the USB driver under Win32/MFC (bad call).
Cleanup of fonts dir.
- 11/02/2002, version 4.91:
Cleanup of the TiLP core.
Receiving of vars: single or group option added.
TiFFEP server support cleaned.
- 10/02/2002, version 4.90 (3.1.1, 3.1.3, 1.1.9):
VarInfo structure modified.
Appearance of the SR button is contextual.
Checksum: check by option.
- 10/02/2002, version 4.89 (3.1.1, 3.1.2, 1.1.9):
tilp_error: bug fixed by JB
mkdir segfaults: fixed.
- 04/02/2002, version 4.88:
Applied Win32 modifications to the Linux version.
Remote control improved for both TI89/92(+).
- 04/02/2002, version 4.87 (3.1.0, 3.1.2, 1.1.8):
Bug fix: PCX format incorrectly saved under Win32.
- 21/01/2002, version 4.86 (3.1.0, 3.1.0, 1.1.8):
Dependancy with libticalcs broken. Source code modified for this.
JB's patch (info.c) included.
- 20/01/2002, version 4.85 (3.1.0, 3.0.6, 1.1.8):
TI83+ support finished.
TiLP can do screenshots at any time (Graph, ..., but not in VarLink).