Skip to content

Commit c9ff90f

Browse files
committed
Update version info
1 parent f8be18a commit c9ff90f

File tree

8 files changed

+14
-8
lines changed

8 files changed

+14
-8
lines changed

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
nuBASIC ChangeLog
22
Please send nuBASIC bug reports to <acaldmail@gmail.com>.
33

4+
2017-01-22
5+
- Add format function for floating point representation (StrP, StrP$)
6+
- Add Hash-table support: HSet(), HGet(), HCnt(), HChk(), HDel()
7+
- Add Any type: type deduction
8+
- Add GetAppPath() API
9+
- Add Quit() API
10+
- Improvements and bug-fixes
11+
412

513
2016-01-22
614
- Add StrP function for a better floating point representation

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Please send nuBASIC / nuBasicEditor bug reports to <acaldmail@gmail.com>.
77
Win32/64 built with VS2015 needs "Visual C++ Redistributable Packages for Visual Studio 2015"
88
https://www.microsoft.com/en-us/download/details.aspx?id=48145
99

10-
TODO, 2017
10+
Jan 22, 2017
1111
* Released nuBASIC 1.47
1212
- Add format function for floating point representation (StrP, StrP$)
1313
- Add Hash-table support: HSet(), HGet(), HCnt(), HChk(), HDel()

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-------------------------------------------------------------------------------
22
nuBASIC - http://www.nubasic.eu - https://sourceforge.net/projects/nubasic/
3-
(c) Antonino Calderone <acaldmail@gmail.com> - 2014, 2015
3+
(c) Antonino Calderone <antonino.calderone@gmail.com> - 2014 - 2017
44
-------------------------------------------------------------------------------
55

66
nuBASIC is an implementation of an interpreter of the BASIC programming

examples/raycast3D.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ Sub Draw3DView( offsetx%, offsety%, dy%, ray%, fact% )
408408
Next i%
409409

410410
DrawMap2D offsetx%, offsety%+dy%
411-
Textout offsetx% + 100, offsety%+dy%+20, "nuBASIC - Ray " + version$, &hffffff
411+
Textout offsetx% + 100, offsety%+dy%+20, "nuBASIC - Raycast 3D " + version$, &hffffff
412412
Textout offsetx% + 100, offsety%+dy%+50, "MOVE /\\ 'a' \\/ 'z'", &hffffff
413413
Textout offsetx% + 100, offsety%+dy%+80, "ROTATE ACW 'n' CW 'm'", &hffffff
414414
End Sub

nuBasicEditor/README

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
nuBASICEditor
22

3-
(c) Antonino Calderone <acaldmail@gmail.com> - 2014-2016
3+
(c) Antonino Calderone <acaldmail@gmail.com> - 2014-2017
44
http://www.nubasic.eu
55

66
nuBasicEditor is an syntax highlighting editor based on Scintilla
@@ -9,5 +9,3 @@ nuBasicEditor is an syntax highlighting editor based on Scintilla
99
SUPPORTED PLATFORMS
1010
-------------------
1111
Windows
12-
13-

nuBasicEditor/nuBasicEditor.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1726,7 +1726,7 @@ void nu::editor_t::show_splash()
17261726
return;
17271727

17281728
const int wdx = 400;
1729-
const int wdy = 170 + GetSystemMetrics(SM_CYCAPTION);
1729+
const int wdy = 160 + GetSystemMetrics(SM_CYCAPTION);
17301730

17311731
RECT r = { 0 };
17321732
GetClientRect(GetDesktopWindow(), &r);

nuBasicEditor/nubasic.bmp

-32.8 KB
Binary file not shown.

nu_about.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ namespace about {
4747
static const char* const homepage = "http://www.nubasic.eu";
4848
static const char* const license = "GNU General Public License v2.0";
4949
static const char* const version = PACKAGE_VERSION;
50-
static const char* const copyright = "2014-2016";
50+
static const char* const copyright = "2014-2017";
5151
static const char* const description
5252
= "nuBASIC is a programming language from the BASIC family.\n"
5353
"nuBASIC is developed in C++11 and distributed under GPLv2 License."

0 commit comments

Comments
 (0)