From 8e49dd43c117b8296cfad5a99e0ed55a1655c90d Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Sun, 2 Apr 2023 14:42:58 +0200 Subject: [PATCH] Replace Saucedacity with Tenacity --- modules/Saucedacity.php | 14 -------------- modules/Tenacity.php | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 14 deletions(-) delete mode 100644 modules/Saucedacity.php create mode 100644 modules/Tenacity.php diff --git a/modules/Saucedacity.php b/modules/Saucedacity.php deleted file mode 100644 index fd8ed5e..0000000 --- a/modules/Saucedacity.php +++ /dev/null @@ -1,14 +0,0 @@ -fetch_json('https://api.github.com/repos/saucedacity/saucedacity/releases/latest')) - return $this->parse_json('tag_name'); - return false; - } -} - -?> diff --git a/modules/Tenacity.php b/modules/Tenacity.php new file mode 100644 index 0000000..c9e73b0 --- /dev/null +++ b/modules/Tenacity.php @@ -0,0 +1,14 @@ +fetch_json('https://codeberg.org/api/v1/repos/tenacityteam/tenacity/releases')) + return $this->parse_json('tag_name'); + return false; + } +} + +?>