Bump version to 0.9.0

master
rubenwardy 2015-10-28 21:52:17 +00:00
parent 51a44838cc
commit 66d4488e2a
4 changed files with 11 additions and 9 deletions

View File

@ -9,9 +9,9 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/")
# Configuration
#
set(NBE_MAJOR_VERSION 0)
set(NBE_MINOR_VERSION 8)
set(NBE_PATCH_VERSION 1)
set(NBE_DESCR_VERSION "0.8.1 - Glass")
set(NBE_MINOR_VERSION 9)
set(NBE_PATCH_VERSION 0)
set(NBE_LABEL_VERSION "Obsidian Glass")
option(DEBUG "Debug mode" 0)
if(DEBUG)
message("-- Is debug")

View File

@ -5,7 +5,7 @@ Node Box Editor
Use this editor to make nodeboxes for nodes in Minetest.
Version: 0.8
Version: 0.9.0
To do list and bug tracker is here: https://github.com/rubenwardy/NodeBoxEditor/issues?state=open

View File

@ -232,7 +232,7 @@ bool MenuState::OnEvent(const SEvent& event)
ImageDialog::show(state, NULL, ECS_TOP);
return true;
case GUI_HELP_HELP:
OPEN_URL("http://rubenwardy.com/NodeBoxEditor/");
OPEN_URL("http://rubenwardy.com/NodeBoxEditor/?v=");
break;
case GUI_HELP_FORUM:
OPEN_URL("https://forum.minetest.net/viewtopic.php?f=14&t=2840");
@ -241,12 +241,13 @@ bool MenuState::OnEvent(const SEvent& event)
OPEN_URL("https://github.com/rubenwardy/NodeBoxEditor/issues");
break;
case GUI_HELP_ABOUT: {
core::stringw msg = L"The Nodebox Editor\n"
core::stringw msg = L"NodeBoxEditor (NBE)\n"
L"Version: ";
msg += EDITOR_TEXT_VERSION;
msg += EDITOR_TEXT_VERSION_LABEL;
msg += L"\n\n"
L"This free nodebox editor was made by rubenwardy in C++ and Irrlicht.\n"
L"A free and open source nodebox editor "
L"created by rubenwardy, using C++ and Irrlicht."
L"You can download newer versions from the Minetest forum.";
state->device->getGUIEnvironment()->addMessageBox(L"About", msg.c_str());

View File

@ -1,7 +1,8 @@
#ifndef CONF_CMAKE_HPP_INCLUDED
#define CONF_CMAKE_HPP_INCLUDED
#define EDITOR_TEXT_VERSION "@NBE_DESCR_VERSION@"
#define EDITOR_TEXT_VERSION "@NBE_MAJOR_VERSION@.@NBE_MINOR_VERSION@.@NBE_PATCH_VERSION@"
#define EDITOR_TEXT_VERSION_LABEL EDITOR_TEXT_VERSION " - @NBE_LABEL_VERSION@"
#if @DEBUG@
#define _DEBUG