2020-06-26 13:26:42 +02:00
|
|
|
/*
|
2022-11-13 16:37:58 -05:00
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
2020-06-26 13:26:42 +02:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* This file is part of the 86Box distribution.
|
2020-06-26 13:26:42 +02:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Definitions for project version, branding, and external links.
|
2020-06-26 13:26:42 +02:00
|
|
|
*
|
|
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
*
|
|
|
|
|
* Authors: Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2020 Miran Grca.
|
2020-06-26 13:26:42 +02:00
|
|
|
*/
|
|
|
|
|
|
2021-11-08 18:22:04 -03:00
|
|
|
#define _LSTR(s) L ## s
|
|
|
|
|
#define LSTR(s) _LSTR(s)
|
|
|
|
|
|
2020-06-26 13:26:42 +02:00
|
|
|
/* Version info. */
|
2022-11-13 16:38:48 -05:00
|
|
|
#define EMU_NAME "86Box"
|
|
|
|
|
#define EMU_NAME_W LSTR(EMU_NAME)
|
2020-06-26 13:26:42 +02:00
|
|
|
|
2022-11-13 16:38:48 -05:00
|
|
|
#define EMU_VERSION "3.8"
|
|
|
|
|
#define EMU_VERSION_W LSTR(EMU_VERSION)
|
|
|
|
|
#define EMU_VERSION_EX "3.50" /* frozen due to IDE re-detection behavior on Windows */
|
|
|
|
|
#define EMU_VERSION_MAJ 3
|
|
|
|
|
#define EMU_VERSION_MIN 8
|
2022-08-31 15:10:42 -03:00
|
|
|
#define EMU_VERSION_PATCH 0
|
2021-11-12 21:53:12 -03:00
|
|
|
|
2022-11-13 16:38:48 -05:00
|
|
|
#define EMU_BUILD_NUM 0
|
2020-06-26 13:26:42 +02:00
|
|
|
|
2022-11-13 16:38:48 -05:00
|
|
|
#define EMU_VERSION_FULL EMU_VERSION
|
|
|
|
|
#define EMU_VERSION_FULL_W EMU_VERSION_W
|
2021-11-08 18:22:04 -03:00
|
|
|
|
2022-11-13 16:38:48 -05:00
|
|
|
#define COPYRIGHT_YEAR "2022"
|
2020-06-26 13:26:42 +02:00
|
|
|
|
|
|
|
|
/* Web URL info. */
|
2022-11-13 16:38:48 -05:00
|
|
|
#define EMU_SITE "86box.net"
|
|
|
|
|
#define EMU_SITE_W LSTR(EMU_SITE)
|
|
|
|
|
#define EMU_ROMS_URL "https://github.com/86Box/roms/releases/latest"
|
|
|
|
|
#define EMU_ROMS_URL_W LSTR(EMU_ROMS_URL)
|
2021-11-13 01:06:53 -03:00
|
|
|
#ifdef RELEASE_BUILD
|
2022-11-13 16:38:48 -05:00
|
|
|
# define EMU_DOCS_URL "https://86box.readthedocs.io/en/v3.8/"
|
2021-11-13 01:06:53 -03:00
|
|
|
#else
|
2022-11-13 16:38:48 -05:00
|
|
|
# define EMU_DOCS_URL "https://86box.readthedocs.io"
|
2021-11-13 01:06:53 -03:00
|
|
|
#endif
|
2022-11-13 16:38:48 -05:00
|
|
|
#define EMU_DOCS_URL_W LSTR(EMU_DOCS_URL)
|