Update version to 4.1.

This commit is contained in:
OBattler
2023-07-29 17:32:57 +02:00
parent 1f963f79bc
commit 96d2de125f
6 changed files with 10 additions and 10 deletions

View File

@@ -35,7 +35,7 @@ if(MUNT_EXTERNAL)
endif() endif()
project(86Box project(86Box
VERSION 4.0 VERSION 4.1
DESCRIPTION "Emulator of x86-based systems" DESCRIPTION "Emulator of x86-based systems"
HOMEPAGE_URL "https://86box.net" HOMEPAGE_URL "https://86box.net"
LANGUAGES C CXX) LANGUAGES C CXX)

4
debian/changelog vendored
View File

@@ -1,5 +1,5 @@
86box (4.0) UNRELEASED; urgency=medium 86box (4.1) UNRELEASED; urgency=medium
* Bump release. * Bump release.
-- Jasmine Iwanek <jriwanek@gmail.com> Tue, 28 Feb 2023 00:02:16 -0500 -- Jasmine Iwanek <jriwanek@gmail.com> Sat, 29 Jul 2023 17:32:30 +0200

View File

@@ -22,11 +22,11 @@
#define EMU_NAME "86Box" #define EMU_NAME "86Box"
#define EMU_NAME_W LSTR(EMU_NAME) #define EMU_NAME_W LSTR(EMU_NAME)
#define EMU_VERSION "4.0" #define EMU_VERSION "4.1"
#define EMU_VERSION_W LSTR(EMU_VERSION) #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_EX "3.50" /* frozen due to IDE re-detection behavior on Windows */
#define EMU_VERSION_MAJ 4 #define EMU_VERSION_MAJ 4
#define EMU_VERSION_MIN 0 #define EMU_VERSION_MIN 1
#define EMU_VERSION_PATCH 0 #define EMU_VERSION_PATCH 0
#define EMU_BUILD_NUM 0 #define EMU_BUILD_NUM 0
@@ -42,7 +42,7 @@
#define EMU_ROMS_URL "https://github.com/86Box/roms/releases/latest" #define EMU_ROMS_URL "https://github.com/86Box/roms/releases/latest"
#define EMU_ROMS_URL_W LSTR(EMU_ROMS_URL) #define EMU_ROMS_URL_W LSTR(EMU_ROMS_URL)
#ifdef RELEASE_BUILD #ifdef RELEASE_BUILD
# define EMU_DOCS_URL "https://86box.readthedocs.io/en/v4.0/" # define EMU_DOCS_URL "https://86box.readthedocs.io/en/v4.1/"
#else #else
# define EMU_DOCS_URL "https://86box.readthedocs.io" # define EMU_DOCS_URL "https://86box.readthedocs.io"
#endif #endif

View File

@@ -15,7 +15,7 @@
%global romver 3.11 %global romver 3.11
Name: 86Box Name: 86Box
Version: 4.0 Version: 4.1
Release: 1%{?dist} Release: 1%{?dist}
Summary: Classic PC emulator Summary: Classic PC emulator
License: GPLv2+ License: GPLv2+
@@ -118,5 +118,5 @@ popd
%{_datadir}/%{name}/roms %{_datadir}/%{name}/roms
%changelog %changelog
* Tue Feb 28 2023 Robert de Rooy <robert.de.rooy[AT]gmail.com> 4.0-1 * Sat Jul 29 2023 Robert de Rooy <robert.de.rooy[AT]gmail.com> 4.1-1
- Bump release - Bump release

View File

@@ -10,7 +10,7 @@
</categories> </categories>
<launchable type="desktop-id">net.86box.86Box.desktop</launchable> <launchable type="desktop-id">net.86box.86Box.desktop</launchable>
<releases> <releases>
<release version="4.0" date="2023-02-28"/> <release version="4.1" date="2023-07-29"/>
</releases> </releases>
<content_rating type="oars-1.1" /> <content_rating type="oars-1.1" />
<description> <description>

View File

@@ -1,6 +1,6 @@
{ {
"name": "86box", "name": "86box",
"version-string": "4.0", "version-string": "4.1",
"homepage": "https://86box.net/", "homepage": "https://86box.net/",
"documentation": "https://86box.readthedocs.io/", "documentation": "https://86box.readthedocs.io/",
"license": "GPL-2.0-or-later", "license": "GPL-2.0-or-later",