summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2022-09-01 02:15:36 +0300
committerdartraiden <wowemuh@gmail.com>2022-09-01 02:15:36 +0300
commit28ced83d8dc66de5c964cf4f2e72d591586f396d (patch)
treea6a11427f33172f2cc2f1ab0e5c1a2d51554690f
parentf787825fea601eaece7f20ad11a444c1766bcb2e (diff)
Fix addons URL
-rw-r--r--plugins/Clist_modern/src/modern_skinopt.cpp2
-rw-r--r--plugins/Clist_nicer/src/extBackg.cpp2
-rw-r--r--plugins/IEView/src/Options.cpp2
-rw-r--r--plugins/Popup/src/opt_skins.cpp4
-rw-r--r--plugins/SplashScreen/src/options.cpp2
-rw-r--r--plugins/TabSRMM/src/msgoptions.cpp2
-rw-r--r--plugins/TipperYM/src/options.cpp2
7 files changed, 8 insertions, 8 deletions
diff --git a/plugins/Clist_modern/src/modern_skinopt.cpp b/plugins/Clist_modern/src/modern_skinopt.cpp
index 53264a688f..5c18867fe2 100644
--- a/plugins/Clist_modern/src/modern_skinopt.cpp
+++ b/plugins/Clist_modern/src/modern_skinopt.cpp
@@ -158,7 +158,7 @@ INT_PTR CALLBACK DlgSkinOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPara
case IDC_GETSKINS:
if (HIWORD(wParam) == BN_CLICKED)
- Utils_OpenUrl("https://miranda-ng.org/addons/category/17");
+ Utils_OpenUrl("https://miranda-ng.org/tags/modern-contact-list/");
break;
diff --git a/plugins/Clist_nicer/src/extBackg.cpp b/plugins/Clist_nicer/src/extBackg.cpp
index 00d799f23c..c6dc99c19c 100644
--- a/plugins/Clist_nicer/src/extBackg.cpp
+++ b/plugins/Clist_nicer/src/extBackg.cpp
@@ -1571,7 +1571,7 @@ static INT_PTR CALLBACK DlgProcSkinOpts(HWND hwndDlg, UINT msg, WPARAM wParam, L
case IDC_GETSKINS:
if (HIWORD(wParam) == BN_CLICKED)
- Utils_OpenUrl("https://miranda-ng.org/addons/category/18");
+ Utils_OpenUrl("https://miranda-ng.org/tags/nicer-contact-list/");
break;
case IDC_SELECTSKINFILE:
diff --git a/plugins/IEView/src/Options.cpp b/plugins/IEView/src/Options.cpp
index 09e4226c82..7938b5ed42 100644
--- a/plugins/IEView/src/Options.cpp
+++ b/plugins/IEView/src/Options.cpp
@@ -570,7 +570,7 @@ static INT_PTR CALLBACK IEViewSRMMOptDlgProc(HWND hwndDlg, UINT msg, WPARAM wPar
MarkChanges(2, hwndDlg);
break;
case IDC_GETTEMPLATES:
- Utils_OpenUrl("https://miranda-ng.org/addons/category/16");
+ Utils_OpenUrl("https://miranda-ng.org/tags/ieview-templates/");
break;
}
break;
diff --git a/plugins/Popup/src/opt_skins.cpp b/plugins/Popup/src/opt_skins.cpp
index e62c48909a..6d75d9e863 100644
--- a/plugins/Popup/src/opt_skins.cpp
+++ b/plugins/Popup/src/opt_skins.cpp
@@ -386,7 +386,7 @@ INT_PTR CALLBACK DlgProcPopSkinsOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPAR
break;
case IDC_GETSKINS:
- Utils_OpenUrl("https://miranda-ng.org/addons/category/13");
+ Utils_OpenUrl("https://miranda-ng.org/tags/popup-plus/");
break;
case IDC_BTN_RELOAD:
@@ -400,7 +400,7 @@ INT_PTR CALLBACK DlgProcPopSkinsOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPAR
}
ListBox_SetCurSel(hCtrl, ListBox_FindString(hCtrl, 0, PopupOptions.SkinPack));
- // make shure we have select skin (ListBox_SetCurSel may be fail)
+ // make sure we have select skin (ListBox_SetCurSel may be fail)
wchar_t szNewSkin[128];
ListBox_GetText(hCtrl, ListBox_GetCurSel(hCtrl), &szNewSkin);
if (mir_wstrcmp(pszOldSkin, szNewSkin) != 0) {
diff --git a/plugins/SplashScreen/src/options.cpp b/plugins/SplashScreen/src/options.cpp
index 8925965151..c9f148bc3c 100644
--- a/plugins/SplashScreen/src/options.cpp
+++ b/plugins/SplashScreen/src/options.cpp
@@ -188,7 +188,7 @@ INT_PTR CALLBACK DlgProcOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lP
}
case IDC_GETSPLASHES:
- Utils_OpenUrl("https://miranda-ng.org/addons/category/15");
+ Utils_OpenUrl("https://miranda-ng.org/tags/splash-screens/");
break;
case IDC_CHOOSESND:
diff --git a/plugins/TabSRMM/src/msgoptions.cpp b/plugins/TabSRMM/src/msgoptions.cpp
index 458a226eb3..17264791da 100644
--- a/plugins/TabSRMM/src/msgoptions.cpp
+++ b/plugins/TabSRMM/src/msgoptions.cpp
@@ -257,7 +257,7 @@ public:
CSkinOptsDlg() :
CDlgBase(g_plugin, IDD_OPT_SKIN),
m_timer(this, 1000),
- m_link1(this, IDC_GETSKINS, "https://miranda-ng.org/addons/category/19"),
+ m_link1(this, IDC_GETSKINS, "https://miranda-ng.org/tags/tabsrmm/"),
m_link2(this, IDC_HELP_GENERAL, "https://wiki.miranda-ng.org/index.php?title=Plugin:TabSRMM/en/Using_skins"),
cmbSkins(this, IDC_SKINNAME),
btnClose(this, IDC_SKIN_CLOSENOW),
diff --git a/plugins/TipperYM/src/options.cpp b/plugins/TipperYM/src/options.cpp
index 20b97c1b5b..afcd85ba5d 100644
--- a/plugins/TipperYM/src/options.cpp
+++ b/plugins/TipperYM/src/options.cpp
@@ -1837,7 +1837,7 @@ INT_PTR CALLBACK DlgProcOptsSkin(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM l
else if (LOWORD(wParam) == IDC_CHK_LOADPROPORTIONS)
opt.bLoadProportions = IsDlgButtonChecked(hwndDlg, IDC_CHK_LOADPROPORTIONS) ? true : false;
else if (LOWORD(wParam) == IDC_BTN_GETSKINS)
- Utils_OpenUrl("https://miranda-ng.org/addons/category/48");
+ Utils_OpenUrl("https://miranda-ng.org/tags/tipper/");
break;
}