Skip to content

Commit 580cdd7

Browse files
committed
updating version and release info for v1.99.5 tag
1 parent e429ff4 commit 580cdd7

File tree

4 files changed

+36
-4
lines changed

4 files changed

+36
-4
lines changed

README

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ Type 'make' by itself to view all available build options:
6161
LIRC=1 == enable LIRC support
6262
NO_ASM=1 == build without assembly (no dynamic recompiler or MMX/SSE code)
6363
SHAREDIR=path == extra path to search for shared data files
64+
OPTFLAGS=flag == compiler optimization (default: -O3)
65+
PIC=(1|0) == Force enable/disable of position independent code
6466
Install Options:
6567
PREFIX=path == install/uninstall prefix (default: /usr/local/)
6668
SHAREDIR=path == path to install shared data (default: PREFIX/share/mupen64plus/)
@@ -75,6 +77,7 @@ Type 'make' by itself to view all available build options:
7577
DBG_COUNT=1 == print R4300 instruction count totals (64-bit dynarec only)
7678
DBG_COMPARE=1 == enable core-synchronized r4300 debugging
7779
DBG_PROFILE=1 == dump profiling data for r4300 dynarec to data file
80+
V=1 == show verbose compiler output
7881

7982
3. Installation
8083
---------------

RELEASE

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
Mupen64Plus-Core Emulator Library RELEASE
22
-----------------------------------------
33

4+
Mupen64Plus v1.99.5 - March 10, 2012
5+
------------------------------------
6+
- New feature: support for N64 internal real-time clock
7+
- use X-Scale's PIF-CIC algorithm instead of the hard-coded challenge-response pairs
8+
- New config parameter for path to save SRAM/EEPROM/MPK files, so they can be separated from emulator snapshots
9+
- updated core for new Mupen64plus 2.0 API versioning scheme
10+
- split core configuration data into 2 sections: Core and CoreEvents. Added version numbers and upgrade handling to both
11+
- Accurately emulate the RSP DMA operation (from Bobby Smiles)
12+
- bugfix: #290 - OnScreenDisplay text is sometimes captured in screenshots
13+
- bugfix: when the front-end specifies an override for the configuration directory, always use this path, so that we don't load the config from there and then save it back to the default user path
14+
- bugfix: #468 - On-screen-display problem under OSX
15+
- bugfix: Use option SaveStatePath from config file
16+
- bugfix: don't call SDL_Quit() until the core library is being unloaded. fixes some front-end use cases
17+
- bugfix: #410 - segfault in dma_pi_write()-->strlen() if /home/username/.local/share/mupen64plus/ owned by root
18+
- bugfix: for Interpreter cores, use proper math functions for ceil/floor/round/trunc instead of x87 rounding modes
19+
- many makefile fixes and improvements
20+
421
Mupen64Plus v1.99.4 - February 22, 2010
522
---------------------------------------
623
- Added some type checking to ConfigGetParameter() function, and a new error type

doc/module-api-versions.txt

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,18 @@ Changelog:
126126
- added "m64p_command" type "M64CMD_CORE_STATE_SET", handled by CoreDoCommand()
127127
- added "m64p_core_param" type "M64CORE_SPEED_LIMITER", handled by "M64CMD_CORE_STATE_QUERY" and "M64CMD_CORE_STATE_SET" commands
128128

129-
130-
129+
- CONFIG_API_VERSION version 2.1.0:
130+
- add new function "ConfigSaveSection()" to save only a single config section to disk
131+
132+
- CONFIG_API_VERSION version 2.2.0:
133+
- add new function "ConfigHasUnsavedChanges()" to determine if a given Section (or all sections)
134+
of the Mupen64Plus Core configuration file has been modified since it was last saved or loaded.
135+
- add new function "ConfigRevertChanges()" to revert changes previously made to one section of
136+
the configuration file, so that it will match with the configuration at the last time that it
137+
was loaded from or saved to disk.
138+
139+
- VIDEO_API_VERSION version 2.1.0:
140+
- video render callback function now takes a boolean (int) parameter, which specifies whether the
141+
video frame has been re-drawn since the last time the render callback was called. This allows
142+
us to take screenshots without the On-Screen-Display text
131143

src/main/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
22
* Mupen64plus - version.h *
33
* Mupen64Plus homepage: http://code.google.com/p/mupen64plus/ *
4-
* Copyright (C) 2008 Richard42 DarkJeztr Tillin9 *
4+
* Copyright (C) 2008-2012 Richard42 DarkJeztr Tillin9 *
55
* *
66
* This program is free software; you can redistribute it and/or modify *
77
* it under the terms of the GNU General Public License as published by *
@@ -25,7 +25,7 @@
2525
#define __VERSION_H__
2626

2727
#define MUPEN_CORE_NAME "Mupen64Plus Core"
28-
#define MUPEN_CORE_VERSION 0x016304
28+
#define MUPEN_CORE_VERSION 0x016305
2929

3030
#define FRONTEND_API_VERSION 0x020001
3131
#define CONFIG_API_VERSION 0x020200

0 commit comments

Comments
 (0)