Mednafen Members Members   Search Search   Help Help   Register Register   Login Login   Home Home
Home » Site » News » Mednafen 0.9.36.3
Show: Today's Messages  :: Show Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
Mednafen 0.9.36.3 [message #3646] Sun, 03 August 2014 20:33 Go to next message
Administrator  [PM]
A newer version, 0.9.36.4, is available.



This minor release is primarily to fix a bug that can cause battery-backed save game memory file loss with PCE emulation if certain errors occur during startup(which are unlikely to occur during normal usage after setting everything up).

-- 0.9.36.3: --

August 3, 2014:
        NGP: Fixed a potentially-exploitable overflow bug in the flash dirty block list code.

        PCE, PCE_FAST: Fixed bug(from sloppy handling of errors) that caused battery-backed save game file destruction
        if an error(e.g. missing CD BIOS, memory allocation failure, etc.) occurred during game load and initialization.

        PSX: Fixed a bug that caused a crash when trying to use save states during PSF playback/PS-EXE execution.


mednafen-0.9.36.3.tar.bz2
SHA1: 32a9b1ac01ddc1b5d7c24fcd84d4f53ec1921f5e

mednafen-0.9.36.3-win32.zip
SHA1: 0af39afaaa2fc0faa0a99e31b4872f3d3550b6b3

mednafen-0.9.36.3-win64.zip
SHA1: ce6402508f396afe142b830a196ec7957965e661

[Updated on: Fri, 14 November 2014 20:17]

Re: Mednafen 0.9.36.3 [message #3665 is a reply to message #3646 ] Wed, 13 August 2014 15:32 Go to previous messageGo to next message
inukaze  [PM]
Hi there , i really wanna to make a Bash Script for make more ease installation for users.

you can add a mirror or symbolic link , if supported by the host , to have a file for example

some more direct in the address , well you know actually the lastest version the download link are :

POSIX System
http://forum.fobby.net/index.php?t=getfile&id=687&

Windows 32 Bits
http://forum.fobby.net/index.php?t=getfile&id=688&

Windows 64 Bits
http://forum.fobby.net/index.php?t=getfile&id=689&

I wanna know if you can make a permalink to the lastest version for Posix & Windows ???

and a file in the host to check the lastest version , like a text plain file called "Version" inside the lastest version number , actually "0.9.36.3"

For make the Script check the lastest version and download the current lastest version to try manual compilation Smile


Well the another thing i wanna suggest , if you dont have a plan to make a Mednafen + GUI version , like Snes9x-gtk , how make the google user "BearOSO" , its excelent GUI.

and the lastest thing , how i can use the NetPlay , i wanna try Pokemon Emerald + GBA Cable Link , for example , to change and battles.
Re: Mednafen 0.9.36.3 [message #3684 is a reply to message #3665 ] Fri, 29 August 2014 02:15 Go to previous messageGo to next message
quequotion  [PM]
inukaze wrote on Thu, 14 August 2014 05:32

Hi there , i really wanna to make a Bash Script for make more ease installation for users.

you can add a mirror or symbolic link , if supported by the host , to have a file for example

some more direct in the address , well you know actually the lastest version the download link are :

POSIX System
http://forum.fobby.net/index.php?t=getfile&id=687&

Windows 32 Bits
http://forum.fobby.net/index.php?t=getfile&id=688&

Windows 64 Bits
http://forum.fobby.net/index.php?t=getfile&id=689&

I wanna know if you can make a permalink to the lastest version for Posix & Windows ???
I've run into the same trouble while making a PKGBUILD for archlinux (a somewhat glorified bash script really).

You can get direct download links from sourceforge:

Source (for POSIX, OSX? etc)
http://downloads.sourceforge.net/project/mednafen/Mednafen/0.9.36.3/mednafen-0.9.36.3.tar.bz2

Win32
http://downloads.sourceforge.net/project/mednafen/Mednafen/0.9.36.3/mednafen-0.9.36.3-win32.zip

Win64
http://downloads.sourceforge.net/project/mednafen/Mednafen/0.9.36.3/mednafen-0.9.36.3-win64.zip
Re: Mednafen 0.9.36.3 [message #3693 is a reply to message #3646 ] Sun, 31 August 2014 03:21 Go to previous messageGo to next message
inukaze  [PM]
Ahmm , you i guess you dont understand me
i wanna make a script for download , compile and install from source under POSIX Systems .

just a simple example :

#!/bin/bash

DIR=(pwd)
cd $DIR
Kernel=$(uname -s)

if		[ $Kernel = "Darwin" ]; then
		Kernel=mac
elif		[ $Kernel = "Linux" ]; then
		Kernel=linux
else
		echo "Unsoported S.O"
		exit 1
fi

Arch=$(uname -m)

if	 [ "$Arch" = "i[3456]86" ]; then

wget http://downloads.sourceforge.net/project/mednafen/Mednafen/current/mednafen-lastest.tar.bz2

cd "$DIR"/mednafen-lastest
./autogen.sh
./configure
make
sudo make install
MednafenVersion=$(mednafen | grep Mednafen | cut -d " " -f02)
echo ; echo "Installed Mednafen : $MednafenVersion" ; echo

elif     [ "$Arch" = "x86_64 ]; then

wget http://downloads.sourceforge.net/project/mednafen/Mednafen/current/mednafen-lastest.tar.bz2

cd "$DIR"/mednafen-lastest
./autogen.sh
./configure
make
sudo make install
MednafenVersion=$(mednafen | grep Mednafen | cut -d " " -f02)
echo ; echo "Installed Mednafen : $MednafenVersion" ; echo

else
     echo "Unsoported S.O"
     exit 1
fi


Well its for no rewrite ever the line to download the lastest version . like

http://downloads.sourceforge.net/project/mednafen/Mednafen/0.9.36.3/mednafen-0.9.36.3.tar.bz2

when you publish a new version , the script must be modify in that lines

http://downloads.sourceforge.net/project/mednafen/Mednafen/0.9.36.3/mednafen-0.9.36.3.tar.bz2

by for example

http://downloads.sourceforge.net/project/mednafen/Mednafen/0.9.37.1/mednafen-0.9.37.1.tar.bz2


You can add a something like a symbolic link to the lastest version , That's its possible ??? Thank you for any answer you can give me Smile
Re: Mednafen 0.9.36.3 [message #3699 is a reply to message #3693 ] Thu, 11 September 2014 13:56 Go to previous messageGo to next message
Administrator  [PM]
wget -O mednafen-latest.tar.bz2 http://sourceforge.net/projects/mednafen/files/latest/download
Re: Mednafen 0.9.36.3 [message #3708 is a reply to message #3699 ] Sat, 13 September 2014 17:59 Go to previous message
inukaze  [PM]
i ever use the lastest version , and still and

Pokemon Crystal , when i save the game progress , and close the mednafen , if i start again the game , the game make me set the Real Time Clock

And in Pokemon Emerald , i dont know how to see the Game Hour , and well i dont have a method to get the all pokemons in Hoenn Region , beucase appear diferents depends of "Time" in game

in game ever its 12 PM

like in this Video , posible its a "VisualBoyAdvance" im testing with gvbam (vbam-gtk / vbam-sdl)

In this emulators i named , the crystal version dont make me set the real time clock when i save , and after begun the emulation again.

im testing the pokemon emerald
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic:Mednafen 0.9.36.4
Next Topic:Mednafen 0.9.36.5
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ ]

Current Time: Fri Apr 19 16:35:14 CDT 2024
.:: Contact :: Home ::.

Powered by FUDforum.
Copyright © FUDforum Bulletin Board Software