Use version-specific docs URL for release builds

This commit is contained in:
RichardG867
2021-11-13 01:06:53 -03:00
parent 5021457017
commit 54e9f3dd98
2 changed files with 10 additions and 2 deletions

View File

@@ -37,4 +37,8 @@
/* Web URL info. */
#define EMU_SITE L"86box.net"
#define EMU_ROMS_URL L"https://github.com/86Box/roms/releases/latest"
#define EMU_DOCS_URL L"https://86box.readthedocs.io"
#ifdef RELEASE_BUILD
# define EMU_DOCS_URL L"https://86box.readthedocs.io/en/v3.0/"
#else
# define EMU_DOCS_URL L"https://86box.readthedocs.io"
#endif