Skip to content
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

[Windows][Installer] Clean-up installer project #5927

Merged
merged 1 commit into from
Nov 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
188 changes: 0 additions & 188 deletions clientsetup/win/CACCConfigMd5sum.cpp

This file was deleted.

37 changes: 0 additions & 37 deletions clientsetup/win/CACCConfigMd5sum.h

This file was deleted.

7 changes: 7 additions & 0 deletions clientsetup/win/CARestoreSetupState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,14 @@ UINT CARestoreSetupState::OnExecution()
if (strOverrideEnableUseByAllUsers.empty()) {
if (_T("1") == strEnableUseByAllUsers) {
SetProperty( _T("ENABLEUSEBYALLUSERS"), _T("1") );
SetProperty(_T("ALLUSERS"), _T("1"));
} else {
SetProperty( _T("ENABLEUSEBYALLUSERS"), _T("") );
SetProperty(_T("ALLUSERS"), _T(""));
}
} else {
SetProperty( _T("ENABLEUSEBYALLUSERS"), strOverrideEnableUseByAllUsers );
SetProperty(_T("ALLUSERS"), strOverrideEnableUseByAllUsers);
}
}

Expand All @@ -194,6 +197,10 @@ UINT CARestoreSetupState::OnExecution()
SetProperty( _T("DATADIR"), strDataDirectory );
}

// Check if we are upgrading
if (IsUpgrading()) {
SetProperty(_T("IS_MAJOR_UPGRADE"), _T("Yes"));
}
return ERROR_SUCCESS;
}

Expand Down
86 changes: 0 additions & 86 deletions clientsetup/win/CAShutdownUD.cpp

This file was deleted.

37 changes: 0 additions & 37 deletions clientsetup/win/CAShutdownUD.h

This file was deleted.

2 changes: 0 additions & 2 deletions clientsetup/win/boinccas.def
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ EXPORTS
ShutdownBOINC
ShutdownBOINCManager
ShutdownBOINCScreensaver
ShutdownUD
GrantBOINCAdminsRights
GrantBOINCAdminsVirtualBoxRights
GrantBOINCUsersRights
Expand All @@ -38,7 +37,6 @@ EXPORTS
ValidateRebootRequest
SaveExecutionState
RestoreExecutionState
CCConfigMd5sum
CreateProjectInitFile
CreateAcctMgrLoginFile
RestorePermissionBOINCData
Expand Down
Loading