diff --git a/aegisub/build/git_version.h b/aegisub/build/git_version.h
new file mode 100644
index 0000000000000000000000000000000000000000..a601b7ba019fdf22851cd96b6b67f6cd9d05699f
--- /dev/null
+++ b/aegisub/build/git_version.h
@@ -0,0 +1,3 @@
+#define BUILD_GIT_VERSION_NUMBER 7013
+#define BUILD_GIT_VERSION_STRING "3.0.0"
+#define TAGGED_RELEASE 1
diff --git a/aegisub/src/config/config_windows0.h b/aegisub/src/config/config_windows0.h
index 0237aadab5ae4af2f2afb2756dd507aac7d019b1..f3ba8eb6e14f2753b18a4cb1e73fb152f3cfe27a 100644
--- a/aegisub/src/config/config_windows0.h
+++ b/aegisub/src/config/config_windows0.h
@@ -66,7 +66,7 @@
 
 // Enable FFMS2 video and audio providers
 // Requires: FFMS2 SDK
-//#define WITH_FFMS2
+#define WITH_FFMS2
 #ifdef WITH_FFMS2
 #pragma comment(lib, "ffms2.lib")
 #endif
@@ -107,7 +107,7 @@
 // FFTW <http://fftw.org/> is a very fast library for computing the discrete fourier transform, but is a bit
 // tricky to get working on Windows, and has the additional problem of being GPL licensed.
 // Enable this option to use FFTW to get faster rendering of the audio spectrogram
-//#define WITH_FFTW3
+#define WITH_FFTW3
 #ifdef WITH_FFTW3
 #pragma comment(lib,libfftw.lib)
 #endif
@@ -124,20 +124,20 @@
 
 // Where the update checker should look for updates
 #define UPDATE_CHECKER_SERVER "updates.aegisub.org"
-#define UPDATE_CHECKER_BASE_URL "/trunk"
+#define UPDATE_CHECKER_BASE_URL "/3.0.0"
 
 ///////////// NOT RECOMMENDED /////////////
 
 // Enable FontConfig
 // Requires: fontconfig
-//#define WITH_FONTCONFIG
+#define WITH_FONTCONFIG
 #ifdef WITH_FONTCONFIG
 #pragma comment(lib,"libfontconfig.lib")
 #endif
 
 // Enable libass
 // Requires: libass
-//#define WITH_LIBASS
+#define WITH_LIBASS
 #ifdef WITH_LIBASS
 #pragma comment(lib, "libass.lib")
 #endif