From 3ef1eabc58b084f04f3b9b940aea3b181b286b9f Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Tue, 12 Oct 2021 17:51:09 +0200 Subject: [PATCH] Add Duplicacy --- modules/Duplicacy.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 modules/Duplicacy.php diff --git a/modules/Duplicacy.php b/modules/Duplicacy.php new file mode 100644 index 0000000..ba2e921 --- /dev/null +++ b/modules/Duplicacy.php @@ -0,0 +1,15 @@ +patch->setBranch('CLI'); + } + function check() : bool { + if ($this->fetch_json('https://api.github.com/repos/gilbertchen/duplicacy/releases/latest')) + return $this->parse_json('tag_name'); + return false; + } +} + +?>