2014-10-13 18:08:16 +04:00
|
|
|
/*
|
2015-03-10 17:44:05 +03:00
|
|
|
* Copyright 2015 Vincent Sanders <vince@netsurf-browser.org>
|
2014-10-13 18:08:16 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-04-08 14:40:16 +04:00
|
|
|
#include "testament.h"
|
2012-10-06 21:12:57 +04:00
|
|
|
|
2014-10-13 18:08:16 +04:00
|
|
|
#include "desktop/version.h"
|
|
|
|
|
2015-03-10 17:44:05 +03:00
|
|
|
const char * const netsurf_version = "3.4 (Dev"
|
2012-10-06 21:12:57 +04:00
|
|
|
#if defined(CI_BUILD)
|
|
|
|
" CI #" CI_BUILD
|
|
|
|
#endif
|
|
|
|
")"
|
|
|
|
;
|
2009-05-07 03:52:12 +04:00
|
|
|
const int netsurf_version_major = 3;
|
2015-03-10 17:44:05 +03:00
|
|
|
const int netsurf_version_minor = 4;
|