*happy new year. hope i can make a release of v1.2 in 2018.

This commit is contained in:
Wang Renxin 2017-12-30 12:31:07 +08:00
parent a34a3dffe7
commit a08c6c845c
7 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
The MIT License
Copyright (C) 2011 - 2017 Wang Renxin
Copyright (C) 2011 - 2018 Wang Renxin
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in

View File

@ -5,7 +5,7 @@
|_|_|_| |_| |_____|__|__|_____|_____|_____|
~~~~~~~~~~
**Copyright (C) 2011 - 2017 Wang Renxin. All rights reserved.**
**Copyright (C) 2011 - 2018 Wang Renxin. All rights reserved.**
[![Build status](https://travis-ci.org/paladin-t/my_basic.svg?branch=master)](https://travis-ci.org/paladin-t/my_basic)
[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT)
@ -117,7 +117,7 @@ For more details about using MY-BASIC when it has been integrated with a project
## [Interpreter workflow diagram](https://github.com/paladin-t/my_basic/wiki/Interpreter-workflow-diagram)
It's necessary to know some principle of MY-BASIC before doing heavy customization; nothing's better than a workflow diagram to get a first image.
It's necessary to know some principle of MY-BASIC before doing deep customization; nothing's better than a workflow diagram to get a first image.
![](https://github.com/paladin-t/my_basic/wiki/img/workflow.png)

View File

@ -3,7 +3,7 @@
**
** For the latest info, see https://github.com/paladin-t/my_basic/
**
** Copyright (C) 2011 - 2017 Wang Renxin
** Copyright (C) 2011 - 2018 Wang Renxin
**
** Permission is hereby granted, free of charge, to any person obtaining a copy of
** this software and associated documentation files (the "Software"), to deal in

View File

@ -3,7 +3,7 @@
**
** For the latest info, see https://github.com/paladin-t/my_basic/
**
** Copyright (C) 2011 - 2017 Wang Renxin
** Copyright (C) 2011 - 2018 Wang Renxin
**
** Permission is hereby granted, free of charge, to any person obtaining a copy of
** this software and associated documentation files (the "Software"), to deal in

View File

@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
COPYRIGHT 2011 - 2017 WANG RENXIN. ALL RIGHTS REESERVED.
COPYRIGHT 2011 - 2018 WANG RENXIN. ALL RIGHTS REESERVED.
LIST OF DONORS.
-->
<html>
@ -113,6 +113,6 @@ LIST OF DONORS.
<a href="https://github.com/paladin-t/my_basic">BACK TO MY-BASIC</a>
</p>
</div>
<p align="center">Copyright (C) 2011 - 2017 Wang Renxin. All rights reserved.</p>
<p align="center">Copyright (C) 2011 - 2018 Wang Renxin. All rights reserved.</p>
</body>
</html>

View File

@ -57,7 +57,7 @@
VALUE "FileDescription", "MY-BASIC Interpreter for Windows"
VALUE "FileVersion", "1, 2, 0, 0"
VALUE "InternalName", "my_basic"
VALUE "LegalCopyright", "Copyright (C) 2011 - 2017 Wang Renxin"
VALUE "LegalCopyright", "Copyright (C) 2011 - 2018 Wang Renxin"
VALUE "LegalTrademarks", "MY-BASIC"
VALUE "OriginalFilename", "my_basic.exe"
VALUE "ProductName", "MY-BASIC"

View File

@ -3,7 +3,7 @@
**
** For the latest info, see https://github.com/paladin-t/my_basic/
**
** Copyright (C) 2011 - 2017 Wang Renxin
** Copyright (C) 2011 - 2018 Wang Renxin
**
** Permission is hereby granted, free of charge, to any person obtaining a copy of
** this software and associated documentation files (the "Software"), to deal in
@ -979,7 +979,7 @@ static void _list_directory(const char* path) {
static void _show_tip(void) {
_printf("MY-BASIC Interpreter Shell - %s\n", mb_ver_string());
_printf("Copyright (C) 2011 - 2017 Wang Renxin. All Rights Reserved.\n");
_printf("Copyright (C) 2011 - 2018 Wang Renxin. All Rights Reserved.\n");
_printf("For more information, see https://github.com/paladin-t/my_basic/.\n");
_printf("Input HELP and hint enter to view help information.\n");
}