-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from 3F/LuNari_dev
LunaRoad -> LuNari
- Loading branch information
Showing
57 changed files
with
319 additions
and
276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
### How to Contribute | ||
Extend our API layer or improve all of what you want. It's completely transparent with our flexible architecture. | ||
|
||
Extend our API layer or improve all of what you want. It easy and completely transparent with our flexible architecture. | ||
Here's how to extend API: [in a few steps (Wiki)](https://github.com/3F/LuNari/wiki/API) | ||
|
||
If you ready to contribute, just use the pull requests or send .patch file. If it's not a simple binding to cover API, please also provide a correct unit-tests. | ||
If you ready to contribute, please use [Pull Requests](https://help.github.com/articles/creating-a-pull-request/) (please through non-master branches). Other ways like .patch files are possible, but it may take more time to review the changes. | ||
|
||
*Also note: if it's not a simple binding to cover API, please provide related unit-tests. Thanks.* | ||
|
||
The Application Program Interface of Lua: | ||
|
||
* [v5.1](https://www.lua.org/manual/5.1/manual.html#3) | ||
* [v5.2](https://www.lua.org/manual/5.2/manual.html#4) | ||
* [v5.3](https://www.lua.org/manual/5.3/manual.html#4) | ||
* [v5.4](https://www.lua.org/manual/5.4/) *( preview )* | ||
|
||
The documentation **[here](https://github.com/3F/LunaRoad/wiki/API)** - *try with us* | ||
|
||
Wiki of Conari engine: https://github.com/3F/Conari/wiki | ||
The related documentation for **Conari** engine: https://github.com/3F/Conari/wiki |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2016-2017 Denis Kuzmin <[email protected]> | ||
Copyright (c) 2016,2017,2019 Denis Kuzmin <[email protected]> :: GitHub/3F | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>LuNari</id> | ||
<version>1.4.1</version> | ||
<title>[ LuNari ] Lua for .NET: 5.4, 5.3, 5.2, 5.1, ...</title> | ||
<authors>github.com/3F/LuNari</authors> | ||
<license type="file">License.txt</license> | ||
<owners>reg</owners> | ||
<licenseUrl>https://aka.ms/deprecateLicenseUrl</licenseUrl> | ||
<projectUrl>https://github.com/3F/LuNari</projectUrl> | ||
<repository type="git" url="https://github.com/3F/LuNari" /> | ||
<iconUrl>https://raw.githubusercontent.com/3F/LuNari/master/LuNari/Resources/LuNari.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description> | ||
|
||
Lua for .NET on Conari engine | ||
Provides support* for all popular versions, like: 5.4, 5.3, 5.2, 5.1, ... | ||
|
||
* There are several methods to use LuNari: | ||
API-layer and binding at runtime (DLR, Lambda expressions) with any Lua functions; | ||
_ _ _ _ _ _ | ||
|
||
using(var l = new Lua<ILua53>("Lua.dll")) { /* ILua51, ILua52, ILua53, ... */ } | ||
_ _ _ _ _ _ | ||
Source code and all details here: https://github.com/3F/LuNari | ||
|
||
|
||
~~~~~~~~ | ||
Get it via GetNuTool: | ||
========================================== | ||
gnt /p:ngpackages="LuNari/1.4.1" | ||
========================================== | ||
* https://github.com/3F/GetNuTool | ||
|
||
</description> | ||
<summary>Lua for .NET: Lua 5.4, 5.3, 5.2, 5.1, ... (Lua C API for .NET) Source code: https://github.com/3F/LuNari </summary> | ||
<tags>Lua API dll Lua54 Lua53 Lua52 Lua51 LuNari LunaRoad KeraLua NLua LuaInterface Conari</tags> | ||
<releaseNotes></releaseNotes> | ||
<copyright>Copyright (c) 2016,2017,2019 Denis Kuzmin [[email protected]] :: GitHub/3F </copyright> | ||
<references> | ||
<!-- <reference file="Conari.dll" /> Optional via GetNuTool etc. --> | ||
<reference file="LuNari.dll" /> | ||
</references> | ||
<dependencies> | ||
<dependency id="Conari" version="(1.3.0,)" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2016-2017 Denis Kuzmin <[email protected]> | ||
* Copyright (c) 2016,2017,2019 Denis Kuzmin < [email protected] > :: github.com/3F | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -22,7 +22,7 @@ | |
* THE SOFTWARE. | ||
*/ | ||
|
||
namespace net.r_eg.LunaRoad.API | ||
namespace net.r_eg.LuNari.API | ||
{ | ||
public abstract class Binder: IBinder | ||
{ | ||
|
Oops, something went wrong.