diff --git a/artemis.py b/artemis.py
index 8ba29cb..5b48943 100644
--- a/artemis.py
+++ b/artemis.py
@@ -67,6 +67,15 @@ class Artemis(QMainWindow, Ui_MainWindow):
self.action_add_a_signal.triggered.connect(
lambda: webbrowser.open(Constants.ADD_SIGNAL_LINK)
)
+ self.action_aresvalley_com.triggered.connect(
+ lambda: webbrowser.open(Constants.ARESVALLEY_LINK)
+ )
+ self.action_forum.triggered.connect(
+ lambda: webbrowser.open(Constants.FORUM_LINK)
+ )
+ self.action_rtl_sdr_com.triggered.connect(
+ lambda: webbrowser.open(Constants.RTL_SDL_LINK)
+ )
self.db = None
self.current_signal_name = ''
self.signal_names = []
diff --git a/artemis.ui b/artemis.ui
index e2c66a1..86163b4 100644
--- a/artemis.ui
+++ b/artemis.ui
@@ -7143,10 +7143,19 @@ QSlider::handle:horizontal {
+
+
@@ -7178,6 +7187,21 @@ QSlider::handle:horizontal {
Add a signal
+
+
+ Forum
+
+
+
+
+ aresvalley.com
+
+
+
+
+ RTL-SDR.com
+
+
diff --git a/constants.py b/constants.py
index 34a7003..c465342 100644
--- a/constants.py
+++ b/constants.py
@@ -77,6 +77,9 @@ class Constants(object):
CLICK_TO_UPDATE_STR = "Click to update"
SIGIDWIKI = "https://www.sigidwiki.com/wiki/Signal_Identification_Guide"
ADD_SIGNAL_LINK = "https://www.sigidwiki.com/index.php/Special:FormEdit/Signal/?preload=Signal_Identification_Wiki:Signal_form_preload_text"
+ FORUM_LINK = "https://aresvalley.com/community/"
+ ARESVALLEY_LINK = "https://aresvalley.com/"
+ RTL_SDL_LINK = "https://www.rtl-sdr.com/"
UPDATING_STR = "Updating..."
ACF_DOCS = "https://aresvalley.com/documentation/"
FORECAST_XRAY = "https://services.swpc.noaa.gov/text/goes-xray-flux-primary.txt"