Skip to content

Commit

Permalink
Update Readme and License
Browse files Browse the repository at this point in the history
  • Loading branch information
zbx1425 committed Jan 17, 2021
1 parent 08c5b35 commit ca46db5
Show file tree
Hide file tree
Showing 6 changed files with 72 additions and 13 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

bfg-1.13.1.jar
bin_debug/
bin_release/

# User-specific files
*.suo
*.user
Expand Down
4 changes: 2 additions & 2 deletions BlocklyAtsGui/BlocklyAtsGui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\bin_debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;MONO</DefineConstants>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
Expand All @@ -35,7 +35,7 @@
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\bin_release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<DefineConstants>TRACE;MONO</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion BlocklyAtsGui/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.4.0")]
25 changes: 15 additions & 10 deletions BlocklyAtsGui/Resources/Attribution.txt
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
Built on Blockly
Blockly is a library from Google for building beginner-friendly block-based programming languages.
- Built on Blockly
Blockly is a library from Google for building beginner-friendly block-based programming languages.
Licensed under the Apache License, Version 2.0.
https://developers.google.com/blockly

C# code generator: blockly-generator-csharp
Generate C# code from Blockly blocks.
- C# code generator: blockly-generator-csharp
Generate C# code from Blockly blocks.
Copyright © 2013-2014 City Index Ltd. Licensed under the Apache License, Version 2.0.
https://github.com/cityindex/blockly-generator-csharp

Win32 dll script interpreter: Lua
Lua is a powerful, efficient, lightweight, embeddable scripting language.
- Optional browser interface: CefSharp
Full Web Browser in your .Net App.
Licensed under the 3-Clause BSD License.
https://cefsharp.github.io/

- Win32 dll script interpreter: Lua
Lua is a powerful, efficient, lightweight, embeddable scripting language.
Copyright © 1994–2019 Lua.org. Distributed under the terms of the MIT license.
https://www.lua.org/

INI file parsing: LIP - Lua INI Parser
Lua INI Parser is a tiny Lua library allowing to handle .ini files.
- INI file parsing: LIP - Lua INI Parser
Lua INI Parser is a tiny Lua library allowing to handle .ini files.
Copyright © Carreras Nicolas. This project is under MIT Licence.
https://github.com/Dynodzzo/Lua_INI_Parser

Webpage dialog: AlertifyJS
AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
- Webpage dialog: AlertifyJS
AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
Licensed under GPL 3.0.
https://alertifyjs.com/
9 changes: 9 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
MIT License

Copyright (c) 2021 zbx1425

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 the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# BlocklyAts
Create [BVE](http://www.bvets.net) [ATS](http://bvets.net/en/edit/formats/vehicle/ats.html) plugins with a beginner-friendly block-based programming tool!

<img src="https://s3.ax1x.com/2021/01/17/ssWOYD.png" height="50px" />

![Thumbnail Image](https://s3.ax1x.com/2021/01/17/ssW6e0.png)
![Build Config Thumbnail Image](https://s3.ax1x.com/2021/01/17/ssWRFU.png)

## License
This project is licensed under the MIT License.

## Third-Party Libraries
- Built on Blockly
Blockly is a library from Google for building beginner-friendly block-based programming languages.
Licensed under the Apache License, Version 2.0.
https://developers.google.com/blockly

- C# code generator: blockly-generator-csharp
Generate C# code from Blockly blocks.
Copyright © 2013-2014 City Index Ltd. Licensed under the Apache License, Version 2.0.
https://github.com/cityindex/blockly-generator-csharp

- Optional browser interface: CefSharp
Full Web Browser in your .Net App.
Licensed under the 3-Clause BSD License.
https://cefsharp.github.io/

- Win32 dll script interpreter: Lua
Lua is a powerful, efficient, lightweight, embeddable scripting language.
Copyright © 1994–2019 Lua.org. Distributed under the terms of the MIT license.
https://www.lua.org/

- INI file parsing: LIP - Lua INI Parser
Lua INI Parser is a tiny Lua library allowing to handle .ini files.
Copyright © Carreras Nicolas. This project is under MIT Licence.
https://github.com/Dynodzzo/Lua_INI_Parser

- Webpage dialog: AlertifyJS
AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
Licensed under GPL 3.0.
https://alertifyjs.com/

0 comments on commit ca46db5

Please sign in to comment.