Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
4b94291
First tests added
GlebChili Dec 8, 2019
e9c0f5a
Test on linux added
GlebChili Dec 8, 2019
6bbf2f7
Update .travis.yml
GlebChili Dec 8, 2019
59c1108
Windows builder updated to dotnet script
GlebChili Dec 8, 2019
9ab95af
Update .travis.yml
GlebChili Dec 8, 2019
0551b12
Update .travis.yml
GlebChili Dec 8, 2019
4f963aa
Update .travis.yml
GlebChili Dec 8, 2019
597d8cf
Update .travis.yml
GlebChili Dec 8, 2019
fbeacbd
Linux tester changed
GlebChili Dec 8, 2019
6365dd9
Tester notification added
GlebChili Dec 8, 2019
70b53de
Tests were updated
GlebChili Dec 8, 2019
8c0e813
Travis-CI link added to README.md
GlebChili Dec 8, 2019
847ef11
Windows tester added
GlebChili Dec 8, 2019
0e53eca
Windows tester updated
GlebChili Dec 8, 2019
0e3285d
Update .travis.yml
GlebChili Dec 8, 2019
9af5e20
Windows tester now launches gmod in console
GlebChili Dec 9, 2019
410519a
One more fix for windows builder
GlebChili Dec 9, 2019
c584cb4
And one more fix for Windows btester
GlebChili Dec 9, 2019
dd1d766
And new update for windows tester
GlebChili Dec 9, 2019
894b187
Still fucking around with Windows tester
GlebChili Dec 9, 2019
dca9960
I hate srcds on Windows
GlebChili Dec 9, 2019
45330de
One more test for Windows tester
GlebChili Dec 9, 2019
159b1b5
I hope it finally works
GlebChili Dec 9, 2019
7075f82
Update .travis.yml
GlebChili Dec 9, 2019
a65a7f5
FInal changes for Windows tester
GlebChili Dec 9, 2019
836840b
Libsodium link in README was fixed
GlebChili Dec 19, 2019
30d4120
Discord notifications update
GlebChili Jan 10, 2020
1eb5e97
Travis notifications update
GlebChili Jan 10, 2020
ff5e9ae
Travis notifications order changed
GlebChili Jan 10, 2020
79a5bd3
Travis final successful build notification now contains a link to git…
GlebChili Jan 10, 2020
91eeebc
Small README update
GlebChili Jan 11, 2020
dd81dbc
Travis final success notification now has proper link to the commit
GlebChili Jan 11, 2020
4ce3b61
Travis final success notification fixed
GlebChili Jan 11, 2020
c92623b
GmodNET folder name was converted to lower case
GlebChili Jan 15, 2020
65e9981
Small fix for previous commit
GlebChili Jan 15, 2020
9a0863b
GmodNET.API package now has IntelliSense documentation
GlebChili Jan 16, 2020
bca6553
GmodNET.API version was updated to 0.5.1
GlebChili Jan 17, 2020
de9e99b
GmodNET.API XML comments were fixed
GlebChili Jan 17, 2020
b3ca7fc
Bundeled .NET Runtime was updated to version 3.1.1
GlebChili Jan 17, 2020
6765e46
Travis builders now use .NET Core SDK version 3.1.101
GlebChili Jan 17, 2020
4e3e64e
Case sensitive issue on Linux addressed
GlebChili Jan 20, 2020
641970b
Gmod_close now loads hostfxr version 3.1.1. Welcome message version s…
GlebChili Jan 21, 2020
e8e5ca5
GmodNET built-in XML documentation fixes
GlebChili Jan 21, 2020
76794dd
GmodNET.API version updated to 0.5.1 (stable), Travis Windows tester …
GlebChili Jan 21, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
GmodNET.API XML comments were fixed
  • Loading branch information
GlebChili committed Jan 17, 2020
commit de9e99bdce290b48d290ddfe3b9755e431d74d7f
5 changes: 4 additions & 1 deletion gm_dotnet_managed/GmodNET.API/ILua.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ namespace GmodNET.API
/// <returns>Number of return values function pushes on the stack</returns>
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
public delegate int CFuncManagedDelegate(IntPtr lua_state_pointer);
/// <summary>
/// Managed wrapper around Garry's Mod native ILuaBase
/// </summary>
public interface ILua
{
/// <summary>
Expand Down Expand Up @@ -50,7 +53,7 @@ public interface ILua
/// <summary>
/// Sets the metatable for the value at iStackPos to the value at the top of the stack. Pops the value off of the top of the stack
/// </summary>
/// <param name="iStacPos">Position of object ot set metatable to</param>
/// <param name="iStackPos">Position of object ot set metatable to</param>
public void SetMetaTable(int iStackPos);
/// <summary>
/// Pushes the metatable of the value at iStackPos on to the top of the stack. Upon failure, returns false and does not push anything.
Expand Down
5 changes: 0 additions & 5 deletions gm_dotnet_managed/GmodNET.API/IModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,5 @@ public string ModuleVersion
/// Will be called by GmodNET on module unload. In this method module must cleanup and unregister with Garry's Mod native/lua data
/// </summary>
public void Unload();
/// <summary>
/// May given version of the module be loaded clientside. Called only when UseClientsideModuleVerification is true.
/// </summary>
/// <param name="version"></param>
/// <returns>Is version allowed</returns>
}
}