Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
sguionni committed Jul 9, 2024
1 parent c172af1 commit aee2ec0
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [0.4.4] (beta) - 2024-07-09

### Other

- Change download API to https://files.rcsb.org.

## [0.4.3] (beta) - 2024-04-29

### Debug
Expand Down
10 changes: 5 additions & 5 deletions _windows_build_installer.nsi
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
Unicode True

# Installer filename.
OutFile VTX_0.4.3_SelfExtractor.exe
OutFile VTX_0.4.4_SelfExtractor.exe

# Installer directory.
InstallDir $EXEDIR\VTX_0.4.3
InstallDir $EXEDIR\VTX_0.4.4

# Installer name.
Name "VTX v0.4.3"
Name "VTX v0.4.4"

# Meta tags.
VIProductVersion "0.4.3.0"
VIProductVersion "0.4.4.0"
VIAddVersionKey "ProductName" "VTX"
VIAddVersionKey "CompanyName" "VTX Consortium"
VIAddVersionKey "LegalCopyright" "Copyright (C) 2024"
VIAddVersionKey "FileDescription" "High performance molecular visualization software"
VIAddVersionKey "FileVersion" "0.4.3"
VIAddVersionKey "FileVersion" "0.4.4"

Section

Expand Down
Binary file added asset/windows_resources/RCa24328
Binary file not shown.
Binary file removed asset/windows_resources/VTX.APS
Binary file not shown.
8 changes: 4 additions & 4 deletions asset/windows_resources/VTX.rc
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ IDI_ICON1 ICON "..\\..\\asset\\logo.ico"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,4,3,0
PRODUCTVERSION 0,4,3,0
FILEVERSION 0,4,4,0
PRODUCTVERSION 0,4,4,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -79,12 +79,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "VTX Consortium"
VALUE "FileDescription", "High performance molecular visualization software"
VALUE "FileVersion", "0.4.3.0"
VALUE "FileVersion", "0.4.4.0"
VALUE "InternalName", "VTX"
VALUE "LegalCopyright", "Copyright (C) 2024"
VALUE "OriginalFilename", "VTX.rc"
VALUE "ProductName", "VTX"
VALUE "ProductVersion", "0.4.3.0"
VALUE "ProductVersion", "0.4.4.0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion src/define.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ namespace VTX
const std::string VTX_PROJECT_NAME = "VTX";
constexpr uint VTX_VERSION_MAJOR = 0;
constexpr uint VTX_VERSION_MINOR = 4;
constexpr uint VTX_VERSION_REVISION = 3;
constexpr uint VTX_VERSION_REVISION = 4;

const std::string VTX_WEBSITE_URL = "https://vtx.drugdesign.fr";
const std::string VTX_VERSION_URL = VTX_WEBSITE_URL + "/vtx.json";
Expand Down

0 comments on commit aee2ec0

Please sign in to comment.