Update TASVideos links for new site, set next release to 2.8

This commit is contained in:
YoshiRulz 2022-01-10 15:07:06 +10:00
parent 0b9b18bf9b
commit 725f6e7194
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
10 changed files with 12 additions and 12 deletions

View File

@ -5,8 +5,8 @@ using BizHawk.Emulation.Cores.Nintendo.NES;
namespace BizHawk.Client.Common.movie.import
{
// FMV file format: http://tasvideos.org/FMV.html
// ReSharper disable once UnusedMember.Global
/// <summary>For Famtasia's <see href="https://tasvideos.org/EmulatorResources/Famtasia/FMV"><c>.fmv</c> format</see></summary>
[ImporterFor("Famtasia", ".fmv")]
internal class FmvImport : MovieImporter
{

View File

@ -11,7 +11,7 @@ using BizHawk.Emulation.Cores.Nintendo.SNES;
namespace BizHawk.Client.Common.movie.import
{
// ReSharper disable once UnusedMember.Global
// LSMV file format: http://tasvideos.org/Lsnes/Movieformat.html
/// <summary>For lsnes' <see href="https://tasvideos.org/Lsnes/Movieformat"><c>.lsmv</c> format</see></summary>
[ImporterFor("LSNES", ".lsmv")]
internal class LsmvImport : MovieImporter
{

View File

@ -6,7 +6,7 @@ using BizHawk.Emulation.Cores.Sega.MasterSystem;
namespace BizHawk.Client.Common.movie.import
{
// ReSharper disable once UnusedMember.Global
// MMV file format: http://tasvideos.org/MMV.html
/// <summary>For Dega's <see href="https://tasvideos.org/EmulatorResources/MMV"><c>.mmv</c> format</see></summary>
[ImporterFor("Dega", ".mmv")]
internal class MmvImport : MovieImporter
{

View File

@ -9,7 +9,7 @@ using BizHawk.Emulation.Cores.Nintendo.SNES;
namespace BizHawk.Client.Common.movie.import
{
// ReSharper disable once UnusedMember.Global
// http://tasvideos.org/EmulatorResources/Snes9x/SMV.html
/// <summary>For Snes9x's <see href="https://tasvideos.org/EmulatorResources/Snes9x/SMV"><c>.smv</c> format</see></summary>
[ImporterFor("Snes9x", ".smv")]
internal class SmvImport : MovieImporter
{

View File

@ -2122,12 +2122,12 @@ namespace BizHawk.Client.EmuHawk
private void OnlineHelpMenuItem_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("http://tasvideos.org/BizHawk.html");
System.Diagnostics.Process.Start("https://tasvideos.org/BizHawk");
}
private void ForumsMenuItem_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("http://tasvideos.org/forum/viewforum.php?f=64");
System.Diagnostics.Process.Start("https://tasvideos.org/Forum/Subforum/64");
}
private void FeaturesMenuItem_Click(object sender, EventArgs e)

View File

@ -345,7 +345,7 @@ namespace BizHawk.Client.EmuHawk
private void LinkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://tasvideos.org/Bizhawk/DisplayConfig.html");
System.Diagnostics.Process.Start("https://tasvideos.org/Bizhawk/DisplayConfig");
}
private void Label13_Click(object sender, EventArgs e)

View File

@ -1300,7 +1300,7 @@ namespace BizHawk.Client.EmuHawk
private void HelpToolStripMenuItem_Click(object sender, EventArgs e)
{
Process.Start("http://tasvideos.org/Bizhawk/BasicBot.html");
Process.Start("https://tasvideos.org/Bizhawk/BasicBot");
}
private void InvisibleEmulationCheckBox_CheckedChanged(object sender, EventArgs e)

View File

@ -1222,7 +1222,7 @@ namespace BizHawk.Client.EmuHawk
private void OnlineDocsMenuItem_Click(object sender, EventArgs e)
{
Process.Start("http://tasvideos.org/BizHawk/LuaFunctions.html");
Process.Start("https://tasvideos.org/BizHawk/LuaFunctions");
}
private void ScriptListContextMenu_Opening(object sender, CancelEventArgs e)

View File

@ -1444,7 +1444,7 @@ namespace BizHawk.Client.EmuHawk
private void ForumThreadMenuItem_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("http://tasvideos.org/forum/viewtopic.php?t=13505");
System.Diagnostics.Process.Start("https://tasvideos.org/Forum/Topics/13505");
}
}
}

View File

@ -11,11 +11,11 @@ namespace BizHawk.Common
/// Bump this immediately after release.
/// Only use '0'..'9' and '.' or it will fail to parse and the new version notification won't work.
/// </remarks>
public static readonly string MainVersion = "2.7.1";
public static readonly string MainVersion = "2.8";
public static readonly string ReleaseDate = "November 12, 2021";
public static readonly string HomePage = "http://tasvideos.org/BizHawk.html";
public static readonly string HomePage = "https://tasvideos.org/BizHawk";
public static readonly bool DeveloperBuild = true;