Changelog:

V 2.42 - BETA Build 77
- fix for not using the proper PTU cache when pulling data from gamepack (#87)
  NOTE: please delete .scj files in <installDir>\Storage\*.scj    (as they have been overwritten with PTU content)
pull/104/head v2.42beta
bm98 5 years ago
parent 275bdd281a
commit 1af32c701c

@ -317,6 +317,12 @@ namespace SCJMapper_V2
{
log.Debug( "MainForm_Load - Entry" );
// 20190711 - this needs to be done before updating the Pack...
// init PTU folder usage at the very start
if ( AppSettings.Instance.UsePTU ) log.Debug( "Using PTU Folders" );
lblPTU.Visible = AppSettings.Instance.UsePTU;
TheUser.UsesPTU = AppSettings.Instance.UsePTU;
SCFiles.Instance.UpdatePack( ); // update game files
Tx.LocalizeControlTree( this );
@ -342,11 +348,6 @@ namespace SCJMapper_V2
log.InfoFormat( "Application Version: {0}", version.ToString( ) );
// init PTU folder usage at the very start
if ( AppSettings.Instance.UsePTU ) log.Debug( "Using PTU Folders" );
lblPTU.Visible = AppSettings.Instance.UsePTU;
TheUser.UsesPTU = AppSettings.Instance.UsePTU;
// tooltips where needed
toolTip1.SetToolTip( this.linkLblReleases, c_GithubLink ); // allow to see where the link may head

@ -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( "2.41.0.76" )]
[assembly: AssemblyFileVersion( "2.41.0.76" )]
[assembly: AssemblyVersion( "2.42.0.77" )]
[assembly: AssemblyFileVersion( "2.42.0.77" )]

@ -1,12 +1,12 @@
SC Joystick Mapper V 2.41 - Build 76 BETA
SC Joystick Mapper V 2.42 - Build 77 BETA
(c) Cassini, StandardToaster - 11-Jul-2019
Contains 14 files + graphics:
SCJMapper.exe The program (V2.41)
SCJMapper.exe.config Program config (V2.41) - MUST be in the same folder as the Exe file
de\SCJMapper.resources.dll German language (V2.41) - MUST be in the same folder as the Exe file
fr\SCJMapper.resources.dll French language (V2.41) - MUST be in the same folder as the Exe file
SCJMapper.exe The program (V2.42)
SCJMapper.exe.config Program config (V2.42) - MUST be in the same folder as the Exe file
de\SCJMapper.resources.dll German language (V2.42) - MUST be in the same folder as the Exe file
fr\SCJMapper.resources.dll French language (V2.42) - MUST be in the same folder as the Exe file
Storage\*.scj Folder for collected assets (V2.35) - MUST be in the same folder as the Exe file
PTU_Storage\*.scj Folder for collected PTU (V2.37) - MUST be in the same folder as the Exe file
SharpDX.DirectInput.dll Managed DirectInput Assembly - MUST be in the same folder as the Exe file
@ -46,6 +46,9 @@ Scanned for viruses before packing...
cassini@burri-web.org
Changelog:
V 2.42 - BETA Build 77
- fix for not using the proper PTU cache when pulling data from gamepack (#87)
NOTE: please delete .scj files in <installDir>\Storage\*.scj (as they have been overwritten with PTU content)
V 2.41 - BETA Build 76
- update for SC Alpha PTU 3.6.0 and launcher 1.2.0 - new PTU path (#86)
- update Log File from game includes also used Pathes - revisit those if the progam does not find them

@ -27,8 +27,8 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>76</ApplicationRevision>
<ApplicationVersion>2.41.0.%2a</ApplicationVersion>
<ApplicationRevision>77</ApplicationRevision>
<ApplicationVersion>2.42.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>

Loading…
Cancel
Save