Skip to content

Commit

Permalink
pre-Alpha Preview 26
Browse files Browse the repository at this point in the history
  • Loading branch information
freem committed Sep 24, 2022
1 parent 2042214 commit 3816457
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VPWStudio/VPWStudio/Dialogs/Program/AboutBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public partial class AboutBox : Form
/// <summary>
/// Last updated month and year for program testing group information.
/// </summary>
private readonly string DateString = "August 2022";
private readonly string DateString = "September 2022";

public AboutBox()
{
Expand Down
13 changes: 12 additions & 1 deletion VPWStudio/VPWStudio/Manual/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<body>
<div id="header">
<h1>VPW Studio <small>(incomplete)</small> Manual</h1>
<p>Version 0.0.0.25 (September 11th, 2022)<br />Program and Manual by freem<br /><br />
<p>Version 0.0.0.26 (September 24th, 2022)<br />Program and Manual by freem<br /><br />
<a href="https://vpw.ajworld.net/">https://vpw.ajworld.net/</a><br /><a href="https://github.com/AKI-Club/VPWStudio">https://github.com/AKI-Club/VPWStudio</a></p>
</div>

Expand Down Expand Up @@ -45,6 +45,7 @@ <h3>Chapter 2: Program Functionality</h3>
<li><a href="#Arenas">Arenas</a></li>
<li><a href="#Championships">Championships</a></li>
<li><a href="#CostumeItems">Costume Items</a></li>
<li><a href="#DemoMatches">Demo Matches</a></li>
<li><a href="#Entrances">Entrances</a></li>
<li><a href="#FileTable">File Table</a><ol>
<li><a href="#FileTableEntryInfo">File Table Entry Information</a></li>
Expand All @@ -65,6 +66,7 @@ <h3>Chapter 2: Program Functionality</h3>
</li></ol>
</li>
<li><a href="#GameIntro">Game Introduction</a></li>
<li><a href="#MatchRulesets">Match Rulesets</a></li>
<li><a href="#Menus">Menus</a></li>
<li><a href="#Moves">Moves</a></li>
<li><a href="#SoundMusic">Sound/Music</a></li>
Expand Down Expand Up @@ -1275,6 +1277,10 @@ <h2><a name="CostumeItems">Costume Items</a></h2>

<p>(todo: this is different per game and isn't fully designed)</p>

<hr />
<h2><a name="DemoMatches">Demo Matches</a></h2>
<p>(todo: only seems to exist in VPW2 and No Mercy? doesn't actually edit values yet)</p>

<hr />
<h2><a name="Entrances">Entrances</a></h2>
<p>(todo: primarily Titantron-related; not yet designed)</p>
Expand Down Expand Up @@ -1684,6 +1690,11 @@ <h3>Game Support</h3>
</tbody>
</table>

<hr />
<h2><a name="MatchRulesets">Match Rulesets</a></h2>
<p>todo: only works with VPW2, data needs to be found/re-found for other games;
doesn't actually edit values</p>

<hr />
<h2><a name="Menus">Menus</a></h2>
<p>The Menus option (Project &rarr; Menus) allows you to change how the items
Expand Down
4 changes: 2 additions & 2 deletions VPWStudio/VPWStudio/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 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.0.0.25")]
[assembly: AssemblyFileVersion("0.0.0.25")]
[assembly: AssemblyVersion("0.0.0.26")]
[assembly: AssemblyFileVersion("0.0.0.26")]
40 changes: 39 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,48 @@ VPW Studio Changelog
====================
All dates are year/month/day format.

Pre-Alpha Preview 26 (202x/yy/zz)
Pre-Alpha Preview 27 (202x/yy/zz)
---------------------------------
Currently being worked on...

Pre-Alpha Preview 26 (2022/09/24)
---------------------------------
- [GameDefinition] Store the revision as a byte instead of a float.
This fixes an issue with trying to create projects for WCW vs. nWo World Tour
NTSC-U v1.1/Revision A (and possibly any No Mercy project on v1.1/Rev A).

- [Default Costume Editors] Hovering over the color swatch for a few seconds will
show a tooltip with the color name.

- [CostumeColorControl] Now supports hair colors (WM2K and later).

- [Default Costume Editors] Use CostumeColorControl for hair color.

- [LocationFile, DefaultGameData] Added entry for Attract Mode Demo Matches.
Currently VPW2 only; still looking for No Mercy, as well as confirming
if WM2K and earlier have them or not.

- Added very early Demo Match "Editor" for VPW2.
Data is not editable. Values do not get written back yet.

WWF No Mercy's demo match data needs re-confirmation; thanks to WldFb for
finding it many years ago.

Demo matches in general need to be confirmed for WM2K and earlier.

- [LocationFile, DefaultGameData] Added entry for Default Rulesets.
Currently VPW2 only; data should be in all games, but formats will be different
due to the presence/absence/changing of various rules.

- Added very early Match Ruleset "Editor" for VPW2.
Data is not editable. Values do not get written back yet.
For other games, data needs to be found (or in some cases, re-found).

* [FileTableDB] Small updates for Revenge and No Mercy FileTableDBs.

To update your project, open the File Table dialog, then choose Database ->
Reload File Table Database.

Pre-Alpha Preview 25 (2022/08/12)
---------------------------------
* Various Danger Zone dialogs are now non-modal (i.e. you can interact with
Expand Down

0 comments on commit 3816457

Please sign in to comment.