Skip to content

Commit

Permalink
Version 2.0.0 release! ImGUI and notes among other features.
Browse files Browse the repository at this point in the history
Check #6 for details.
Also updated build script to include new files (oops).
  • Loading branch information
adamk33n3r committed Feb 28, 2021
1 parent c5e90a5 commit 6121ffd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions Deja Vu.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ powershell.exe -ExecutionPolicy Bypass -NoProfile -NonInteractive -File create_r
<ClInclude Include="vendor\imgui\imstb_truetype.h" />
<ClInclude Include="vendor\json.hpp" />
<ClInclude Include="DejaVu.h" />
<ClInclude Include="Version.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
Expand Down
4 changes: 2 additions & 2 deletions Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#define VERSION_MAJOR 2
#define VERSION_MINOR 0
#define VERSION_PATCH 0
#define VERSION_BUILD 395
#define VERSION_PHASE PHASE_PRERELEASE
#define VERSION_BUILD 396
#define VERSION_PHASE PHASE_RELEASE

#define stringify(a) stringify_(a)
#define stringify_(a) #a
Expand Down
7 changes: 6 additions & 1 deletion create_release_zip.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,20 @@ try {
$fileList = (
'.\Canvas.cpp',
'.\Canvas.h',
'.\CVar2WayBinding.h',
'.\Deja Vu.filters',
'.\Deja Vu.sln',
'.\Deja Vu.vcxproj',
'.\Deja Vu.vcxproj.user',
'.\DejaVu.cpp',
'.\DejaVu.h',
'.\DejaVuGUI.cpp',
'.\pch.cpp',
'.\pch.h',
'.\SettingsFileGenerator.cpp',
'.\LICENSE',
'.\RuleSet.ruleset'
'.\RuleSet.ruleset',
'.\Version.h'
)
foreach ($file in $fileList) {
Copy-Item $file -Destination $buildDir\source
Expand Down

0 comments on commit 6121ffd

Please sign in to comment.