Skip to content

Commit

Permalink
Update version info
Browse files Browse the repository at this point in the history
  • Loading branch information
eantcal committed Jan 22, 2017
1 parent f8be18a commit c9ff90f
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
nuBASIC ChangeLog
Please send nuBASIC bug reports to <[email protected]>.

2017-01-22
- Add format function for floating point representation (StrP, StrP$)
- Add Hash-table support: HSet(), HGet(), HCnt(), HChk(), HDel()
- Add Any type: type deduction
- Add GetAppPath() API
- Add Quit() API
- Improvements and bug-fixes


2016-01-22
- Add StrP function for a better floating point representation
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Please send nuBASIC / nuBasicEditor bug reports to <[email protected]>.
Win32/64 built with VS2015 needs "Visual C++ Redistributable Packages for Visual Studio 2015"
https://www.microsoft.com/en-us/download/details.aspx?id=48145

TODO, 2017
Jan 22, 2017
* Released nuBASIC 1.47
- Add format function for floating point representation (StrP, StrP$)
- Add Hash-table support: HSet(), HGet(), HCnt(), HChk(), HDel()
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-------------------------------------------------------------------------------
nuBASIC - http://www.nubasic.eu - https://sourceforge.net/projects/nubasic/
(c) Antonino Calderone <acaldmail@gmail.com> - 2014, 2015
(c) Antonino Calderone <antonino.calderone@gmail.com> - 2014 - 2017
-------------------------------------------------------------------------------

nuBASIC is an implementation of an interpreter of the BASIC programming
Expand Down
2 changes: 1 addition & 1 deletion examples/raycast3D.bas
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ Sub Draw3DView( offsetx%, offsety%, dy%, ray%, fact% )
Next i%

DrawMap2D offsetx%, offsety%+dy%
Textout offsetx% + 100, offsety%+dy%+20, "nuBASIC - Ray " + version$, &hffffff
Textout offsetx% + 100, offsety%+dy%+20, "nuBASIC - Raycast 3D " + version$, &hffffff
Textout offsetx% + 100, offsety%+dy%+50, "MOVE /\\ 'a' \\/ 'z'", &hffffff
Textout offsetx% + 100, offsety%+dy%+80, "ROTATE ACW 'n' CW 'm'", &hffffff
End Sub
Expand Down
4 changes: 1 addition & 3 deletions nuBasicEditor/README
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
nuBASICEditor

(c) Antonino Calderone <[email protected]> - 2014-2016
(c) Antonino Calderone <[email protected]> - 2014-2017
http://www.nubasic.eu

nuBasicEditor is an syntax highlighting editor based on Scintilla
Expand All @@ -9,5 +9,3 @@ nuBasicEditor is an syntax highlighting editor based on Scintilla
SUPPORTED PLATFORMS
-------------------
Windows


2 changes: 1 addition & 1 deletion nuBasicEditor/nuBasicEditor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1726,7 +1726,7 @@ void nu::editor_t::show_splash()
return;

const int wdx = 400;
const int wdy = 170 + GetSystemMetrics(SM_CYCAPTION);
const int wdy = 160 + GetSystemMetrics(SM_CYCAPTION);

RECT r = { 0 };
GetClientRect(GetDesktopWindow(), &r);
Expand Down
Binary file modified nuBasicEditor/nubasic.bmp
Binary file not shown.
2 changes: 1 addition & 1 deletion nu_about.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace about {
static const char* const homepage = "http://www.nubasic.eu";
static const char* const license = "GNU General Public License v2.0";
static const char* const version = PACKAGE_VERSION;
static const char* const copyright = "2014-2016";
static const char* const copyright = "2014-2017";
static const char* const description
= "nuBASIC is a programming language from the BASIC family.\n"
"nuBASIC is developed in C++11 and distributed under GPLv2 License."
Expand Down

0 comments on commit c9ff90f

Please sign in to comment.