summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2016-11-19 21:44:42 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2016-11-19 21:44:42 +0000
commit0513782fe3bb2884d0f63fb11c69f06055332388 (patch)
treee03f3eb5377391a2817bb8ea856c18380d5ec023
parent05fa29ba8bc2dbfaa9af7ed1263554c7cdc9214d (diff)
downloadnetsurf-0513782fe3bb2884d0f63fb11c69f06055332388.tar.gz
netsurf-0513782fe3bb2884d0f63fb11c69f06055332388.tar.bz2
Correct revision number
I think my note about AmigaOS version numbering was misleading.
-rw-r--r--frontends/amiga/version.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontends/amiga/version.c b/frontends/amiga/version.c
index f7ecc2ecc..c3cd9e2b5 100644
--- a/frontends/amiga/version.c
+++ b/frontends/amiga/version.c
@@ -18,14 +18,14 @@
#include "testament.h"
-/* NB: AmigaOS revision numbers start at 1 (not 0) and are monotonically
- * incremental (v1.20 is higher than v1.3 and not the same as v1.2).
- * Consequently, this version pair may not match the user-facing one in
- * desktop/version.c. Release revisions are prepended with 6000 to ensure
- * they are higher than CI builds, and make this (slightly) less confusing.
+/* Release revisions are prepended with 6000 so the version numbers below
+ * are same as NetSurf numbering.
+ * CI builds use themselves as the revision.
+ * This means releases have a higher revision than CI builds, and stops
+ * problems created by "0" not being a valid AmigaOS revision number.
*/
#define NETSURF_VERSION_MAJOR "3"
-#define NETSURF_VERSION_MINOR_EXTERNAL "8"
+#define NETSURF_VERSION_MINOR_EXTERNAL "7"
#if defined(CI_BUILD)
#define NETSURF_VERSION_MINOR CI_BUILD
#else