summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-02-26 12:15:09 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-02-26 12:15:09 +0100
commit0bf233691f005260e2bff33ebb727c0bcc4bfb1f (patch)
tree04a61a1e1ab69e6a199b942ac73d9c20d06e8445
parenta148daaa702fa62c35fa9250ab361e2f1ee28c75 (diff)
version NEWS and copyright
-rw-r--r--Makefile.am4
-rw-r--r--NEWS6
-rw-r--r--configure.ac2
-rw-r--r--src/gipfel.cxx5
4 files changed, 12 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index b73eacf..31c34ef 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,6 +1,6 @@
SUBDIRS = src
dist_doc_DATA = README NEWS
-EXTRA_DIST = alpinkoordinaten.dat
+EXTRA_DIST = gipfel.dat
gpsdir = $(datadir)/gipfel
-gps_DATA = alpinkoordinaten.dat
+gps_DATA = gipfel.dat
diff --git a/NEWS b/NEWS
index 51e3cf3..c625412 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,12 @@
gipfel ChangeLog
=================
+gipfel-0.2.7
+* Import data from http://www.viewfinderpanoramas.org/ with the
+ kind permission of Jonathan de Ferranti. Thanks a lot!
+ This brings the number of peaks in the default data file to
+ more than 21000!
+
gipfel-0.2.6
* Improve image saving. It is now possible to overwrite the current
image file.
diff --git a/configure.ac b/configure.ac
index dd5848c..cabdf15 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.2.6, Johannes.Hofmann@gmx.de)
+AC_INIT(gipfel, 0.2.7, 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 c3b963b..02ab690 100644
--- a/src/gipfel.cxx
+++ b/src/gipfel.cxx
@@ -42,7 +42,7 @@
#define DATADIR "/usr/local/share"
#endif
-#define DEFAULT_DATAFILE DATADIR "/" PACKAGE_NAME "/alpinkoordinaten.dat"
+#define DEFAULT_DATAFILE DATADIR "/" PACKAGE_NAME "/gipfel.dat"
char *img_file = NULL;
char *data_file = DEFAULT_DATAFILE;
@@ -251,7 +251,8 @@ void about_cb() {
fl_message("gipfel -- and you know what you see.\n"
"Version %s\n\n"
"(c) Johannes Hofmann 2006-2009\n\n"
- "Default datafile by http://www.alpin-koordinaten.de\n",
+ "Default datafile from http://www.viewfinderpanoramas.org/ and\n"
+ "http://www.alpin-koordinaten.de\n",
VERSION);
}