diff --git a/Makefile b/Makefile
index b152663..a85ee25 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-# This Makefile was generated using MakeGen v1.3.8 made by Tim Håkansson
+# This Makefile was generated using MakeGen v1.3.9 made by Tim Håkansson
# and is licensed under MIT. Full source of the project can be found at
-# https://github.com/Thraix/MakeGen
+# https://gitea.timha.se/Thraix/MakeGen
CC=@g++
CO=@g++ -o
MKDIR_P=mkdir -p
diff --git a/README.md b/README.md
index 71cc947..dbe7380 100644
--- a/README.md
+++ b/README.md
@@ -16,10 +16,7 @@ After MakeGen is installed it will always be able to generate a Makefile (even w
However it will not compile your code if those programs don't exist.
## Installation
-To install MakeGen make sure you have the dependencies listed above.
-Then clone this repository:
-
- git clone git@github.com:Thraix/MakeGen.git
+To install MakeGen make sure you have the dependencies listed above and clone this repository.
Then navigate into the MakeGen folder (`cd MakeGen`) and run:
diff --git a/makegen.xml b/makegen.xml
index 9921a78..398e14f 100644
--- a/makegen.xml
+++ b/makegen.xml
@@ -19,5 +19,5 @@
src/
Release
- v1.3.8
+ v1.3.9
diff --git a/src/Common.h b/src/Common.h
index 838529f..3984a68 100644
--- a/src/Common.h
+++ b/src/Common.h
@@ -14,7 +14,7 @@
// Release, should be backwards compatible with any minor version
#define MAKEGEN_VERSION_RELEASE 3
// Minor changes, generally bug fixes
-#define MAKEGEN_VERSION_MINOR 8
+#define MAKEGEN_VERSION_MINOR 9
#define MAKEGEN_VERSION ("v" STR(MAKEGEN_VERSION_MAJOR) "." STR(MAKEGEN_VERSION_RELEASE) "." STR(MAKEGEN_VERSION_MINOR))
diff --git a/src/Makefile.cpp b/src/Makefile.cpp
index 03359c0..e8b42e6 100755
--- a/src/Makefile.cpp
+++ b/src/Makefile.cpp
@@ -20,7 +20,7 @@ void Makefile::Save(ConfigFile& conf, unsigned int flags)
outputFile << "# This Makefile was generated using MakeGen " << MAKEGEN_VERSION << " made by Tim Håkansson"
<< std::endl;
outputFile << "# and is licensed under MIT. Full source of the project can be found at" << std::endl;
- outputFile << "# https://github.com/Thraix/MakeGen" << std::endl;
+ outputFile << "# https://gitea.timha.se/Thraix/MakeGen" << std::endl;
outputFile << "CC=@g++" << std::endl;
std::string outputtype = conf.GetSettingString(ConfigSetting::OutputType);
if (outputtype != "executable")