mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-01-18 00:29:31 +03:00
update version info for next development cycle
This commit is contained in:
parent
d6ad20a2c4
commit
3a5b4571b4
2
Makefile
2
Makefile
@ -663,7 +663,7 @@ ifeq ($(TARGET),beos)
|
||||
$(Q)$(BEOS_SETVER) $(EXETARGET) \
|
||||
-app $(VERSION_MAJ) $(VERSION_MIN) 0 d 0 \
|
||||
-short "NetSurf $(VERSION_FULL)" \
|
||||
-long "NetSurf $(VERSION_FULL) © 2003 - 2014 The NetSurf Developers"
|
||||
-long "NetSurf $(VERSION_FULL) © 2003 - 2016 The NetSurf Developers"
|
||||
$(VQ)echo " MIMESET: $(EXETARGET)"
|
||||
$(Q)$(BEOS_MIMESET) $(EXETARGET)
|
||||
endif
|
||||
|
@ -2,10 +2,10 @@ Short: Fast CSS capable web browser
|
||||
Uploader: chris@unsatisfactorysoftware.co.uk (Chris Young)
|
||||
Author: NetSurf contributors (OS4 port by Chris Young)
|
||||
Type: comm/www
|
||||
Version: 3.5
|
||||
Version: 3.6
|
||||
Architecture: ppc-amigaos >= 4.0.0
|
||||
|
||||
This is NetSurf 3.5 for AmigaOS 4 (native frontend).
|
||||
This is NetSurf 3.6 for AmigaOS 4 (native frontend).
|
||||
For the latest version, visit http://www.netsurf-browser.org
|
||||
|
||||
*******************************************
|
||||
|
@ -2,10 +2,10 @@ Short: Fast CSS capable web browser
|
||||
Uploader: chris@unsatisfactorysoftware.co.uk (Chris Young)
|
||||
Author: NetSurf contributors (OS4 port by Chris Young)
|
||||
Type: comm/www
|
||||
Version: 3.5 BETA
|
||||
Version: 3.6 BETA
|
||||
Architecture: m68k-amigaos >= 3.5.0
|
||||
|
||||
This is NetSurf 3.5 BETA for AmigaOS 3.
|
||||
This is NetSurf 3.6 BETA for AmigaOS 3.
|
||||
It is built off of the OS4 (Reaction) frontend.
|
||||
|
||||
Requirements are AmigaOS 3.5 or 3.9, 32MB RAM.
|
||||
|
@ -24,7 +24,8 @@ BEOS_RC := rc
|
||||
BEOS_XRES := xres
|
||||
BEOS_SETVER := setversion
|
||||
BEOS_MIMESET := mimeset
|
||||
VERSION_FULL := $(shell sed -n '/"/{s/.*"\(.*\)".*/\1/;p;}' desktop/version.c)
|
||||
|
||||
VERSION_FULL := $(shell sed -n '/_version.*=.*"/{s/.*"\(.*\)".*/\1/;p;}' desktop/version.c)
|
||||
VERSION_MAJ := $(shell sed -n '/_major/{s/.* = \([0-9]*\).*/\1/;p;}' desktop/version.c)
|
||||
VERSION_MIN := $(shell sed -n '/_minor/{s/.* = \([0-9]*\).*/\1/;p;}' desktop/version.c)
|
||||
|
||||
|
@ -40,9 +40,7 @@ CFLAGS += -Dnscocoa -D_BSD_SOURCE -D_POSIX_C_SOURCE -std=c99 -g -Os
|
||||
CFLAGS += -I/usr/X11/include
|
||||
CFLAGS += -include cocoa/Prefix.pch
|
||||
|
||||
# VERSION_FULL := $(shell sed -n '/\"/{s/.*"\(.*\)\".*/\1/;p;}' desktop/version.c)
|
||||
# TODO: this needs fixing properly everywhere
|
||||
VERSION_FULL := "3.4 (Dev)"
|
||||
VERSION_FULL := $(shell sed -n '/_version.*=.*"/{s/.*"\(.*\)".*/\1/;p;}' desktop/version.c)
|
||||
VERSION_MAJ := $(shell sed -n '/_major/{s/.* = \([0-9]*\).*/\1/;p;}' desktop/version.c)
|
||||
VERSION_MIN := $(shell sed -n '/_minor/{s/.* = \([0-9]*\).*/\1/;p;}' desktop/version.c)
|
||||
|
||||
|
@ -20,11 +20,11 @@
|
||||
|
||||
#include "desktop/version.h"
|
||||
|
||||
const char * const netsurf_version = "3.5 (Dev"
|
||||
const char * const netsurf_version = "3.6 (Dev"
|
||||
#if defined(CI_BUILD)
|
||||
" CI #" CI_BUILD
|
||||
#endif
|
||||
")"
|
||||
;
|
||||
const int netsurf_version_major = 3;
|
||||
const int netsurf_version_minor = 4;
|
||||
const int netsurf_version_minor = 6;
|
||||
|
@ -8,7 +8,7 @@
|
||||
!define DESCRIPTION "Web Browser"
|
||||
# These three must be integers
|
||||
!define VERSIONMAJOR 3
|
||||
!define VERSIONMINOR 4
|
||||
!define VERSIONMINOR 6
|
||||
!define VERSIONBUILD 1
|
||||
# These will be displayed by the "Click here for support information" link in "Add/Remove Programs"
|
||||
# It is possible to use "mailto:" links in here to open the email client
|
||||
|
Loading…
Reference in New Issue
Block a user