forked from uvemas/ViTables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.txt
2034 lines (1355 loc) · 64.4 KB
/
ChangeLog.txt
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
ViTables ChangeLog
==================
** November 19, 2013 **
First working version of the columnar_org plugin is available.
I think I've fixed all serious bugs.
** October 20, 2013 **
Minor changes have been done in vtapp, plugin_utils and vtgui modules.
In addition, the docstrings of several modules have been fixed.
** October 14, 2013 **
The docstrings of csv, dbstreesort and timeseries plugins have been fixed.
** October 08, 2013**
Fixed some white space inconsistencies in several modules.
The pluginsloader module has been refactored and make more robust.
The plugin for sorting the DBs tree has been added. At the moment
it supports alphabetical and human sorting.
Some docstrings and one plugin information page have been improved.
** October 01, 2013**
Checking modules directly under the vitables package with pylint.
The package docbrowser has been analyzed with pylint.
The package h5db has been analyzed with pylint.
The package nodeprops has been analyzed with pylint.
The package vtwidgets has been analyzed with pylint.
The package vttables has been analyzed with pylint.
The package queries has been analyzed with pylint.
** September 30, 2013 **
The modules vtSite and vtGUI hav been renamed accordingly to PEP 8.
** September 29, 2013 **
The module dataSheet has been renamed accordingly to PEP 8.
The module scrollBar has been renamed accordingly to PEP 8.
The module leafView has been renamed accordingly to PEP 8.
The module leafModel has been renamed accordingly to PEP 8.
The module leafDelegate has been renamed accordingly to PEP 8.
The modules aboutPage have been renamed accordingly to PEP 8.
The modules aboutPage has been renamed accordingly to PEP 8.
The module configIOException has been renamed accordingly to PEP 8.
Some minor changes done.
Some changes that should have been added 2 commits ago :-(
Modules queriesManager and queryDlg have been renamed accordingly to PEP 8.
Modules in the nodeprops package have been renamed accordingly to PEP 8.
Modules in the h5db package have been renamed accordingly to PEP 8.
Modules in the docBrowser package have been renamed accordingly to PEP 8.
** September 28, 2013 **
The package vtWidgets has been renamed accordingly to PEP 8.
The package vtTables has been renamed accordingly to PEP 8.
The package nodeProperties has been renamed accordingly to PEP 8.
The package docBrowser has been renamed accordingly to PEP 8.
The module zoomCell has been renamed accordingly to PEP 8.
The module inputNodeName has been renamed accordingly to PEP 8.
** September 20, 2013 **
data presentation of EArray has been debugged and simplified.
** September 16, 2013 **
Fixed a bug in the cut node operation.
The example scripts have been migrated to PyTables3 syntax with pt2to3.
** September 03, 2013 **
Bug #22 has been fixed.
Some minor mistakes have been fixed in the Users' Guide.
** February 10, 2013 **
The Import from CSV plugin uses the plugin utilities module now.
Fixed a bug in the Export to CSV plugin.
The plugin utilities module has been updated.
** February 07, 2013 **
Time series plugin support for soft/external links has been fixed.
** February 06, 2013 **
<Thanks To> tab of the About ViTables dialog has been updated.
Pandas time series support added to time series plugin.
In addition, the plugin has been simplified and refactored.
** February 01, 2013 **
The shebang/encoding lines of all modules have been updated.
The change ensure consistency with scripts/vitables launcher module.
** January 30, 2013 **
The processing of command-line arguments has been upgraded.
The deprecated optparse module has been replaced with the argparse module.
** January 28, 2013 **
A selected cell rendering bug has been fixed.
** January 24, 2013 **
The license of plugins and some example scripts has been updated.
Some more copyright notices have been updated.
The copyright notice of the license has been updated.
The launcher script has been modified.
Now it can be launched by itself (instead of calling python in the command
line)
** January 23, 2013 **
The leafView.py module has been revamped.
Several data navigation bugs have been hopefuly fixed. The code has been
refactored and simplified.
** November 28, 2011 **
Table navigation using the mouse has been debugged.
Sometimes strange jumps occurred after a buffer fault (a certain amount of rows
was skipped) making dataset browsing somewhat unpredictable. These jumps have
been removed.
** November 18, 2011 **
The Makefile for building the Mac OS X bundle has been updated.
The path to the standard Python has been fixed. The filename of the PDF
version of the Users Guide has been updated. Also the Readme-MacOSX.rtf has
been updated (reference to Carabos coop has been removed).
** October 27, 2011 **
The vitables launcher script has been updated.
Following the suggestions made by Dav Clark in the Users Group, the usage of
pythonw on MacOSX has been dropped.
** October 23, 2011 **
The abbility for creating the documentation has been removed from setup.py.
As the distributed tarball contains the complete documentation there is
no need for building it via setup.py. Now the documentation is built with a
module not intended for distribution.
In addition, the Users Guide has been updated.
** October 17, 2011 **
Merged a pull request from kisielk/master (a ViTables fork owner).
The merge fixes problems with CRLF endings in the vitables launcher script
(introduced probably when pushing changes to the repo under MSWindows). It also
fixes a small bug in the message box for unsupported datatypes.
** October 06, 2011 **
The setup.py module has been debugged.
In order to install the tarball the Sphinx documentation system for Python is
not required anymore.
** October 05, 2011 **
The repo has been moved from BerliOS to GitHub and needs some tuning.
.hgignore file has been renamed to .gitignore.
** March 24, 2011 **
The plugins management related stuff has been refactored and simplified.
** March 23, 2011 **
The packaging process for Windows has been adapted to use rst2pdf.
** March 22, 2011 **
The PDF version of the Users' Guide is now built with rst2pdf.
** March 21, 2011 **
The Menu plugin functionality is now part of the ViTables core.
** March 14, 2011 **
The NSIS installer script has been largely rewritten.
** March 09, 2011 **
The behavior of the current cell when browsing large views has been fixed.
** March 08, 2011 **
Bugs 330 and 359 have been fixed.
** March 07, 2011 **
Navigation of large datasets using the right scrollbar has been debugged.
** March 04, 2011 **
Subpackage nodeProperties has been reorganised and refactored.
Bug 335 has been fixed.
First implementation of soft/external links support is completed.
** March 03, 2011 **
Added a Properties dialog for both soft and external links.
Added basic support for PyTables soft links and external links.
** February 26, 2011 **
Bug 338 has been fixed.
** February 25, 2011 **
Bug 333 has been fixed.
** February 24, 2011 **
Bug 334 has been fixed.
Bug 340 has been fixed.
** February 22, 2011 **
Fixed bug 341.
Fixed bug 348.
** February 16, 2011 **
Docs have been updated after checking that ViTables runs fine with Python 2.7.
** February 09, 2011 **
Issues specific to Windows Vista have been reworked in the NSIS installer script.
** February 05, 2011 **
Fixed a minor issue (specific to Windows Vista) in the NSIS installer script.
** February 02, 2011 **
Fixed a minor issue in the NSIS installer script.
Fixed a minor issue in the setup.py module.
The Users' Guide has been updated.
Packaging procedure changed accordingly to recent changes in timeseries plugin.
** February 01, 2011 **
The timeseries and menu plugins have been enhanced.
** January 28, 2011 **
Fixed a bug introduced in the CSV plugin in r220.
** January 27, 2011 **
Fixed a bug in the initial configuration setup.
** January 26, 2011 **
Fixed a small drag & drop issue.
Python strings and Unicode strings have been revisited.
The Makefile file for building the MSWindows installer has changed.
** January 25, 2011 **
Several files (mainly example scripts) have been updated.
** January 24, 2011 **
Fixed a bug in the startup settings of ViTables.
** January 22, 2011 **
The process for building documentation has been refined.
** January 20, 2011 **
The copyright statement has been updated.
The setup.py script has changed.
Applied a workaround to a PyQt4 4.8.2 bug.
Fixed some minor bugs regarding plugins.
** January 18, 2011 **
Fixed some minor issues in the creation of the Windows installer.
** January 17, 2011 **
Fine tuning the building process of the Windows installer.
Updated several files required for building the Windows installer.
** December 18, 2010 **
More advances in the migration path to Python 3.0.
** December 11, 2010 **
More advances in the migration path to Python 3.0.
** December 09, 2010 **
String formatting is done via .format() method now.
** December 08, 2010 **
Moved to Python 2.6 :-) and preparing the migration path to Python 3.0.
** December 07, 2010 **
The project documentation has been updated. And now it is built via Sphinx.
** December 03, 2010 **
The node selection behavior of the tree of databases has been improved.
** December 01, 2010 **
Fixed some small problems in several files.
** November 30, 2010 **
Customised models have been debugged and fine tuned using modtest.py.
** November 28, 2010 **
The docstrings of the whole package have been updated.
** November 24, 2010 **
super() is used now in the ctor of all classes derived from PyQt4.
The csv plugin has been debugged and refactored.
** November 20, 2010 **
The module vtapp.py has been split into 2 modules.
** November 17, 2010 **
Qt properties of QActions set via keyword arguments at creation time.
** November 16, 2010 **
Some improvements applied to vtapp.py module.
Some small improvements have been made to several modules.
Several methods renamed to shorter names. Fixed a small bug.
Some minimal changes made to a several modules.
** November 15, 2010 **
Some improvements applied to the docBrowser subpackage.
The logger.py module has been refactored.
** November 14, 2010 **
All old-style signal/lot connections replaced with new-style connections.
** November 05, 2010 **
Several modules refactored. Code for querying tables has been debugged.
** November 04, 2010 **
The Preferences dialog has been debugged and refactored.
Signals and slots are connected via setUi method in several modules.
** November 03, 2010 **
The Preferences dialog has been improved.
** November 02, 2010 **
A couple of pure Python modules have been split in a Python part and a ui part.
** October 30, 2010 **
The utils.py module has been simplified.
Some unwanted directories have been removed from the repository.
Copyright statements updated in every source file.
The method used for dynamically load UI files has been simplified.
** October 26, 2010 **
Information about version number and copyright has been updated.
** December 29, 2009 **
Module nodePropDlg.py has been refactored and simplified.
Some code dealing with PyTables datatypes and numpy datatypes has been cleaned.
** December 28, 2009 **
Rows insertion/deletion in the tree view has been simplified and debugged.
** December 27, 2009 **
The import_csv and export_csv plugins have been improved.
** December 23, 2009 **
Inconsistencies in the spacing between lines have been fixed.
Tree view usability improved.
** December 21, 2009 **
Added the new plugins_menu.py plugin. It show info about the loaded plugins.
** December 20, 2009 **
The code dealing with application setup has been debugged and refactored.
** December 19, 2009 **
The plugins framework has been debugged and refactored and has a new ui.
** December 15, 2009 **
The deprecated (in Python 2.6) sets module is not used anymore.
** December 14, 2009 **
The code dealing with the tree view has been debugged and simplified.
** December 11, 2009 **
Fixed a subtle bug in the automatic sync between tree view pane and workspace.
** December 10, 2009 **
In the tree view fixed a bug in the cut node + paste node sequence.
** December 09, 2009 **
The logger module has been refactored and simplified.
Fixed a bug in the context menu of the logger.
Fixed a couple of minor bugs.
** December 05, 2009 **
The documentation browser subpackage has been simplified.
Several question like message boxes have been customised.
** December 04, 2009 **
Removed wild imports and other minor annoyances common to most modules.
The time series plugin has been refactored.
pluginsManager module has been refactored to improve some bizarre behavior.
Usability of csv_import plugin has been improved with better dialog texts.
** December 03, 2009 **
Autodetection of tables headers has been added to the import csv plugin.
** December 02, 2009 **
Support for tables headers has been added to the import/export csv plugins.
** November 30, 2009 **
The import_csv.py plugin has been debugged, refactored and enhanced.
** November 28, 2009 **
New version of import_csv.py plugin added to repository.
** November 25, 2009 **
Minor problems introduced in recent changes have been fixed.
** November 24, 2009 **
Import capabilities added to the CSV plugin.
vtapp.py module changed to make easier interaction with plugins.
** November 23, 2009 **
Layout of csv plugin changed to allow future additions; modules, icons,...
Plugin export_csv.py enhanced: better code, reduced memory footprint.
** November 22, 2009 **
Memory footprint greatly reduced.
** November 20, 2009 **
Fixed a bug in the datasheet.py module apparent with pyqt < 4.6.
** November 13, 2009 **
Support for queries has been updated.
dataSheet.py module has been refactored.
leafView.py module has been refactored.
Plugins have been updated.
Querying functionality has been moved from vtapp.py to queriesManager.py.
dataSheet.py module has been refactored. Circular references have been removed.
Fixed a bug in the Preferences dialog.
** November 10, 2009 **
Fixed a bug in the Preferences dialog.
** November 08, 2009 **
Fixed a bug in the tree of databases that was not apparent in PyQt <=4.4.4.
The path of the config. file on Unix systems now adheres to the Qt standards.
** September 25, 2009 **
Fixed a minor bug in the code for opening files via drag and drop.
** September 22, 2009 **
Last improvements in the documentation style applied to Windows platforms.
Fixed an annoyance in the creation of PDF documentation.
** September 21, 2009 **
The User's Guide has been updated (and its custom layer has been recovered).
** September 20, 2009 **
Fixed a compatibility problem XP/Vista in the Windows installer.
** September 19, 2009 **
Applied several minor simplifications to styles management code.
** September 18, 2009 **
Windows installer upgraded for the next release.
** September 15, 2009 **
Fixed some minor bugs.
Prepare things for the next release.
** August 24, 2009 **
Some icons have been updated.
The zoomCell module has been debugged and refactored.
** August 22, 2009 **
The plugins framework has been debugged and its usability has been improved.
The time_series plugin has been debugged and refactored.
** August 21, 2009 **
The examples directory has been reworked.
** August 20, 2009 **
A couple of modules have been sanitised (bad variable names changed).
** August 15, 2009 **
The docBrowser package has been reworked a little bit.
Splash screen has been updated.
** August 13, 2009 **
Icons have been updated. About ViTables dialog enhanced with a Thanks To page.
Fixed a bug introduced when the use of Qt resources was dropped.
** August 07, 2009 **
Makefile files and other unneeded stuff have been removed.
** August 06, 2009 **
The plugins framework has been made more robust.
Fixed some small problems in the new build system.
** August 05, 2009 **
Last 2 commits backed out + Dima's patches merged + backed out commits restored
** July 29, 2009 **
Added support for packages to the plugins framework.
** July 28, 2009 **
A simple plugin framework has been implemented.
** July 21, 2009 **
The "Node properties" dialog is generated automatically (via Qt Designer) now.
** May 01, 2009 **
Added missing licensing information to several files.
Sources of Users Guide are now distributed in the ViTables tarball.
Procedure for generating the usersguide has been updated.
INSTALL.txt and setup.py have been updated.
HTML documentation uses utf-8 encoding now.
** March 11, 2009 **
Code for creating DBDoc objects was confusing and has been refactored.
Added a couple of (subtle) usability improvements.
** March 10, 2009 **
The Preferences subpackage has been updated.
Fixed a small bug in the "Select a file for opening" dialog.
** March 08, 2009 **
New utility function added to utils.py module.
Table queries are done in a separated execution thread now.
** March 05, 2009 **
The "New query" dialog is generated automatically (via Qt Designer) now.
** March 04, 2009 **
Some subpackages have been reorganised.
** March 02, 2009 **
__tr method has changed.
Attributes editing has been debugged and simplified.
Unneeded encoding/decoding of strings has been removed.
** March 01, 2009 **
The main menu bar has been reorganised.
** Feb 26, 2009 **
New feature added: export a dataset to plain text file with CSV format.
Fixed a unicode bug in the queries manager.
** Feb 24, 2009 **
The resources module has been added to the repository.
A couple of Makefile files have been changed.
** Feb 23, 2009 **
setup.py has been updated.
Code dealing with formatting time series has been refactored.
**Feb 21, 2009**
License files and license notes have been updated.
Fixed a little bug in the time_series plugin.
The examples foder has been reorganized.
Support for unicode filenames has been improved.
Fixed a silly bug in the time_series plugin.
Focus indicators for the logger and the tree panel have been improved.
The support for time series has been fixed and improved.
** Feb 11, 2009**
An ubiquitous misuse of the Python unicode() built-in has been fixed.
The recent fix to the windows installer is now in the repository.
** Jan 21, 2009**
Fixed a bug in the support for unicode filenames in Windows.
A better support for unicode filenames has been added.
** Jan 19, 2009**
Fixed a small bug in the support for date/time.
** Jan 17, 2009**
Date/time information is displayed now as legal time.
** Jan 16, 2009**
Fixed a bug in the zoom cell feature.
** Jan 10, 2009**
More improvements to installer for Windows.
Fixed a serious bug in the installer for Windows.
** Jan 07, 2009**
Code style of the vitables package has been improved.
** Jan 02, 2009**
Code style of the h5db and docBrowser subpackages has been improved.
Code style of the preferences, nodes and nodeProperties subpackages has been improved.
Code style of the vtWidgets and vtTables subpackages has been improved.
** Jan 01, 2009**
PyQt4 imports changed to remove unnecessary code verbosity.
** Dec 27, 2008**
Fixed bug 014953.
Strings are managed via unicode strings with utf-8 encoding.
** Dec 22, 2008**
The User's Guide has been updated.
Every str() call as been replaced by a unicode() call.
** Dec 19, 2008**
Fixed a couple of minor problems.
Fixed a bug that made impossible to open files by drag and drop in
Windows.
Fixed a bug introduced in the previous commit.
The node copy/cut/paste mechanism has changed. Now it is much more efficient
and simpler.
** Dec 18, 2008**
The Copy Node operation has been greatly optimized.
Fixed an encoding related problem in the file opening procedure.
Fixed a minor issue with the vertical header of large tables.
The procedure for creating a Windows installer has been changed in order
to deal properly with PyQt4.
** Dec 16, 2008**
Fixed some bugs regarding portability between different platforms
** Dec 15, 2008**
Fixed a problem in setup.py.
Applied several simplifications derived from the use of Qt resources system.
Fixed some bugs regarding portability between different platforms.
** Dec 13, 2008**
Project clean-up and final changes.
** Dec 12, 2008**
The preferences package has been refactored.
** Dec 11, 2008**
Zooming cells with string content has been fixed.
Fixed an annoying bug introduced in changeset 184e748db458.
** Dec 10, 2008**
A context menu has been added to the workspace.
The User's Manual has been updated.
The documentation browser has been updated.
The module in charge of application configuration has been updated.
Fixed a small bug in the Properties dialog.
Changed the trigger for in-place renaming of nodes in the tree of databases
pane.
The Properties dialog has been debugged and improved.
** Dec 09, 2008**
ANNOUNCE.txt and setup.py have been updated.
Fixed a bug in scripts/vitables.
Fixed a small l10n problem.
** Dec 08, 2008**
Fixed a small bug in insertion of nodes in the tree of databases pane.
** Dec 05, 2008**
Fixed a subtle bug in the datasets access process.
A small bug has been fixed.
File Save As... operation has been debugged.
Enhanced the render of datasets with just one row/column.
Fixed a small bug in the synchronisation of the workspace with the tree of
databases pane.
** Dec 04, 2008**
A minor problem found in tables queries have been fixed.
The content of just created filtered tables is now automatically displayed.
Fixed a bug in the access to datasets with two or more dimensions.
Nodes copying has been updated: leaves whose dataset is not readable are not
copied
Deletion of views tied to overwritten nodes has been implemented.
The status bar is properly updated now when a node is renamed in the Tree of databases pane.
** Dec 03, 2008**
The 'Recover last session' feature is fully implemented now.
Fixed a small bug in the splash screen.
Added a label in the status bar for displaying info about the node currently
selected in the Tree of databases pane.
** Dec 02, 2008**
Implemented the capability for zooming cell contents.
Dynamic entries under the Windows menu are now checkable and exclusive.
** Nov 30, 2008**
Fixed a bug in the navigation of huge datasets. Now displayed data is properly
updated when a slider drag ends and when the table is wheeled.
** Nov 13, 2008 **
Navigation of huge datasets is now fully implemented. Every navigation
device (vertical scrollbar, keyboard and mouse wheel) seems to work fine and
to update displayed data when a buffer fault occurs.
** Nov 04, 2008 **
Navigability of huge datasets has been enhanced. The selected cell is now
properly updated when a buffer fault occurs. It means that navigating the
table with the keyboard works fine now.
** Oct 31, 2008 **
Huge datasets can be displayed and navigated. Several things remain to be
done (usability enhancements) but the feature seems usable and stable.
** Oct 24, 2008 **
Opening files by dropping their icons in the databases tree panel is fully
implemented.
Some annoying problems that arised when nodes were moved around in the
databases tree panel have been fixed.
I've started to implement the support for huge datasets.
** Oct 23, 2008 **
Opening files by dropping their icons in the databases tree panel has been
partially implemented.
Fixed a couple of bugs in the Properties dialog: data types are correctly
shown now.
In-place renaming of nodes has been debugged.
Fixed a little problem with groups expansion in the tree view pane that was
rather annoying: now pasting a node (or creating a new group) expands the
parent group if it was closed. So user can see that the node has really been
added.
** Oct 22, 2008 **
More progresses in the datasets displaying:
- the workspace and the tree of databases are synchronized now: if a leaf
with a view is selected in the tree then the view becomes active in the
workspace. And viceversa, if a view is activated in the workspace its leaf
is automatically selected in the tree
- when a node with views is overwritten (because a group has been created, a
node has been renamed or a node has been pasted/dropped) the views are
closed
- the drag and drop behavior has been debugged
** Oct 21, 2008 **
Fixed a bug in the application quitting process: the temporary database
wasn't properly deleted.
** Oct 20, 2008 **
The Windows menu has been reimplemented.
** Oct 19, 2008 **
Datasets can now be displayed in the workspace. Still importants things
remain to be done, mainly to add support for quickly navigate huge datasets.
** Oct 17, 2008 **
The buffer.py module has been refactored and modified.
** Oct 16, 2008 **
Fixed a bug in the node rename and file save as operations. A node/file
cannot overwrite itself.
** Oct 13, 2008 **
Fixed a subtle bug in the code for renaming nodes.
Fixed a bug in the dialog for entering the name of a node when a group is
being created or a node is being renamed: empty strings are not valid names
now :-)
** Oct 11, 2008 **
The code for renaming nodes has been refactored. Affected modules are
vtapp.py, utils.py, inputNodeName.py and renameDlg.py.
The setup.py has been updated.
** Sep 26, 2008 **
Fixed some minor bugs regarding the enabled/disabled state of toolbar buttons
and menu items.
Added new module inputNodeName.py. It is used instead of renameDlg.py for
creating groups and entering the initial name in renaming operations.
** Sep 25, 2008 **
The behavior of the Open Recent File submenu is now a little bit more user
friendly.
** Sep 24, 2008**
Fixed a bug in the file opening procedure. Files with no PyTables/HDF5
format are properly managed now.
Some code in the vtapp.py module has been reorganized to make it more
readable.
** Aug 02, 2008 **
Fixed a couple of bugs in the File menu:
* the Close All action wasn't enabled/disabled properly
* the Save As... action didn't work
** Jul 23, 2008 **
The porting of the nodeProperties subpackage has finished.
** Jul 21, 2008 **
Merged r1054 and r1055 from trunk. Every modified file has been merged
but VERSION.
** Jul 18, 2008 **
The nodeProperties subpackage is being ported. At the moment the GUI
part has been ported. Next step will be porting the code for attributes
validation.
** Jul 15, 2008 **
Fixed a nasty bug that crashed the application every time a node was
expanded in the tree viewer. The reported Qt4 error was:
QObject: Do not delete object during its event handling!
I've been unable to locate exactly where the bug was. Apparently it was
produced by a strange interaction between VTApp and VTGUI classes so
I've embedded VTGUI in VTApp and removed the vtgui.py module. It seems
to fix the bug.
** Jul 07, 2008 **
The porting of the nodeProperties subpackage has started.
A new module, nodeDoc.py, has been added. It is in charge of the
information collection about a given PyTables node. This module makes
unnecessary the following ones: nodeDoc.py, tableDoc.py, arrayDoc.py,
unimplementedDoc.py and groupDoc.py. All those modules have been
removed from the project.
** Jul 03, 2008 **
The behavior of the Preferences dialog has been tuned.
** Jul 01, 2008 **
The porting of the documentation browser has been done.
The behavior of the documentation browser has been tuned.
** Jun 26, 2008 **
Added svn:keyword property to dbsTreeModel.py leafNode.py
nodeItemDelegate.py groupNode.py dbsTreeView.py rootGroupNode.py
** Apr 18, 2008 **
Added contextual menus to the tree of databases view. Also a couple of
menu items in the Help menu are working now.
Functionality for configuring the application has been reimplemented.
** Apr 16, 2008 **
Added code for enable/disable actions depending on the selected node
in the tree of databases view.
** Apr 15, 2008 **
Thre new icons have been added.
Command 'Delete All Queries' has been reimplemented. The Query toolbar
has been added.
Tables queries have been reimplemented.
** Apr 11, 2008 **
A couple of methods have been refactored and now have a new signature.
Calls to these methods have been updated.
The dbDoc.py module has been refactored.
The nodeItemDelegate.py module has been moved to the h5db subpackage.
** Apr 08, 2008 **
Added support for renaming nodes inplace.
The code for node editing operations has been refactored.
** Apr 07, 2008 **
Implemented Node --> Rename command with overwriting support.
** Apr 03, 2008 **
Fixed a bug in the algorithm for recovering last session. Now if a
given node doesn't exist then the application reports it and doesn't
crash.
Implemented Node --> New Group command with overwriting support.
** Apr 02, 2008 **
The overwriting feature has been implemented in the drag and drop of
nodes.
Splash screen readability improved.
Fixed a bug in DBDoc.pasteNode method of dbDoc.py module.
The overwriting feature has been implemented in the Node Paste...
command.
The overwriting feature has been implemented in the File Save as...
command.
Added code for setting the application icon.