Skip to content
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.

Commit

Permalink
Pushed version 4
Browse files Browse the repository at this point in the history
  • Loading branch information
CapitaineToinon committed Jul 9, 2020
1 parent aa69c43 commit 949f211
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 52 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ bld/
LiveSplit.DarkSoulsIGT/Components/LiveSplit.Core.dll
LiveSplit.DarkSoulsIGT/Components/UpdateManager.dll
LiveSplit.DarkSoulsIGT/Components/LiveSplit.DarkSoulsIGT.pdb
LiveSplit.DarkSoulsIGT/Components/LiveSplit.Core.dll.config

# Visual Studio 2015 cache/options directory
.vs/
Expand Down
Binary file modified LiveSplit.DarkSoulsIGT/Components/LiveSplit.DarkSoulsIGT.dll
Binary file not shown.
111 changes: 62 additions & 49 deletions LiveSplit.DarkSoulsIGT/Components/update.LiveSplit.DarkSoulsIGT.xml
Original file line number Diff line number Diff line change
@@ -1,51 +1,64 @@
<updates>
<update version="3.1.0.0">
<files>
<file path="Components/LiveSplit.DarkSoulsIGT.dll" status="changed" />
</files>
<changelog>
<change>
Various minor fixes.
</change>
</changelog>
</update>
<update version="3.0.0.0">
<files>
<file path="Components/LiveSplit.DarkSoulsIGT.dll" status="changed" />
</files>
<changelog>
<change>
Merged the Dark Souls and Dark Souls: Remastered plugins into a single plugin.
</change>
<change>
Fixed the timer sometimes not working anymore after the game was closed.
</change>
<change>
Fixed the timer flickers.
</change>
</changelog>
</update>
<update version="2.0.0.0">
<files>
<file path="Components/LiveSplit.DarkSoulsIGT.dll" status="changed" />
</files>
<changelog>
<change>
Added dynamic in-game time address scanning. This means the plugin shouldn't need update when a new game patch releases.
</change>
<change>
Added Inventory Indexes Reset. Resets equipment inventory indexes when you start/reset a run as those normally carry over to other/new characters.
</change>
</changelog>
</update>
<update version="1.0.0.0">
<files>
<file path="Components/LiveSplit.DarkSoulsIGT.dll" status="changed" />
</files>
<changelog>
<change>
Added LiveSplit self-update supprt.
</change>
</changelog>
</update>
<update version="4.0.0.0">
<files>
<file path="Components/LiveSplit.DarkSoulsIGT.dll" status="changed" />
</files>
<changelog>
<change>
Fixed final IGT on credits by reading IGT directly from the savefile.
</change>
<change>
Fixed IGT on quitouts by reading IGT directly from the savefile.
</change>
</changelog>
</update>
<update version="3.1.0.0">
<files>
<file path="Components/LiveSplit.DarkSoulsIGT.dll" status="changed" />
</files>
<changelog>
<change>
Various minor fixes.
</change>
</changelog>
</update>
<update version="3.0.0.0">
<files>
<file path="Components/LiveSplit.DarkSoulsIGT.dll" status="changed" />
</files>
<changelog>
<change>
Merged the Dark Souls and Dark Souls: Remastered plugins into a single plugin.
</change>
<change>
Fixed the timer sometimes not working anymore after the game was closed.
</change>
<change>
Fixed the timer flickers.
</change>
</changelog>
</update>
<update version="2.0.0.0">
<files>
<file path="Components/LiveSplit.DarkSoulsIGT.dll" status="changed" />
</files>
<changelog>
<change>
Added dynamic in-game time address scanning. This means the plugin shouldn't need update when a new game patch releases.
</change>
<change>
Added Inventory Indexes Reset. Resets equipment inventory indexes when you start/reset a run as those normally carry over to other/new characters.
</change>
</changelog>
</update>
<update version="1.0.0.0">
<files>
<file path="Components/LiveSplit.DarkSoulsIGT.dll" status="changed" />
</files>
<changelog>
<change>
Added LiveSplit self-update supprt.
</change>
</changelog>
</update>
</updates>
4 changes: 2 additions & 2 deletions LiveSplit.DarkSoulsIGT/LiveSplit.DarkSoulsIGT.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<HintPath>..\packages\Costura.Fody.4.1.0\lib\net40\Costura.dll</HintPath>
</Reference>
<Reference Include="LiveSplit.Core">
<HintPath>..\References\LiveSplit.Core.dll</HintPath>
<HintPath>..\..\..\LiveSplit\LiveSplit.Core.dll</HintPath>
</Reference>
<Reference Include="PropertyHook, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand All @@ -56,7 +56,7 @@
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="UpdateManager">
<HintPath>..\References\UpdateManager.dll</HintPath>
<HintPath>..\..\..\LiveSplit\UpdateManager.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion LiveSplit.DarkSoulsIGT/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut
// en utilisant '*', comme indiqué ci-dessous :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.1.0.0")]
[assembly: AssemblyVersion("4.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

0 comments on commit 949f211

Please sign in to comment.