From e6b83c7473d0296ffdc487dce94ab0eda3194242 Mon Sep 17 00:00:00 2001 From: Alexander Shaduri Date: Tue, 8 Feb 2022 19:21:45 +0400 Subject: [PATCH] Updated links to online documentation. --- docs/documentation.html | 6 ------ docs/support.html | 6 ------ src/gsc_add_device_window.cpp | 2 +- src/gsc_main_window.cpp | 4 ++-- 4 files changed, 3 insertions(+), 15 deletions(-) delete mode 100644 docs/documentation.html delete mode 100644 docs/support.html diff --git a/docs/documentation.html b/docs/documentation.html deleted file mode 100644 index fc23e57..0000000 --- a/docs/documentation.html +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/docs/support.html b/docs/support.html deleted file mode 100644 index f647d33..0000000 --- a/docs/support.html +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/gsc_add_device_window.cpp b/src/gsc_add_device_window.cpp index f596d6f..16c0ad0 100644 --- a/src/gsc_add_device_window.cpp +++ b/src/gsc_add_device_window.cpp @@ -40,7 +40,7 @@ GscAddDeviceWindow::GscAddDeviceWindow(BaseObjectType* gtkcobj, Glib::RefPtr("top_info_link_label"); - std::string man_url = "https://gsmartcontrol.sourceforge.io/smartctl_man.html"; + std::string man_url = "https://gsmartcontrol.shaduri.dev/smartctl_man.html"; top_info_link_label->set_text(Glib::ustring::compose(top_info_link_label->get_text(), man_url)); Glib::ustring device_name_tooltip = _("Device name"); diff --git a/src/gsc_main_window.cpp b/src/gsc_main_window.cpp index 27cae8b..960fcd8 100644 --- a/src/gsc_main_window.cpp +++ b/src/gsc_main_window.cpp @@ -598,13 +598,13 @@ void GscMainWindow::on_action_activated(GscMainWindow::action_t action_type) case action_online_documentation: { - hz::launch_url(gobj(), "https://gsmartcontrol.sourceforge.io/documentation.html"); + hz::launch_url(gobj(), "https://gsmartcontrol.shaduri.dev/"); break; } case action_support: { - hz::launch_url(gobj(), "https://gsmartcontrol.sourceforge.io/support.html"); + hz::launch_url(gobj(), "https://gsmartcontrol.shaduri.dev/support"); break; }