Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaoses-Ib committed Aug 17, 2022
1 parent 4ba66b8 commit 9940e60
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion EverythingExt/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ bool config_init() {
if (config.update.check = root["update"]["check"].as<bool>()) {
wchar_t update_path[MAX_PATH];
wcscpy_s(update_path, root_path);
PathAppendW(update_path, L"update.exe");
PathAppendW(update_path, L"Updater.exe");
config.update.update_path = update_path;

// to avoid checking on system startup and when calling Everything through command line,
Expand Down
8 changes: 4 additions & 4 deletions EverythingExt/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,6,0,3
PRODUCTVERSION 0,6,0,3
FILEVERSION 0,6,0,4
PRODUCTVERSION 0,6,0,4
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -69,12 +69,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "https://github.com/Chaoses-Ib/IbEverythingExt"
VALUE "FileDescription", "Everything ƴ������������ѡ����չ"
VALUE "FileVersion", "0.6.0.3"
VALUE "FileVersion", "0.6.0.4"
VALUE "InternalName", "IbEverythingExt.dll"
VALUE "LegalCopyright", "Copyright (C) 2022 ����Ib"
VALUE "OriginalFilename", "WindowsCodecs.dll"
VALUE "ProductName", "IbEverythingExt"
VALUE "ProductVersion", "0.6.0.3"
VALUE "ProductVersion", "0.6.0.4"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion Updater/updater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ std::string truncate_lines(std::string s, size_t lines) {

bool check_for_update(bool prerelease, bool quiet, bool silent_error) {
try {
GitHubUpdater updater{ "Chaoses-Ib", "IbEverythingExt", "v0.6-alpha.3" };
GitHubUpdater updater{ "Chaoses-Ib", "IbEverythingExt", "v0.6-alpha.4" };
YAML::Node release = updater.check_for_new_release(prerelease);
if (release.IsNull()) {
if (!quiet)
Expand Down
6 changes: 5 additions & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@ cmake -B build -DCMAKE_TOOLCHAIN_FILE="C:\...\vcpkg\scripts\buildsystems\vcpkg.c
对于 test 还需要:
```
vcpkg install boost-test pcre pcre2 --triplet=x64-windows-static-md
```
```

## Bump version
- EverythingExt\resource.rc
- Updater\updater.cpp

0 comments on commit 9940e60

Please sign in to comment.