git-svn-id: https://spexeah.com:8443/svn/Asuro@658 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c

This commit is contained in:
kieron
2018-05-04 00:10:05 +00:00
parent 0406efe0ec
commit 80ffb9a60b
10 changed files with 5 additions and 4 deletions

View File

@ -3,13 +3,13 @@ unit asuro;
interface
const
VERSION = '1.0.0-653a';
VERSION = '1.0.0-657a';
VERSION_MAJOR = '1';
VERSION_MINOR = '0';
VERSION_SUB = '0';
REVISION = '653';
REVISION = '657';
RELEASE = 'a';
LINE_COUNT = 26780;
LINE_COUNT = 26781;
implementation

View File

@ -206,8 +206,9 @@ end;
procedure version(params : PParamList);
begin
console.writestringWND('Asuro Version: ', TERMINAL_HWND);
console.writestringlnWND(asuro.VERSION, TERMINAL_HWND);
console.writestringWND('Line Count: ', TERMINAL_HWND);
console.writestringWND('Source Line-Count: ', TERMINAL_HWND);
console.writeintlnWND(LINE_COUNT, TERMINAL_HWND);
end;