From d0c7ea56a7d2a51717060f935db2de615ec88c65 Mon Sep 17 00:00:00 2001 From: SarahW Date: Sun, 19 Apr 2020 15:50:51 +0100 Subject: [PATCH] Update version number to v16. --- Readme-BSD.txt | 2 +- Readme-LINUX.txt | 2 +- readme.txt | 25 +++++++++++-------------- src/pc.c | 2 +- src/wx-sdl2-display-win.c | 2 +- 5 files changed, 15 insertions(+), 18 deletions(-) diff --git a/Readme-BSD.txt b/Readme-BSD.txt index f129d58..e100c85 100644 --- a/Readme-BSD.txt +++ b/Readme-BSD.txt @@ -1,4 +1,4 @@ -PCem v15 BSD supplement +PCem v16 BSD supplement You will need the following libraries : diff --git a/Readme-LINUX.txt b/Readme-LINUX.txt index a6d36da..766db70 100644 --- a/Readme-LINUX.txt +++ b/Readme-LINUX.txt @@ -1,4 +1,4 @@ -PCem v15 Linux supplement +PCem v16 Linux supplement You will need the following libraries : diff --git a/readme.txt b/readme.txt index ff45709..3a4b244 100644 --- a/readme.txt +++ b/readme.txt @@ -1,22 +1,19 @@ -PCem v15 +PCem v16 PCem is licensed under the GPL, see COPYING for more details. -Changes since v14: -- New machines added - Zenith Data SupersPort, Bull Micral 45, Tulip AT Compact, - Amstrad PPC512/640, Packard Bell PB410A, ASUS P/I-P55TVP4, ASUS P/I-P55T2P4, - Epox P55-VA, FIC VA-503+ -- New graphics cards added - Image Manager 1024, Sigma Designs Color 400, - Trigem Korean VGA -- Added emulation of AMD K6 family and IDT Winchip 2 -- New CPU recompiler. This provides several optimisations, and the new design allows - for greater portability and more scope for optimisation in the future -- Experimental ARM and ARM64 host support -- Read-only cassette emulation for IBM PC and PCjr +Changes since v15 +- New machines added - Commodore SL386SX-25, ECS 386/32, Goldstar GDC-212M, + Hyundai Super-286TR, IBM PS/1 Model 2133 (EMEA 451), Itautec Infoway Multimidia, + Samsung SPC-4620P, Leading Edge Model M +- New graphics cards added - ATI EGA Wonder 800+, AVGA2, Cirrus Logic GD5428, + IBM 1MB SVGA Adapter/A +- New sound card added - Aztech Sound Galaxy Pro 16 AB (Washington) +- New SCSI card added - IBM SCSI Adapter with Cache +- Support FPU emulation on pre-486 machines - Numerous bug fixes -Thanks to dns2kv2, Greatpsycho, Greg V, John Elliott, Koutakun, leilei, Martin_Riarte, -rene, Tale and Tux for contributions towards this release. +Thanks to EluanCM, Greatpsycho, John Elliott, and leilei for contributions towards this release. PCem emulates the following machines: diff --git a/src/pc.c b/src/pc.c index 93f9f2b..4779266 100644 --- a/src/pc.c +++ b/src/pc.c @@ -582,7 +582,7 @@ void runpc() if (win_title_update) { win_title_update=0; - sprintf(s, "PCem v15 - %i%% - %s - %s - %s", fps, model_getname(), models[model].cpu[cpu_manufacturer].cpus[cpu].name, (!mousecapture) ? "Click to capture mouse" : ((mouse_get_type(mouse_type) & MOUSE_TYPE_3BUTTON) ? "Press CTRL-END to release mouse" : "Press CTRL-END or middle button to release mouse")); + sprintf(s, "PCem v16 - %i%% - %s - %s - %s", fps, model_getname(), models[model].cpu[cpu_manufacturer].cpus[cpu].name, (!mousecapture) ? "Click to capture mouse" : ((mouse_get_type(mouse_type) & MOUSE_TYPE_3BUTTON) ? "Press CTRL-END to release mouse" : "Press CTRL-END or middle button to release mouse")); set_window_title(s); } done++; diff --git a/src/wx-sdl2-display-win.c b/src/wx-sdl2-display-win.c index 974e958..57f92e6 100644 --- a/src/wx-sdl2-display-win.c +++ b/src/wx-sdl2-display-win.c @@ -595,7 +595,7 @@ int window_create() hwnd = CreateWindowEx ( 0, /* Extended possibilites for variation */ szClassName, /* Classname */ - "PCem v15", /* Title Text */ + "PCem v16", /* Title Text */ WS_OVERLAPPEDWINDOW&~WS_SIZEBOX, /* default window */ CW_USEDEFAULT, /* Windows decides the position */ CW_USEDEFAULT, /* where the window ends up on the screen */