source: git/NEWS @ b4ac7007

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since b4ac7007 was b4ac7007, checked in by Olly Betts <olly@…>, 13 years ago

NEWS: Update from ChangeLog?.

git-svn-id: file:///home/survex-svn/survex/trunk@3633 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 32.7 KB
Line 
1  3631       olly Thu Sep 15 02:11:28 GMT 2011  Olly Betts <olly@survex.com>
2
3  3600       olly Tue May 24 05:17:53 GMT 2011  Olly Betts <olly@survex.com>
4        * doc/Makefile.am: Write generated man page to a temporary file, then
5          atomically rename, to avoid leaving an empty or partial man page
6          behind if docbook-to-man dies (I managed to ship an empty cad3d.1 in
7          1.1.16).
8
9  3608       olly Thu May 26 14:47:52 GMT 2011  Olly Betts <olly@survex.com>
10        * lib/codes.po: Mark unused messages by commenting out with '#~'.
11  3597       olly Sat May 21 22:04:31 GMT 2011  Olly Betts <olly@survex.com>
12        * lib/: Remove comments which are only relevant for other languages
13          from .po files.  Add more clarifying comments.
14
15  3595       olly Wed May 18 09:06:19 GMT 2011  Olly Betts <olly@survex.com>
16        * lib/,src/mainfrm.cc,src/mainfrm.h: We now use .po and .pot files as
17          the master format for storing translations in (rather than
18          messages.txt), and then translate these into Survex's .msg format.
19
20Changes in 1.1.17 (2011-09-15):
21
22* Translation updates for Catalan, French, Romanian, Spanish, Slovak, and US
23  English.
24
25* (Unix version): Move survex man page to section 7 (since it isn't documenting
26  an actual command).
27
28* (Unix version): Default to installing docs into /usr/share/doc/survex rather
29  than /usr/doc/survex.
30
31* aven:
32
33  + Explicitly request double-buffering, which seems to be needed for systems
34    with GLX >= 1.3.
35
36  + Fix crash while trying to load certain .3d files.
37
38  + Movie export code updated to work with more recent versions of FFmpeg.
39
40  + Reporting of errors during movie export improved.
41
42  + Force playback speed to "x1" during movie export.
43
44  + Use stock IDs for buttons where appropriate - such buttons may now be
45    rendered with icons on some platforms.
46
47* cavern:
48
49  + Drop "non-fatal" from the report of how many errors there were at the end
50    of the run - it just confuses users - we won't even get here if there's a
51    fatal error!
52
53* (Mac OS X version): Fix buildmacosx.sh script to check where the temporary
54  volume actually gets mounted.  Build for x86_64 as well as i386.  Fix URL
55  for downloading wxWidgets, and use wxWidgets 2.8.12 by default.
56
57Changes in 1.1.16 (2011-05-16):
58
59* Translation updates for German, Spanish, Italian, Portuguese, Brazilian
60  Portuguese, and US English.
61
62* Use horizontal ellipses character rather than '...' and right arrow character
63  rather than '->' where these characters are available.
64
65* (Unix version): Link with -lGL, if it exists, to support linking with gold or
66  GNU ld --as-needed (Debian bug #615781).
67
68* img.c:
69
70  + Fix code typo for IMG_API_VERSION == 0 case.
71
72  + Fix code typo in code used when IMG_HOSTED isn't defined.
73
74* doc/TODO.htm: Remove entries which have now been done.
75
76* (Microsoft Windows version): aven: We now include all the available
77  translations for messages from wxWidgets, which means that standard widgets
78  will appear translated where available even if Survex messages aren't
79  translated.
80
81Changes in 1.1.15 (2010-10-15):
82
83* aven:
84
85  + In the cavern log window, change the "Rerun" button to "Reprocess" to
86    follow terminology in manual and elsewhere.  Fixes ticket#15.
87
88  + When displaying output from cavern, don't update the window after every
89    line, but only when we don't have data from cavern pending.  Hopefully
90    addresses ticket#12.
91
92  + If we aren't using GL_POINTS for blobs, draw them using a series of
93    abutting lines rather than with gluDisk which is faster and gives a
94    consistent shape.
95
96  + Check whether blobs and crosses actually render correctly as points/point
97    sprites, and if they don't, fall back to drawing them with lines.  The
98    best method is cached on disk, and rechecked automatically if the graphics
99    hardware is changed or the drivers upgraded.
100
101  + Fix non-USE_FNT case to work again (it's limited to ISO-8859-1 characters
102    though, so we still enable USE_FNT by default).
103
104  + Don't offer "All files" wildcard in presentation save dialog.
105
106  + (Microsoft Windows): Handle filenames with non-Latin1 characters in in
107    more places.
108
109  + (Microsoft Windows): Quote filenames with spaces and metacharacters in
110    when running cavern from aven.  Fixes ticket#11.
111
112* editwrap: (Microsoft Windows): Handle filenames with non-Latin1 characters.
113
114* diffpos: Handle files with duplicate labels in better - extend generates
115  duplicate labels when it breaks a loop.
116
117* Enable eswap-break testcase now that diffpos handles duplicate station names.
118
119* New v7 of .3d format which stores survey dates as number of days since
120  January 1st 1900, so we now support dates from 1900-2078 (rather than
121  1970-2037) with a smaller file size.  The img API is now versioned - you
122  can select the new "version 1" by compiling with -DIMG_API_VERSION=1, which
123  gives the survey dates in days in days1 and days2 instead of as time_t
124  values in date1 and date2.  Fixes ticket#14.
125
126* Consistently use http://survex.com/ rather than http://www.survex.com/ - the
127  former has been the canonical name for some time, with www.survex.com just
128  redirecting to it.
129
130* (Unix version): Use unlocked file I/O if available, which can be much faster
131  in some cases (we don't need the locking as we don't do multithreaded file
132  I/O).
133
134* (Mac version): Fix compilation failure due to clash with Point in Mac OS X
135  headers.
136
137* (Mac version): buildmacosx.sh now works again.
138
139* Most tests weren't actually running any testcases (looks like a sh
140  portability issue).  This is now fixed, and fortunately all tests still pass.
141
142* Include the extra .isl translation files for Innosetup in the source archive.
143
144Changes in 1.1.14 (2010-07-26):
145
146* Restore compatibility with wxWidgets 2.6 (1.1.13 required wxWidgets 2.8).
147
148* aven:
149
150  + After processing survey data, if there were warnings or errors, add a
151    "Rerun" button to allow easy reprocessing after fixing problems.  If there
152    were only warnings, also add an "OK" button to allow moving on to viewing
153    the processed survey data (fixes ticket#13).
154
155  + Optimise updating of the cavern log window (hopefully fixes ticket#12).
156
157  + Fix links in cavern log window to link from exactly '<file>:<line>' (and
158    not the ': ' after), and to make the title for the terminal the
159    warning/error message.  Avoid false positives by checking that '<line>' is
160    a number.
161
162  + Don't double escape the contents of href and target in links in the cavern
163    log window.
164
165  + Improve handling of the splitter window, fixing behavioural glitches in
166    various cases.
167
168  + Highlight stations matching any current search when a file is loaded.
169    (ticket#9)
170
171  + (Mac version): Fix build issue due to Mac OS X polluting the global
172    namespace with its own "Point" class.
173
174  + (Unix version): The Gnome print dialog has its own preview window so
175    suppress ours if using the Gnome one.
176
177  + (Unix version): Link aven with -lGLU which SuSE Linux needs.
178
179  + (Microsoft Windows version): Fix handling of a double-click on the survey
180    tree when built with wxWidgets >= 2.8.11.
181
182* cavern: Report relevant file and line number for three warnings which didn't
183  give them before.
184
185* (Unix and Mac versions): configure: Update the wx-config probing code -
186  wxmac-config etc aren't present with newer wxWidgets versions so there's no
187  point looking for them now.
188
189* (Mac version): buildmacosx.sh: This script builds a diskimage with Survex in
190  for easy installation.  Update it to work with the latest Survex versions
191  (use WX_CONFIG not WXCONFIG; use a Unicode build of wxWidgets; if building a
192  private wxWidgets, use 2.8.11 not 2.7.0-1).
193
194* manual:
195
196  + Correctly capitalise "GTK".
197
198  + Note that on Linux we only regularly test builds with the GTK+ version
199    (change taken from 1.0).
200
201* Fixed the cad3d man page, which was an empty file in 1.1.13.
202
203Changes in 1.1.13 (2010-06-16):
204
205* Say "wxWidgets" instead of "wxWindows" consistently.
206
207* img.c: Fix small memory leak (filename_opened member).
208
209* cad3d, aven: Fix export to SVG when a label contains a '%' character.
210
211* aven:
212
213  + wxWidgets 2.6.0 or newer is now required.
214
215  + A "Unicode" build of wxWidgets is now supported.  An "ANSI" build may still
216    work but hasn't been tested recently (all packaged versions of wxWidgets
217    seem to be Unicode now).
218
219  + Fix potential uses of uninitialised variables which may have been causing
220    occasional glitches when loading a file on start-up.
221
222  + Improvements to the handling of the font used for plotting labels and other
223    text on the survey pane:
224
225    - Loading the font file is more efficient.
226
227    - Character spacing is improved.
228
229    - Default font is now anti-aliased.
230
231  + "About" dialog:
232
233    - Add "Copy" button to copy the system info to the clipboard for easier
234      bug reporting.
235
236    - List OpenGL extensions last, since there are usually lots of them with a
237      modern gfx card.
238
239    - Fix 100% CPU usage while the "About" dialog is open.
240
241  + Processing .svx files:
242
243    - Passing a .svx file on the command line now works better.
244
245    - Put the survey data log window in a splitter in the usual frame rather
246      than opening a separate frame for it.
247
248    - Auto-scroll the log window until we've reported a warning or error.
249
250    - Fix small memory leak.
251
252  + The presentation filename now defaults to using the basename of the
253    currently loaded dataset, but we always prompt before we first save with
254    such a name.
255
256  + Reduce memory usage when saving a screenshot.
257
258  + Allow "Toggle Fullscreen" to work even if no survey is loaded now that we
259    persist the window size (and maximised or fullscreen state) between
260    invocations.
261
262  + Fix reporting of OpenGL errors.
263
264  + Fix glitches when tilting while looking East.
265
266  + Added Portuguese and Slovak translations of wxWidgets messages.
267
268* Documentation:
269
270  + Rationalise manual formats - replace PostScript with PDF and drop RTF.
271
272  + Drop the "alternative manual formats" self-extracting zip file - people
273    will generally just want one of the formats, so downloading several
274    together isn't very useful.
275
276  + 3dformat.htm: Update for v6 format (thanks to Mike McCombe).
277
278  + GPL.htm: Replace HTML version of licence with a link to the version on
279    the FSF website.
280
281  + ChngeLog.htm: Stop generating an HTML version of the ChangeLog - it's too
282    low level to be of interest to non-developers, and developers can look at
283    the source code.
284
285* (Unix version): configure: New preferred name for specifying wx-config script
286  is WX_CONFIG.  WXCONFIG still supported for compatibility.
287
288* (Linux version): Source RPM package dropped as you can just build an RPM
289  package from the source tarball.
290
291* (Microsoft Windows version): The installer is now created with a newer
292  version of InnoSetup, which gives a 10% smaller download.
293
294Changes in 1.1.12 (2007-02-07):
295
296* aven:
297
298  + Remember the window size or maximised/fullscreen state between invocations.
299
300  + Add options dialog to "Export" similar to the one for "Print".
301
302  + The "number of pages required" in the print dialog now updates when you
303    change what is to be shown (underground legs/surface legs/station
304    names/crosses).
305
306Changes in 1.1.11 (2006-11-25):
307
308* Updated Czech, Spanish, and Slovak translations.
309
310* (MacOS X version): Assorted OS X specific tweaks and fixes.
311
312* aven:
313
314  + Pick a smaller and clearer font for labels.
315
316  + Fix character spacing.
317
318  + Tweak display of bearing and elevation angles to look nicer with
319    proportional fonts.
320
321  + Use the title from the 3d (or plt, etc) file for the window title
322    rather than the filename.
323
324  + Show distances to 2 decimal places rather than the nearest integer.
325
326  + Only consider underground legs when calculating the depth bands and
327    depth colouring.
328
329  + Add "Colour by Error".
330
331  + Add entry for "white" in date and error keys.
332
333  + When setting the view to a single point, don't change the scale.
334
335  + If reloading the same file, don't change the view
336
337  + Fix filetypes selector in open dialog.
338
339  + Fix the charset we use for aven in certain cases.
340
341  + Call msg_init before using msg_lang or it won't ever be set!
342
343  + Pass wx the full language code to initialise the C library locale.
344
345  + Fix bug in generating prefix tree view which could lead to a bogus
346    leading dot on some survey names (bug probably introduced in 1.1.10).
347
348  + "New Presentation" now ensures that the side panel is open
349
350  + Fix updating of cached opengl lists when the view is reset to the
351    default.
352
353* Ignore LANG if it starts with a digit to avoid problems with bogus value for
354  LANG which AutoCAD installation seems to set on MS Windows.
355
356* (Unix version): configure: Allow SGMLTOOLS and DOCBOOK_TO_MAN to be
357  specified.  Either/both can be set to ":".
358
359* dump3d: Report unknown (to dump3d) codes returned by img.
360
361* img library: Flag all stations as underground in the old "ASCII" .3d format.
362
363Changes in 1.1.10 (2006-07-14):
364
365* aven: Clicking on a survey name in the survey tree now highlights it in
366  the map view.  Double-clicking zooms the view to show the clicked survey
367  highlighted.  Clicking the root clears the highlighting and double-clicking
368  the root restores the default view.  To expand/collapse a branch, click
369  on the "[+]" or "[-]" icon to the left of the survey name.
370
371* aven: The measuring line can now measure to anywhere in plan or elevation
372  view (not just to a station!)  In plan view the horizontal distance and
373  bearing are shown, while in elevation view the vertical distance is shown.
374
375* aven: Moving the mouse over a station in the survey view now highlights
376  that station in the survey tree (though it may not be visible if the
377  survey(s) it is in aren't expanded).
378
379* aven: Clicking on a station to centre the view now moves the mouse pointer
380  to the new location of the station (except on Mac OS X where this isn't
381  allowed).
382
383* aven: Fix which presentation toolbar buttons are shown as depressed.
384
385* Fix infinite loop reading 3d files with LRUD data (bug introduced in 1.1.9).
386
387* vim files are now installed with the correct paths (bug introduced in 1.1.9).
388
389Changes in 1.1.9 (2006-07-04):
390
391* (Unix version): Install desktop files for aven and svxedit contributed to the
392  Ubuntu package by Phil Bull, and corresponding pixmaps.
393
394* Fix img to filter out cross-sections which don't match the subsurvey (if
395  specified).  The API now returns img_XSECT_END to mark the end of a
396  passage rather than setting a flag on the last img_XSECT of the passage.
397
398* Enhance integration with the vim editor - this can now colour .err files, run
399  cavern from vim and parse error output, and run aven from vim.  Tweak the
400  existing vim mode for .svx files to fix a few minor bugs and add support for
401  the new "*data passage" style.
402
403* aven: fix drawing of the "blob" end of the measuring line on graphics cards
404  which can't draw large enough blobs for us.
405
406* aven: sort out confusion about what encoding everything is in which means
407  that the distance measured by the measuring line actually gets displayed
408  and also fixes problems with empty menu items in non-English locales in
409  some cases.
410
411* aven: redraw grey background after a menu is closed over the aven window
412  with no survey loaded.
413
414* aven: fix bug which caused printing to crash (introduced in 1.1.8).
415
416* aven: avoid crash on some machines when opening "About" dialog before having
417  loaded a survey.
418
419* aven: Translate "Plan" and "Elevation" buttons in print view dialog.
420
421* (Unix version): aven: Fix character set handling of cavern output.
422
423* cavern: Report an error if a cross-section is specified for a station which
424  doesn't exist.
425
426* Updated French and Italian translations.
427
428* (Unix version): aven: Fix "Can't open message file `en_US' using path
429  `${prefix}/share/survex'" error.
430
431* Fix bug in 3d file reading on 64 bit platforms when used in STANDALONE mode
432  (doesn't affect Survex itself, but other applications which use img.c should
433  update their copy).
434
435* (Unix version): Add checks that wxWidgets is a non-unicode version (wx 2.6
436  and later are caught by configure, whereas older wx versions are caught when
437  trying to compile).
438
439Changes in 1.1.8 (2006.06.30):
440
441* Drop support for building with wxWidgets versions prior to 2.4.0
442  (which was released on 2003-01-07).
443
444* aven: Printing through aven now uses settings from the "[aven]" section
445  of print.ini, and support for hierarchical sections (using "like=")
446  has been disabled.
447
448* aven: Change mouse actions to be compatible with those in Survex 1.0.
449  The mousewheel now zooms in/out (it doesn't do anything in 1.0) and
450  left drag is now smart about not rotating and zooming at the same
451  time.
452
453* aven: Highlighting stations now happens as you type, and pressing
454  "Enter" or clicking the "Find" button now pans and zooms to show the
455  highlighted stations.
456
457* aven: Left-clicking away from a station now cancels measuring line.
458
459* aven: Setting view to North, South, East, or West is now animated like
460  the tilt from plan to elevation.
461
462* aven: Fix presentation saving to also write "." for decimal points and
463  presentation loading to accept either "." or ",".
464
465* (Unix version): aven: Add text for all toolbar items so that aven
466  will work with the Gnome desktop preference for displaying toolbars as
467  icons with text or just text (wxWidgets needs fixing first though).
468
469* (Unix version): aven: Remove the ability to detach the menu bar (yell
470  if you actually used it and I'll restore it!)
471
472* aven: Add "all survey files" option to the "open file" dialog.
473
474* (MS Windows version): aven: Fix cursor keys to pan survey.
475
476* (MS Windows version): Built with wxWidgets 2.6.3 instead of 2.6.2.
477
478* (MS Windows version): Fix installer to work on Windows 2000 or XP if
479  run by an unprivileged user.
480
481* (MS Windows version): Upgrade to the latest version of InnoSetup (the
482  installer builder we use) and include new installer translations for
483  UK English, Spanish, Brazilian Portuguese, Italian, Romanian, and Slovak.
484
485* (MS Windows version): aven: Include Catalan and Brazilian Portuguese
486  translations of messages for wxWidgets (the GUI library we use).
487
488* aven: Disable "Highlight exported points" if there aren't any.
489
490* Updates to French translation from Michel Bovey.  Also updates to German,
491  Italian, Catalan, Spanish, and Romanian translations.
492
493* (Unix version): test suite: fix smoke test to pass even without X running
494  (it was meant to but the code had a bug).
495
496* aven: Check if OpenGL is available and exit cleanly with a helpful error
497  if it isn't.
498
499* (Unix version): aven: Fix --help and --version to work without a working
500  X display (provided it's built with wxWidgets 2.5.1 or newer).
501
502* aven: Automatically select the presentation tab of the notebook when the user
503  selects "New Presentation" or "Open Presentation".
504
505* aven: Fix "Delete" in the presentation list to not get passed on (and so not
506  reset to default view as well).
507
508* aven: Fix Ctrl+Insert in the presentation list not to segfault if the list is
509  empty.
510
511* aven: Fix Cursor Up and Down in the presentation list to move the highlight
512  up and down instead of being passed on and moving the survey.
513
514* aven: Improve SVG output compatibility.  Tested with Mozilla Firefox 1.5,
515  Adobe's SVG browser plugin, Gimp 2.2.8, Gqview 2.0.0, Opera 8.5,
516  Safari 2.0.3, and InkScape 0.42.
517
518* aven: Put a 5mm border around exported SVG files to allow for station markers
519  and non-zero width lines.
520
521* aven: Fix crash when exporting as SVG or Sketch if labels or surface data
522  was turned on.
523
524* aven: Actually close the file we're exporting which fixes problems with it
525  not always being fully written.
526
527Changes in 1.1.7 (2005.10.18):
528
529* cavern: Add validity checking for dates in *date commands (with feature
530  test in testsuite).  A date entered as just "year" or "year.month" now
531  becomes a date range for the relevant period (previously it became a single
532  date near the middle of that period).
533
534* extend: Fixed 2 uninitialised flags (should fix erratic behaviour on
535  with MS Windows).
536
537* extend: Default output name for a file called input.3d is now input_extend.3d
538  rather than just extend.3d (which was annoying if you wanted to extend
539  several surveys in the same directory).
540
541* aven: OpenGL 2.0 always includes support for point sprites so rework
542  our check for them to include that knowledge.
543
544* aven: Regenerate depth bar if user switches to/from metric units.
545
546* aven: Don't clear the "there" mark just because the mouse pointer has
547  moved off a station.
548
549* aven: When processing a .svx file, put the resultant .3d file in the
550  same directory (since that's where we then try to load it from).
551
552* aven: Fix labelling of date colouring on 32 bit platforms.
553
554* aven: If "colour by date" is on and we load a survey with no date info
555  (or all surveyed on the same date) then set "colour by none".
556
557* aven: Make the error dialog modal and remove a signal handler once it
558  has fired to prevent endless (or seemingly endless) cascades of error
559  dialogs.
560
561* aven: Enforce a minimum object volume diameter of 1m to avoid problems
562  if a survey file with only one station in is loaded.
563
564* aven: Fix problems with indicators disappearing when we're drawing
565  blobs and/or crosses the slow (but always supported) way.  (Problem
566  introduced in 1.1.6).
567
568* (Unix version): aven: Really stop setting extra toolbar margin when using
569  GTK2.0.  The attempt to fix this in 1.1.3 failed because __WXGTK12__ is
570  set for GTK+ 1.2 or *any later release* so is true for GTK+ 2.0 too!
571
572* (Unix version): aven: Add details of which of wxGTK, wxMotif, and wxX11
573  we've been compiled with, and which GTK+/Motif version where appropriate.
574
575* (Unix version): Fixed build on Fedora Core 3.
576
577* documentation: Updates to 3d file format specification from Mike McCombe.
578
579Changes in 1.1.6 (2005.10.10):
580
581* (MS Windows version): Distribution is about a third smaller than 1.1.5
582  (mostly because mingwm10.dll is no longer required).
583
584* aven: If aven is asked to load a .svx, .dat, or .mak file, run cavern on
585  it, showing cavern's output in a window (with errors and warnings clickable
586  to load the offending file into an editor), and then loading the resulting
587  3d file.
588
589* aven: Added "Colour by Date" option.
590
591* aven: Disable "Colour by Depth" option if there's no elevation variation.
592
593* aven: Don't crash if trying to load a survey with no elevation variation.
594  Instead turn off depth colouring.
595
596* aven: Export as HPGL added.
597
598* aven: Improved update of mouse coordinates and measuring line (thanks to
599  Martin Green).
600
601* aven: Show the coordinates of either the mouse pointer or the nearest
602  survey station to it (if there is one near enough).  Showing both was
603  confusing and meant the status bar overflowed on smaller displays.
604
605* aven: When printing an extended elevation, don't show bearing and elevation.
606
607* aven: Don't lock "flat" surveys which aren't extended elevations - a
608  flat survey with LRUD data isn't flat any more!
609
610* aven: When we have to draw blobs and crosses the slow way (because the
611  graphics hardware doesn't support the fast way), draw them so that they
612  should appear at the correct depth into the 3D scene instead of on top
613  of everything else.
614
615* aven: Make "play presentation backwards" icon green to match the other
616  presentation icons.
617
618* (MS Windows version): aven: Mouse clicks on the survey view now set the
619  keyboard focus there.
620
621* (MS Windows version): aven: Fix first redraw of a newly loaded survey.
622
623* (MS Windows version): aven: Fix redrawing of measuring line.
624
625* cavern: Store dates for img_XSECT.
626
627* cavern: Fixed small one-off memory leak if you specify -o more than once.
628
629* (Unix version): Check environmental variable LC_MESSAGES when deciding what
630  language to use for messages.
631
632* (MS Windows version): "Print" on a 3d file now prints through aven rather
633  than the separate printer driver (Unix has done this for some time).
634
635* Removed old printer drivers.
636
637* img library: When creating a 3d file, ignore img_XSECT if we've been asked
638  to write a file format version which doesn't support it.
639
640Changes in 1.1.5 (2005.09.20):
641
642* (MS Windows version): aven: Fixed crash on start-up (introduced in 1.1.4).
643
644* aven: Make blobs round like they are in Survex 1.0.
645
646* aven: If the graphics drivers don't support drawing blobs using OpenGL
647  point markers, fall back to drawing filled circles.
648
649* aven: If the graphics drivers support it, draw crosses as texture mapped
650  OpenGL point markers which is much faster.
651
652* aven: Cross size increased to match Survex 1.0.
653
654* aven: We must update which blobs are displayed if display of surface or
655  underground legs is toggled.
656
657* cavern: Fix handling of a *solve followed by survey data, none of which is
658  attached to the previous data.
659
660* cavern: Fixed "No survey data" error when a *solve is followed by another
661  *solve (or the implicit solve at the end of processing) with no data between
662  them.
663
664Changes in 1.1.4 (2005.09.19):
665
666* aven: Added Aven's icon to the "About" dialog.
667
668* aven: Use localised character for the decimal point (e.g. "," in most
669  continental European countries).
670
671* aven: Previously the survey tree would get focus and then take keypresses
672  (e.g. "P", "L", "Delete").  Now we pass most keypresses across so they
673  operate on the cave, and transfer the input focus across when we do.
674
675* aven: Make pressing "Return" in the tree control expand/collapse a subtree.
676
677* aven: Speed up intialisation by delaying creation of OpenGL lists until
678  they're needed.
679
680* aven: Added Mark Shinwell's bounding box with shadow of the survey.
681
682* aven: Disable the "Tubes" button/menu item when there's no LRUD data.
683
684* aven: Reworded "Restore Default Settings" as "Restore Default View".
685
686* (Unix version): aven: Set sensible default margins for printing and preserve
687  any margin values the user specifies between runs (previously margins
688  defaulted to 0 each time aven was run).
689
690* Documentation: Document *DATA PASSAGE in the manual.
691
692Changes in 1.1.3 (2005.09.07):
693
694* (Microsoft Windows version): Fixed build problems.
695
696* cavern: Allow OMIT character (-) for left/right/up/down.
697
698* aven: Remove an unnecessary menu separator.
699
700* aven: Fix "Find" and "Hide" toolbar buttons to work with GTK2.0.
701
702* aven: Make the tooltip for "Hide" show the number of found stations.
703
704* aven: If * or ? is used in a glob-style pattern, force a non-substring match.
705
706* aven: Enable "New Presentation" when there's a 3d file loaded, rather than
707  when there's a presentation loaded.
708
709* aven: Make entrances green in side panel tree list to match green blobs used
710  in cave view.
711
712* aven: Don't show surface labels if we're not showing surface data, etc.
713
714* aven: Merge "Start Rotation" and "Stop Rotation" into "Toggle Rotation" and
715  make "Space" the key for this.  Keep Return working "Stop Rotation" so
716  existing users are happy, but don't advertise it.
717
718* aven: Normalise filename by adding any extension used, and use the normalised
719  filename for file history and window title.
720
721* (Unix version): aven: Stop setting extra toolbar margin when using GTK2.0
722  as the toolbar buttons already have a sensible margin - the extra margin is
723  only needed with GTK1.2.
724
725* aven: Fix handling of plumb legs in tube model.
726
727* aven: Fixed swapped L and R in tube model.
728
729* extend: Preserve UD cross-section information in extended elevation.
730
731* extend: Add new messages for John Pybus' enhancements.
732
733Changes in 1.1.2 (never formally released):
734
735* Added support for LRUD data in .svx files, in .3d files, and aven can
736  now load and display it on screen and on printouts.  The ability to "fake"
737  LRUD data in aven is gone for now but will reappear in some form later.
738
739* cavern: Removed support for writing Chasm's 3dx format.  We're going to
740  fold any desirable missing chasm functionality into aven.
741
742* aven: Rearranged mouse actions as discussed on the mailing list.  Added
743  cursors for each different mouse action to help the user learn what each
744  does.  Also added cursors for the "compass" and "clino" as well as the
745  scalebar to suggest to the user that they can be dragged to change the view.
746
747* (Unix version): aven: Don't segfault if LANG isn't a known language.
748
749* tests/smoketest.tst: If X windows is running, check that we can run aven
750  with --help and --version.
751
752* tests/cavern.tst: Fixed cavern.tst to warn if it is skipping a test because
753  no results are listed for it.  This revealed that there was a "newline" test
754  which should have been called "badnewline", and was a broken testcase too!
755  Fixed all these problems.
756
757* cavern: Applied Simeon Warner's patch for handling backcompass, backclino,
758  and omitted forward compass/clino readings in Compass DAT files.  Added
759  a feature test for this to the testsuite.
760
761* It no longer makes sense to have an option not to build aven or to build aven
762  without OpenGL so remove old machinery for this from configure and the
763  sources.
764
765* (Unix version): configure: Check if "-lXxf86vm" is needed.
766
767* configure: Better output for strcasecmp test.
768
769* aven: Fix crosses to work much better.  Not a total fix - their position
770  in the Z buffer isn't correct and they're rather slow to plot.
771
772* aven: Don't regenerate the hittest grid every time the mouse moves while
773  animating, which solves the mysterious pausing effect (thanks go to Martin
774  Green for spotting this!)  Also clear all the status bar coordinates when
775  animating.
776
777* aven: Sort out clashing menu shortcuts in some languages.
778
779* aven: Fixed compilation problem on x86_64
780
781* SPUD: Pruned out stuff which has been done or which is not actually relevant
782  to this branch.
783
784* Merge various changes from 1.0 branch:
785
786  + aven: Port over "printing from aven" functionality.
787
788  + aven: Port over "export as" functionality,
789
790  + Add David Loeffler's vim mode for .svx files.
791
792* aven: Fix check for whether a label is behind us in perspective view.
793
794* aven: Don't use an opengl list for drawing the indicators - we typically make
795  a new list each time we plot them anyway.
796
797* Remove lingering traces of support for RISC OS and pre-386 MSDOS
798
799* aven: Set icon on non-Windows platforms too.  This means that with
800  WindowMaker on Unix you get an icon on the AppIcon by default.
801
802* configure: Update wxWindows checks to handle newer wx versions.
803
804* Make all maintainer perl scripts "use bytes;" to avoid utf-8 double encoding
805  problems.  They also all require Perl 5.8 now (hopefully this isn't an issue
806  for anyone building from CVS).
807
808* acinclude.m4: Quote macro name for fix autotools warning.
809
810* Documentation: "tilt up" is "'" not ",".
811
812* aven: Add support for mousewheels (to tilt the cave).
813
814* aven: Fixed twisted transitions to and from pitches in certain cases.
815
816* aven: Pick a sensible initial window size when the user's desktop is spread
817  over more than one monitor (works best with wx2.5 or newer, but try to do
818  better with wx2.4 or earlier as well).
819
820* aven: Initialise GfxCore slightly later to avoid visual glitch from notebook
821  contents being visible before any survey is loaded.
822
823* aven: Allow a coloured texture to be used
824
825* aven: Don't initialise until we have data (to the user, this means the window
826  is default colour (grey for most systems) not black until a survey is
827  loaded).
828
829* aven: Fixed weird "shadowed" icons.
830
831Changes in 1.1.1 (2004-10-06):
832
833* (Microsoft Windows version): aven: Hopefully fix loading a survey file at
834  startup.
835
836* aven: Delay loading the bitmap for the "About" dialog until it is first
837  needed.  We want start up to be as quick as possible.
838
839Changes between 1.0.32 and 1.1.0 (never formally released):
840
841* NOTE: Survex 1.1.X releases are development snapshots made available for
842  the purposes of allowing wider testing and getting more user feedback.  Once
843  the code has stabilised the version number will be raised to 1.2.0.
844
845* aven: Now uses OpenGL for 3d rendering - you may need to install drivers if
846  you're using Windows 95 - these can be obtained from:
847  http://download.microsoft.com/download/win95upg/info/1/W95/EN-US/Opengl95.exe
848
849* aven: Solid passages - passage dimensions are currently inferred from
850  the leg length (pretty effective as you can measure longer legs in
851  larger passages).  Use of real LRUD data coming soon...
852
853* aven: Depth colouring is now continuously varying.
854
855* aven: Colour by depth can now be turned off (and there's the start of a
856  framework for properly implementing colour by date, error, etc).
857
858* aven: Find stations moved onto the toolbar and now uses a simple wildcarded
859  match (? matches any character, * matches any number of characters).
860
861* aven: We now use the status bar for coordinates, distances, etc to make
862  better use of screen space.
863
864* aven: Full screen mode (F11).
865
866* aven: Perspective view.
867
868* aven: Context sensitive cursor shape - needs more work.
869
870* aven: Mouse actions changed (hopefully they're now more natural, but
871  you may find the change disorientating - feedback wanted on this).
872
873* aven: Added "presentations" which allow you to set up fly-through paths
874  and load/save/run them.
875
876* aven: A presentation can be exported as a movie file.
877
878* aven: Added Save screenshot facility.
879
880* aven: Depth fogging option.
881
882* aven: Added Smooth Lines option.
883
884* aven: Added Textured Walls option.
885
886* aven: If a survey has surface legs but no underground legs, default to
887  showing the surface legs.
888
889* cavern: Dates given to *date are now stored in the 3d file.
Note: See TracBrowser for help on using the repository browser.