diff options
author | Victor Kareh <[email protected]> | 2025-06-18 14:12:58 -0400 |
---|---|---|
committer | Luke from DC <[email protected]> | 2025-07-16 17:27:48 +0000 |
commit | d65a0b591a11abc110bc8c0a4562082fe0d82b8c (patch) | |
tree | 3e90e12208959c47725927fefbddf23bc335b448 /Makefile.am | |
parent | e8e8d00cff2ade8e034681b2a3c8f5dd83fbb331 (diff) | |
download | mate-applets-d65a0b591a11abc110bc8c0a4562082fe0d82b8c.tar.bz2 mate-applets-d65a0b591a11abc110bc8c0a4562082fe0d82b8c.tar.xz |
invest: Bring back the invest applet
The original invest applet was dropped in
https://github.com/mate-desktop/mate-applets/commit/41f7b7a2a38ca9f3929fcbd88d228b3815034876
due to a broken API. This brings it back using the modern JSON version
of the Yahoo Finance API, a rewrite from Python to C, and a simplified
interface (i.e. instead of the full portfolio management app,
I simplified it into a stock ticker price tracker).
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 8c7c5b2b..f9ec5a0f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,3 @@ - gtop_applets = multiload netspeed if BUILD_GTOP_APPLETS @@ -28,6 +27,10 @@ if BUILD_TIMERAPPLET timerapplet_SUBDIR = timerapplet endif +if BUILD_INVEST_APPLET +invest_applet_SUBDIR = invest-applet +endif + always_built_SUBDIRS = \ charpick \ drivemount \ @@ -44,6 +47,7 @@ SUBDIRS = \ man \ $(battstat_SUBDIR) \ $(accessx_status_SUBDIR) \ + $(invest_applet_SUBDIR) \ $(cpufreq_SUBDIR) \ $(timerapplet_SUBDIR) @@ -61,6 +65,7 @@ DIST_SUBDIRS = \ timerapplet \ trashapplet \ cpufreq \ + invest-applet \ command \ netspeed |