diff --git a/Help/gzdb/compilingtheeditor.html b/Help/gzdb/compilingtheeditor.html
index 98bebab7..95b3b4cc 100644
--- a/Help/gzdb/compilingtheeditor.html
+++ b/Help/gzdb/compilingtheeditor.html
@@ -23,8 +23,8 @@
Optional software:
Obtaining the source:
- The GZDoom Builder source code is hosted on SourceForge and is available through SVN at the following location:
- https://svn.code.sf.net/p/doombuilder/code/branches/GZDoomBuilder
- If you don't want to use a SVN client, head to https://sourceforge.net/p/doombuilder/code/HEAD/tree/branches/GZDoomBuilder/ and press "Download Snapshot" button.
+ The GZDoom Builder source code is hosted at GitHub (https://github.com/m-x-d/GZDoom-Builder).
Quick start guide:
- This guide assumes you are using Visual Studio 2008 / Visual C# 2008 Express Edition and Tortiose SVN.
+ This guide assumes you are using Visual Studio 2008 / Visual C# 2008 Express Edition and TortioseGit.
- - Create an empty folder, right click on it and choose "SVN Checkout..." from the context menu.
- - Enter "https://svn.code.sf.net/p/doombuilder/code/branches/GZDoomBuilder" in the "URL of repository" field and click OK.
+ - Create an empty folder, right click on it and choose "GIT Clone..." from the context menu.
+ - Enter "https://github.com/m-x-d/GZDoom-Builder.git" in the "URL" field, click OK and wait for the source to download.
- Open "Builder.sln" in the Visual Studio and make sure it compiles and runs (click the green "Play" button, or press F5).
- If the Visual Studio complains about missing SlimDX reference in the Builder project, you'll need to re-add it manually. To do so, delete SlimDX from the References in the Solution Explorer, right click on the Builder project and choose "Add reference". On the .NET tab, choose SlimDX (.net 2.0, x86 version).
- You can ignore the warning about missing JetBrains.Profiler.Core.Api reference. Everything should build fine, unless you choose a profiler-enabled build target (or you can use dotTrace Performance, if you have access to it).
- - If you've made some code changes and want to submit them to the main GZDB repository, you can make a diff patch (right-click on the GZDB source folder and choose "TortioseSVN -> Create patch...") and post it at the official GZDB thread at ZDoom.org (http://forum.zdoom.org/viewtopic.php?f=3&t=32392&start=999999).
+ - If you are planning to submit your changes to the main GZDoom Builder repository, it's recomeded to fork GZDoom Builder at GitHub, make the changes, then submit a Pull Request.
Batch files:
GZDB source comes with several batch files, which can be used to automatically compile and package the editor. Before launching a batch file for the first time, make sure to open it and check that variables holding software paths point to the right directories. These variables are always located near the top of the file, after the info block.
- Clean Rebuild.bat - removes project cache files, then compiles it in Release mode.
Requires Visual C# Express Edition / Visual Studio.
- CompileHelp.bat - compiles "Build\Refmanual.chm". Help source files are located in the "Help" directory.
Requires Microsoft HTML Help compiler.
- - MakeRelease.bat - removes project cache files, sets project version number to match the latest SVN revision, compiles the project in Release mode, generates "Build\Changelog.txt", compiles "Build\Refmanual.chm", creates an installer and places it in the "Release" folder.
Requires Subversion command-line client, Visual C# Express Edition / Visual Studio, Microsoft HTML Help compiler and Inno Setup 5.
- - MakeSVNRelease.bat - removes project cache files, sets project version number to match the latest SVN revision, compiles the project in Release mode, generates "Build\Changelog.txt", compiles "Build\Refmanual.chm", packs the build into 7-zip archive and places it in the "SVN_Build" folder.
Requires Subversion command-line client, Visual C# Express Edition / Visual Studio, Microsoft HTML Help compiler and 7-zip archiver.
+ - MakeRelease.bat - removes project cache files, sets project version number to match the latest SVN revision, compiles the project in Release mode, generates "Build\Changelog.txt", compiles "Build\Refmanual.chm", creates an installer and places it in the "Release" folder.
+ Requires Git command-line client, Visual C# Express Edition / Visual Studio, Microsoft HTML Help compiler and Inno Setup 5.
+ - MakeGITRelease.bat - removes project cache files, sets project version number to match the number of commits in the master branch, compiles the project in Release mode, generates "Build\Changelog.txt", compiles "Build\Refmanual.chm", packs the build into 7-zip archive and places it in the "GIT_Build" folder.
+ Requires Git command-line client, Visual C# Express Edition / Visual Studio, Microsoft HTML Help compiler and 7-zip archiver.