Version Update: 0.4.2

This commit is contained in:
Souryo 2016-08-27 16:34:53 -04:00
parent 5e77bc816c
commit b1ffc15fef
9 changed files with 11 additions and 11 deletions

View file

@ -2,10 +2,10 @@
#include "EmulationSettings.h"
#include "VsControlManager.h"
//Version 0.4.1
//Version 0.4.2
uint16_t EmulationSettings::_versionMajor = 0;
uint8_t EmulationSettings::_versionMinor = 4;
uint8_t EmulationSettings::_versionRevision = 1;
uint8_t EmulationSettings::_versionRevision = 2;
Language EmulationSettings::_displayLanguage = Language::English;

View file

@ -8,7 +8,7 @@ private:
static string GetStateFilepath(int stateIndex);
public:
static const uint32_t FileFormatVersion = 4;
static const uint32_t FileFormatVersion = 5;
static uint64_t GetStateInfo(int stateIndex);
static void SaveState(int stateIndex);

View file

@ -12,7 +12,7 @@ namespace Mesen.GUI.Config
{
private const int MaxRecentFiles = 10;
public string MesenVersion = "0.4.1";
public string MesenVersion = "0.4.2";
public PreferenceInfo PreferenceInfo;
public AudioInfo AudioInfo;
public VideoInfo VideoInfo;

View file

@ -373,7 +373,7 @@
<Control ID="labelCopyright">© 2016 M. Bibaud (aka Sour)</Control>
<Control ID="lblWebsite">Sitio web:</Control>
<Control ID="lblLink">www.mesen.ca</Control>
<Control ID="labelVersion">Version: 0.4.1 (Beta)</Control>
<Control ID="labelVersion">Version: 0.4.2 (Beta)</Control>
<Control ID="okButton">&amp;OK</Control>
</Form>
<Form ID="frmVsGameConfig" Title="Configuración de juego VS">

View file

@ -402,7 +402,7 @@
<Control ID="labelCopyright">© 2016 M. Bibaud (aka Sour)</Control>
<Control ID="lblWebsite">Site web:</Control>
<Control ID="lblLink">www.mesen.ca</Control>
<Control ID="labelVersion">Version: 0.4.1 (Beta)</Control>
<Control ID="labelVersion">Version: 0.4.2 (Beta)</Control>
<Control ID="okButton">&amp;OK</Control>
</Form>
<Form ID="frmVsGameConfig" Title="Configuration du jeu VS">

View file

@ -390,7 +390,7 @@
<Control ID="labelCopyright">© 2016 M. Bibaud (aka Sour)</Control>
<Control ID="lblWebsite">サイト:</Control>
<Control ID="lblLink">www.mesen.ca</Control>
<Control ID="labelVersion">バージョン: 0.4.1 (ベータ版)</Control>
<Control ID="labelVersion">バージョン: 0.4.2 (ベータ版)</Control>
<Control ID="okButton">&amp;OK</Control>
</Form>
<Form ID="frmUpdatePrompt" Title="Mesen ー アップデート可能">

View file

@ -393,7 +393,7 @@
<Control ID="labelCopyright">© 2016 M. Bibaud (aka Sour)</Control>
<Control ID="lblWebsite">Сайт:</Control>
<Control ID="lblLink">www.mesen.ca</Control>
<Control ID="labelVersion">Версия: 0.4.1 (Beta)</Control>
<Control ID="labelVersion">Версия: 0.4.2 (Beta)</Control>
<Control ID="okButton">&amp;OK</Control>
</Form>
<Form ID="frmVsGameConfig" Title="Конфигурация VS">

View file

@ -143,7 +143,7 @@
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(146, 17);
this.labelVersion.TabIndex = 0;
this.labelVersion.Text = "Version: 0.4.1 (Beta)";
this.labelVersion.Text = "Version: 0.4.2 (Beta)";
this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// okButton

View file

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.4.1.0")]
[assembly: AssemblyFileVersion("0.4.1.0")]
[assembly: AssemblyVersion("0.4.2.0")]
[assembly: AssemblyFileVersion("0.4.2.0")]