aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt3
-rw-r--r--shell/callbacks.c2
-rw-r--r--shell/menu.c2
-rw-r--r--shell/syncmanager.c2
4 files changed, 5 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 31fc111c..410ee101 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -506,7 +506,8 @@ install(FILES pixmaps/hardinfo2.png
########################PACKAGE BUILDING FOR DISTROS###########################
#Please update here for building packages
-
+#keep package name as hardinfo to allow for upgrading in distro
+SET(CPACK_PACKAGE_NAME "hardinfo")
SET(CPACK_PACKAGE_HOMEPAGE_URL "https://www.hardinfo2.org")
if(${RPM})
SET(CPACK_GENERATOR "RPM")
diff --git a/shell/callbacks.c b/shell/callbacks.c
index a70d520b..b9c6252b 100644
--- a/shell/callbacks.c
+++ b/shell/callbacks.c
@@ -91,7 +91,7 @@ void cb_open_web_page()
void cb_report_bug()
{
- uri_open("https://github.com/hwspeedy/hardinfo2");
+ uri_open("https://github.com/hardinfo2/hardinfo2/issues");
}
void cb_refresh()
diff --git a/shell/menu.c b/shell/menu.c
index d9084565..83bd8144 100644
--- a/shell/menu.c
+++ b/shell/menu.c
@@ -73,7 +73,7 @@ static GtkActionEntry entries[] = {
G_CALLBACK(cb_refresh)},
{"HomePageAction", HI_STOCK_INTERNET,
- N_("_Open HardInfo Web Site"), NULL,
+ N_("_Open HardInfo2 Web Site"), NULL,
NULL,
G_CALLBACK(cb_open_web_page)},
diff --git a/shell/syncmanager.c b/shell/syncmanager.c
index 0753e596..0f08cf87 100644
--- a/shell/syncmanager.c
+++ b/shell/syncmanager.c
@@ -631,7 +631,7 @@ static SyncDialog *sync_dialog_new(GtkWidget *parent)
populate_store(store);
priv_policy_btn = gtk_link_button_new_with_label(
- "https://github.com/hwspeedy/hardinfo2?tab=readme-ov-file#privacy-policy",
+ "https://github.com/hardinfo2/hardinfo2?tab=readme-ov-file#privacy-policy",
_("Privacy Policy"));
gtk_widget_show(priv_policy_btn);
gtk_box_pack_start(GTK_BOX(dialog1_vbox), priv_policy_btn, FALSE, FALSE, 0);