diff options
| author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-10-16 21:33:25 +0000 | 
|---|---|---|
| committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-10-16 21:33:25 +0000 | 
| commit | 1f8cbf7f291ac140f8dfed775ecdb47c7437716e (patch) | |
| tree | 76f32401c48e0d16ca8ab60e1589915b6f641fa9 /plugins/PluginUpdater/src | |
| parent | 94011c69f7d5982a471f93cff6880506132525ab (diff) | |
Quick fix for reseting setting
git-svn-id: http://svn.miranda-ng.org/main/trunk@10806 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src')
| -rw-r--r-- | plugins/PluginUpdater/src/DlgUpdate.cpp | 6 | ||||
| -rw-r--r-- | plugins/PluginUpdater/src/Options.cpp | 5 | ||||
| -rw-r--r-- | plugins/PluginUpdater/src/Utils.cpp | 8 | 
3 files changed, 10 insertions, 9 deletions
diff --git a/plugins/PluginUpdater/src/DlgUpdate.cpp b/plugins/PluginUpdater/src/DlgUpdate.cpp index 0528d1b34a..36df3735f1 100644 --- a/plugins/PluginUpdater/src/DlgUpdate.cpp +++ b/plugins/PluginUpdater/src/DlgUpdate.cpp @@ -57,14 +57,10 @@ static void ApplyUpdates(void *param)  	AutoHandle pipe(hPipe);
  	HWND hwndList = GetDlgItem(hDlg, IDC_LIST_UPDATES);
 -	TCHAR tszFileTemp[MAX_PATH], tszFileBack[MAX_PATH];
 -
 +	TCHAR tszFileBack[MAX_PATH];
  	mir_sntprintf(tszFileBack, SIZEOF(tszFileBack), _T("%s\\Backups"), tszRoot);
  	SafeCreateDirectory(tszFileBack);
 -	mir_sntprintf(tszFileTemp, SIZEOF(tszFileTemp), _T("%s\\Temp"), tszRoot);
 -	SafeCreateDirectory(tszFileTemp);
 -
  	// 2) Download all plugins
  	HANDLE nlc = NULL;
  	for (int i=0; i < todo.getCount(); i++) {
 diff --git a/plugins/PluginUpdater/src/Options.cpp b/plugins/PluginUpdater/src/Options.cpp index b39b000bf8..9b1e58764c 100644 --- a/plugins/PluginUpdater/src/Options.cpp +++ b/plugins/PluginUpdater/src/Options.cpp @@ -47,7 +47,10 @@ INT_PTR CALLBACK UpdateNotifyOptsProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPA  		if (db_get_b(NULL, MODNAME, DB_SETTING_DONT_SWITCH_TO_STABLE, 0)) {
  			EnableWindow(GetDlgItem(hwndDlg, IDC_STABLE), FALSE);
 -			db_set_b(NULL, MODNAME, DB_SETTING_UPDATE_MODE, UPDATE_MODE_TRUNK);
 +			// Reset setting if needed
 +			int UpdateMode = db_get_b(NULL, MODNAME, DB_SETTING_UPDATE_MODE, UPDATE_MODE_STABLE);
 +			if (UpdateMode == UPDATE_MODE_STABLE)
 +				db_set_b(NULL, MODNAME, DB_SETTING_UPDATE_MODE, UPDATE_MODE_TRUNK);
  			ShowWindow(GetDlgItem(hwndDlg, IDC_DONTSWITCHTOSTABLE), SW_SHOW);
  		}
 diff --git a/plugins/PluginUpdater/src/Utils.cpp b/plugins/PluginUpdater/src/Utils.cpp index fb24329b92..7d54a161ec 100644 --- a/plugins/PluginUpdater/src/Utils.cpp +++ b/plugins/PluginUpdater/src/Utils.cpp @@ -248,11 +248,13 @@ bool ParseHashes(const TCHAR *ptszUrl, ptrT &baseUrl, SERVLIST &arHashes)  		rtrim(str);
  		if (str[0] == ';') {
  			db_unset(NULL, MODNAME, DB_SETTING_DONT_SWITCH_TO_STABLE);
 -			continue;
  		}
 -		if (!strcmp(str, "DoNotSwitchToStable")) {
 +		else if (!strcmp(str, "DoNotSwitchToStable")) {
  			db_set_b(NULL, MODNAME, DB_SETTING_DONT_SWITCH_TO_STABLE, 1);
 -			db_set_b(NULL, MODNAME, DB_SETTING_UPDATE_MODE, UPDATE_MODE_TRUNK);
 +			// Reset setting if needed
 +			int UpdateMode = db_get_b(NULL, MODNAME, DB_SETTING_UPDATE_MODE, UPDATE_MODE_STABLE);
 +			if (UpdateMode == UPDATE_MODE_STABLE)
 +				db_set_b(NULL, MODNAME, DB_SETTING_UPDATE_MODE, UPDATE_MODE_TRUNK);
  		}
  		else {
  			Netlib_Logf(hNetlibUser, "Update: %s", str);
  | 
