Skip to content

Commit

Permalink
finalize 1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tantric committed Apr 15, 2011
1 parent 71a60df commit 4e29a1e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
11 changes: 11 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@

�,���`���,��,���`���,�,���`���,��,���`���,�,���`���,��,���`���,�,���`���,��,��

[1.1.6 - April 14, 2011]

* Synced to MPlayer r33122
* Fixed an issue with music playlist queuing
* Fixed an issue playing a music playlist with a picture slideshow
* Fixed a bug that caused some MMS streams not to work
* Fixed a bug that caused WiiMC to crash with a malformed restore_points file
* Added a setting to write a debug log to SD - set "debug" to "1"
* Video rendering corrections and optimizations
* Translation updates

[1.1.5 - March 25, 2011]

* Synced to MPlayer r33036
Expand Down
5 changes: 2 additions & 3 deletions source/mplayer/osdep/gx_supp.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
* softdev 2007
* dhewg 2008
* sepp256 2008-2010 - Coded YUV->RGB conversion in TEV
* Contains some improvements by Extrems
* Tantric / rodries 2009-2010 - rewritten using threads, with GUI overlaid
* Extrems 2009-2011
* Extrems 2009-2011
* Tantric / rodries 2009-2011
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
6 changes: 3 additions & 3 deletions source/wiimc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -505,8 +505,8 @@ bool InitMPlayer()
setenv("DVDREAD_VERBOSE", "0", 1);
setenv("DVDCSS_RAW_DEVICE", "/dev/di", 1);

char agent[15];
sprintf(agent, "%s/%s", APPNAME, APPVERSION);
char agent[30];
sprintf(agent, "%s/%s (IOS%d)", APPNAME, APPVERSION, IOS_GetVersion());
network_useragent = mem2_strdup(agent, MEM2_OTHER);

// create mplayer thread
Expand Down Expand Up @@ -704,7 +704,7 @@ int main(int argc, char *argv[])

MPlayerMenu();
}

// application exiting
StopGX();
UnmountAllDevices();
Expand Down
2 changes: 1 addition & 1 deletion source/wiimc.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "network.h"

#define APPNAME "WiiMC"
#define APPVERSION "1.1.5"
#define APPVERSION "1.1.6"
#define APPFOLDER "wiimc"

enum {
Expand Down
4 changes: 2 additions & 2 deletions update.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="1.1.5">
<file url="http://wiimc.googlecode.com/files/WiiMC%201.1.5%20(Update).zip"></file>
<app version="1.1.6">
<file url="http://wiimc.googlecode.com/files/WiiMC%201.1.6%20(Update).zip"></file>
</app>

0 comments on commit 4e29a1e

Please sign in to comment.