diff --git a/.gitignore b/.gitignore index d0e2c55..a90bac4 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,7 @@ /client/visual/*.user /client/visual/x64/Debug /server/clients +/client/visual/Release +/client/visual/*.opendb +/client/visual/*.db +/client/visual/x64/Release diff --git a/doc/index.html b/doc/index.html index cf2f73d..c42d023 100644 --- a/doc/index.html +++ b/doc/index.html @@ -83,11 +83,11 @@ If for some reason you don't want to use a prebuilt release, here is the process

Client build

-The client (the part that must be integrated in the application to debug) requires some C code, and thus must either be built as a separate dynamic link library, or directly integrated in your application source code (which is not descibed here as it would vary depending on your application and the tools you use to build it ; but since you already know how to build your own application, integration should be easy). +

The client (the part that must be integrated in the application to debug) requires some C code, and thus must either be built as a separate dynamic link library, or directly integrated in your application source code (which is not descibed here as it would vary depending on your application and the tools you use to build it ; but since you already know how to build your own application, integration should be easy).

-To build the dynamic link library (DLL) on Windows, you can use visual studio. Once visual studio is installed, open client/visual/grldc.sln and build the solution. This should result in a grldc.dll file in the Debug or Release folder. +

To build the dynamic link library (DLL) on Windows, you can use visual studio. Once visual studio is installed, open client/visual/grldc.sln and build the solution. The default distribution is configured for lua5.2 on x86 architecture (it has also been tested with lua5.1 and luajit, but you'll need to download and configure the corresponding lua library). This should result in a grldc.dll file in the Debug or Release folder.

-One thing to note is that the dll embeds lua files for convenience (so that you don't have to copy them with your application data and load them with lua). This is done by client/build/embed.lua.bat which will generate some .lua.c files that are then built into the DLL. This is done automatically if you use the provided visual studio solution file. +

One thing to note is that the dll embeds lua files for convenience (so that you don't have to copy them with your application data and load them with lua). This is done by client/build/embed.lua.bat which will generate some .lua.c files that are then built into the DLL. This is done automatically if you use the provided visual studio solution file.

Server build

diff --git a/server/wxLdb/ui/about.lua b/server/wxLdb/ui/about.lua index df5bfae..53efe63 100644 --- a/server/wxLdb/ui/about.lua +++ b/server/wxLdb/ui/about.lua @@ -7,5 +7,5 @@ _G.print = print -- override wx print function with original one module( "ui.about" ) function popup() - wx.wxMessageBox( "Graphical Remote Lua Debugger @VERSION@\nCopyright (C) 2010-2012 Youen Toupin. All rights reserved.\nSee file GRLD-license.txt for permission notice.\nSee file contact.txt if you have any question,\nor go to http://cushy-code.com/grld/", "About GRLD" ) + wx.wxMessageBox( "Graphical Remote Lua Debugger\nCopyright (C) 2010-2016 Youen Toupin. All rights reserved.\nSee file LICENSE for permission notice.\nSee github repository https://github.com/neuoy/GRLD if you have any question", "About GRLD" ) end