-
Notifications
You must be signed in to change notification settings - Fork 997
Bugfix/version windows integration improve install #8178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
mgallien
merged 6 commits into
master
from
bugfix/versionWindowsIntegrationImproveInstall
May 13, 2025
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
a73733b
fix(msi): use standard replace mode for MSI installer
mgallien 532c5df
fix(msi): do not completely remove the previous installation when upd…
nilsding 59f3e77
fix(msi): force termination of stuck processes
nilsding 92d5c47
feat(windows): use cmake to configure windows integration DLL version
mgallien 96df5cb
fix(windows): add missing version to cfapi shell integration DLL
mgallien d28b8e3
feat(msi): do not schedule reboots ourselves
nilsding File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| /* | ||
| * SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors | ||
| * SPDX-License-Identifier: GPL-2.0-or-later | ||
| */ | ||
| // Microsoft Visual C++ generated resource script. | ||
| // | ||
| #include "CfApiShellIntegrationVersion.h" | ||
|
|
||
| ///////////////////////////////////////////////////////////////////////////// | ||
| // | ||
| // Generated from the TEXTINCLUDE 2 resource. | ||
| // | ||
| #include "windows.h" | ||
|
|
||
| ///////////////////////////////////////////////////////////////////////////// | ||
| // | ||
| // Version | ||
| // | ||
|
|
||
| VS_VERSION_INFO VERSIONINFO | ||
| FILEVERSION NCEXT_VERSION | ||
| PRODUCTVERSION NCEXT_VERSION | ||
| FILEFLAGSMASK 0x3fL | ||
| #ifdef _DEBUG | ||
| FILEFLAGS 0x1L | ||
| #else | ||
| FILEFLAGS 0x0L | ||
| #endif | ||
| FILEOS 0x40004L | ||
| FILETYPE 0x2L | ||
| FILESUBTYPE 0x0L | ||
| BEGIN | ||
| BLOCK "StringFileInfo" | ||
| BEGIN | ||
| BLOCK "040904b0" | ||
| BEGIN | ||
| VALUE "CompanyName", "Nextcloud GmbH" | ||
| VALUE "FileDescription", "Nextcloud CfApi shell extension" | ||
| VALUE "FileVersion", NCEXT_VERSION_STRING | ||
| VALUE "InternalName", "NCOverlays" | ||
| VALUE "LegalCopyright", "Copyright (C) 2023 Nextcloud GmbH" | ||
| VALUE "ProductName", "Nextcloud shell extension" | ||
| VALUE "ProductVersion", NCEXT_VERSION_STRING | ||
| END | ||
| END | ||
| BLOCK "VarFileInfo" | ||
| BEGIN | ||
| VALUE "Translation", 0x409, 1200 | ||
| END | ||
| END | ||
| ///////////////////////////////////////////////////////////////////////////// | ||
|
|
||
|
|
||
|
|
||
| #ifndef APSTUDIO_INVOKED | ||
| ///////////////////////////////////////////////////////////////////////////// | ||
| // | ||
| // Generated from the TEXTINCLUDE 3 resource. | ||
| // | ||
|
|
||
|
|
||
| ///////////////////////////////////////////////////////////////////////////// | ||
| #endif // not APSTUDIO_INVOKED | ||
|
|
14 changes: 14 additions & 0 deletions
14
src/libsync/vfs/cfapi/shellext/CfApiShellIntegrationVersion.h.in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| #pragma once | ||
|
|
||
| // SPDX-FileCopyrightText: 2016 ownCloud GmbH | ||
| // SPDX-License-Identifier: LGPL-2.1-or-later | ||
|
|
||
| // This is the number that will end up in the version window of the DLLs. | ||
| // Increment this version before committing a new build if you are today's shell_integration build master. | ||
| #cmakedefine NCEXT_BUILD_NUM @NCEXT_BUILD_NUM@ | ||
|
|
||
| #define STRINGIZE2(s) #s | ||
| #define STRINGIZE(s) STRINGIZE2(s) | ||
|
|
||
| #cmakedefine NCEXT_VERSION @NCEXT_VERSION@ | ||
| #define NCEXT_VERSION_STRING STRINGIZE(NCEXT_VERSION) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.