summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2005-11-14 23:44:57 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2005-11-14 23:44:57 +0100
commit2ad60490242ae38163bf072d98e62df2ac911ac5 (patch)
tree7acdcd9d75e31ba49728c851c4c193d6d78bc0e4
parentacd87aafd084e1573242d0e6023bb4b3bc25d9ef (diff)
update README and NEWS for 0.1.2 release
-rw-r--r--NEWS6
-rw-r--r--README20
-rw-r--r--configure.ac2
-rw-r--r--src/gipfel.cxx2
4 files changed, 27 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 6ee47f7..2903e9e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,12 @@
gipfel ChangeLog
=================
+gipfel-0.1.2
+ - Fix bugs for "Normal Projection" and "Panoramic Projection" mode.
+ - Add variable width display of GPS tracks.
+ - Add heuristics for hidden object detection.
+ - Switch to fltk "plastic" scheme as it looks better.
+
gipfel-0.1.1
- Don't try to display invisible trackpoints.
- Fix bug in "Normal Projection" code for wide angle images.
diff --git a/README b/README
index ceb2a11..e622d3b 100644
--- a/README
+++ b/README
@@ -106,6 +106,10 @@ one line per waypoint. Each line should be of the form:
<LATITUDE>,<LONGITUDE>,<HEIGHT>
+GPS tracks are displayed with variable width depending on the distance
+of the way points from the current view point and the scale value.
+You can also modify the width using the "Track Width" slider.
+
Loading and Saving Images
=========================
@@ -113,6 +117,20 @@ Loading and Saving Images
gipfel allows to save the image paramters in the comment section of
the JPEG image. Use the File->Save Image menu item.
Note, that in the saved image all previous JPEG comments are removed.
+If you open an image containing gipfel image parameters, they are
+automatcally set.
+
+
+Hidden Object Detection
+=======================
+
+gipfel tries to identify objects in its database, that are hidden by others.
+This is done by assuming that every object/peak has the form of a cone
+with a fixed steapness. If such imaginary cone would hide the view to a
+point in the database, gipfel marks it as hidden. Hidden objects are
+not shown by default, but you can enable the display of hidden objects using
+the Option->Show Hidden menu entry. Hidden objects and hidden GPS way points
+are displayed in blue.
Troubleshooting
@@ -162,4 +180,4 @@ results of gipfel.
Johannes Hofmann
(Johannes.Hofmann@gmx.de)
-Oct 31, 2005
+Nov 14, 2005
diff --git a/configure.ac b/configure.ac
index 09185c6..6d4f557 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT(gipfel, 0.1.1, Johannes.Hofmann@gmx.de)
+AC_INIT(gipfel, 0.1.2, Johannes.Hofmann@gmx.de)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/Panorama.H])
AC_CONFIG_HEADER(config.h)
diff --git a/src/gipfel.cxx b/src/gipfel.cxx
index 6dd96d6..b8b1462 100644
--- a/src/gipfel.cxx
+++ b/src/gipfel.cxx
@@ -193,7 +193,7 @@ void fill_menubar(Fl_Menu_Bar* mb) {
mb->add("&Projection/Panoramic Projection", NULL, (Fl_Callback *)proj_cb,
(void *)1, FL_MENU_RADIO);
- mb->add("&Option/Show Hidden Peaks", NULL, (Fl_Callback *) hidden_cb,
+ mb->add("&Option/Show Hidden", NULL, (Fl_Callback *) hidden_cb,
(void *)0, FL_MENU_TOGGLE);
mb->add("&Help/About", NULL, (Fl_Callback*)about_cb);