diff --git a/extensions.json b/extensions.json index 3e14a0f..f2eb44a 100644 --- a/extensions.json +++ b/extensions.json @@ -4,7 +4,7 @@ { "name": "Custom CSS", "description": "A FreshRSS extension which give ability to create user-specific CSS rules to apply in addition of the actual theme", - "version": 0.2, + "version": 0.3, "author": "Marien Fressinaud", "url": "https://github.com/FreshRSS/Extensions", "type": "gh-subdirectory" @@ -12,7 +12,7 @@ { "name": "Custom JS", "description": "A FreshRSS extension which give ability to create user-specific Javascript rules to apply in addition of the actual theme", - "version": 0.2, + "version": 0.3, "author": "Frans de Jonge", "url": "https://github.com/FreshRSS/Extensions", "type": "gh-subdirectory" @@ -20,7 +20,7 @@ { "name": "Image Proxy", "description": "No insecure content warnings or disappearing images on https sites", - "version": 0.4, + "version": 0.6, "author": "Frans de Jonge", "url": "https://github.com/FreshRSS/Extensions", "type": "gh-subdirectory" @@ -28,7 +28,7 @@ { "name": "Sticky Feeds", "description": "Set the feed aside in the main stream following the window scroll", - "version": 0.1, + "version": 0.2, "author": "Marien Fressinaud", "url": "https://github.com/FreshRSS/Extensions", "type": "gh-subdirectory" @@ -68,9 +68,9 @@ { "name": "Keep Folder State", "description": "Stores the state of the folders locally and expand them automatically if necessary", - "version": 0.1, + "version": 0.2, "author": "Marco Heizmann", - "url": "https://github.com/oyox/FreshRSS-extensions", + "url": "https://github.com/FreshRSS/Extensions", "type": "gh-subdirectory" }, { @@ -116,9 +116,9 @@ { "name": "Reading Time", "description": "Add a reading time estimation for each article", - "version": 1.0, + "version": 1.3, "author": "Lapineige", - "url": "https://framagit.org/Lapineige/FreshRSS_Extension-ReadingTime/", + "url": "https://github.com/FreshRSS/Extensions", "type": "gh-subdirectory" }, { @@ -156,7 +156,7 @@ { "name": "Share By Email", "description": "Improve the sharing by email system.", - "version": 0.1, + "version": 0.2, "author": "Marien Fressinaud", "url": "https://github.com/FreshRSS/Extensions", "type": "gh-subdirectory" @@ -188,7 +188,7 @@ { "name": "Quick Collapse", "description": "Quickly change from folded to unfolded articles", - "version": 0.1, + "version": 0.2, "author": "romibi and Marien Fressinaud", "url": "https://github.com/FreshRSS/Extensions", "type": "gh-subdirectory" @@ -208,6 +208,22 @@ "author": "Kapdap", "url": "https://github.com/Kapdap/freshrss-extensions", "type": "gh-subdirectory" + }, + { + "name": "TinyTinyRSS API", + "description": "Provides an API compliant with TinyTinyRSS applications.", + "version": 0.2, + "author": "Marien Fressinaud", + "url": "https://github.com/FreshRSS/Extensions", + "type": "gh-subdirectory" + }, + { + "name": "Title-Wrap", + "description": "Applies a line-wrap to long article titles, as opposed to truncating the title when it overflows its display area.", + "version": 0.2, + "author": "Frans de Jonge, Joris Kinable", + "url": "https://github.com/FreshRSS/Extensions", + "type": "gh-subdirectory" } ] } diff --git a/xExtension-CustomCSS/extension.php b/xExtension-CustomCSS/extension.php index 6860e3d..3817f09 100644 --- a/xExtension-CustomCSS/extension.php +++ b/xExtension-CustomCSS/extension.php @@ -1,6 +1,14 @@ registerTranslates(); diff --git a/xExtension-CustomCSS/metadata.json b/xExtension-CustomCSS/metadata.json index 84a79d5..5030c54 100644 --- a/xExtension-CustomCSS/metadata.json +++ b/xExtension-CustomCSS/metadata.json @@ -2,7 +2,7 @@ "name": "Custom CSS", "author": "Marien Fressinaud", "description": "Give possibility to overwrite the CSS with a user-specific rules.", - "version": 0.2, + "version": 0.3, "entrypoint": "CustomCSS", "type": "user" } diff --git a/xExtension-CustomJS/extension.php b/xExtension-CustomJS/extension.php index db76899..8c62f62 100644 --- a/xExtension-CustomJS/extension.php +++ b/xExtension-CustomJS/extension.php @@ -1,6 +1,14 @@ registerTranslates(); diff --git a/xExtension-CustomJS/metadata.json b/xExtension-CustomJS/metadata.json index ef5ea0f..90e5311 100644 --- a/xExtension-CustomJS/metadata.json +++ b/xExtension-CustomJS/metadata.json @@ -2,7 +2,7 @@ "name": "Custom JS", "author": "₣rans de Jonge", "description": "Apply custom JS.", - "version": 0.2, + "version": 0.3, "entrypoint": "CustomJS", "type": "user" } diff --git a/xExtension-ImageProxy/extension.php b/xExtension-ImageProxy/extension.php index 2e9e3c9..bad4a48 100644 --- a/xExtension-ImageProxy/extension.php +++ b/xExtension-ImageProxy/extension.php @@ -9,6 +9,14 @@ class ImageProxyExtension extends Minz_Extension { const SCHEME_INCLUDE = ''; const URL_ENCODE = '1'; + public function install() { + return true; + } + + public function uninstall() { + return true; + } + public function init() { $this->registerHook('entry_before_display', array('ImageProxyExtension', 'setImageProxyHook')); diff --git a/xExtension-ImageProxy/metadata.json b/xExtension-ImageProxy/metadata.json index 0eb908a..24a1f46 100644 --- a/xExtension-ImageProxy/metadata.json +++ b/xExtension-ImageProxy/metadata.json @@ -2,7 +2,7 @@ "name": "Image Proxy", "author": "Frans de Jonge", "description": "No insecure content warnings or disappearing images.", - "version": 0.5, + "version": 0.6, "entrypoint": "ImageProxy", "type": "user" } diff --git a/xExtension-KeepFolderState/extension.php b/xExtension-KeepFolderState/extension.php index ec56d7a..0746183 100644 --- a/xExtension-KeepFolderState/extension.php +++ b/xExtension-KeepFolderState/extension.php @@ -1,6 +1,16 @@ getFileUrl('jquerymin.js', 'js'),'','',''); diff --git a/xExtension-KeepFolderState/metadata.json b/xExtension-KeepFolderState/metadata.json index c3acb83..399c562 100644 --- a/xExtension-KeepFolderState/metadata.json +++ b/xExtension-KeepFolderState/metadata.json @@ -2,7 +2,7 @@ "name": "Keep Folder State", "author": "Marco Heizmann", "description": "Stores the state of the folders locally and expand them automatically if necessary.", - "version": 0.1, + "version": 0.2, "entrypoint": "KeepFolderState", "type": "user" } \ No newline at end of file diff --git a/xExtension-QuickCollapse/extension.php b/xExtension-QuickCollapse/extension.php index 2b4531f..51f7a12 100644 --- a/xExtension-QuickCollapse/extension.php +++ b/xExtension-QuickCollapse/extension.php @@ -1,6 +1,17 @@ registerTranslates(); $this->registerViews(); diff --git a/xExtension-QuickCollapse/metadata.json b/xExtension-QuickCollapse/metadata.json index 03cfd01..87b6765 100644 --- a/xExtension-QuickCollapse/metadata.json +++ b/xExtension-QuickCollapse/metadata.json @@ -2,7 +2,7 @@ "name": "Quick Collapse", "author": "romibi and Marien Fressinaud", "description": "Quickly change from folded to unfolded articles", - "version": 0.1, + "version": 0.2, "entrypoint": "QuickCollapse", "type": "user" } diff --git a/xExtension-ReadingTime/extension.php b/xExtension-ReadingTime/extension.php index b8fbf4c..1fdbb5f 100644 --- a/xExtension-ReadingTime/extension.php +++ b/xExtension-ReadingTime/extension.php @@ -1,5 +1,16 @@ getFileUrl('readingtime.js', 'js')); } diff --git a/xExtension-ReadingTime/metadata.json b/xExtension-ReadingTime/metadata.json index 50facaf..f475a48 100644 --- a/xExtension-ReadingTime/metadata.json +++ b/xExtension-ReadingTime/metadata.json @@ -2,7 +2,7 @@ "name": "ReadingTime", "author": "Lapineige", "description": "Add a reading time estimation next to each article title", - "version": 1.2, + "version": 1.3, "entrypoint": "ReadingTime", "type": "user" } diff --git a/xExtension-ShareByEmail/extension.php b/xExtension-ShareByEmail/extension.php index 5000da6..e25727a 100644 --- a/xExtension-ShareByEmail/extension.php +++ b/xExtension-ShareByEmail/extension.php @@ -1,6 +1,17 @@ registerTranslates(); diff --git a/xExtension-ShareByEmail/metadata.json b/xExtension-ShareByEmail/metadata.json index 0fadb36..02825ec 100644 --- a/xExtension-ShareByEmail/metadata.json +++ b/xExtension-ShareByEmail/metadata.json @@ -2,7 +2,7 @@ "name": "Share By Email", "author": "Marien Fressinaud", "description": "Improve the sharing by email system.", - "version": 0.1, + "version": 0.2, "entrypoint": "ShareByEmail", "type": "user" } diff --git a/xExtension-StickyFeeds/extension.php b/xExtension-StickyFeeds/extension.php index 862d7e8..3fb9b4f 100644 --- a/xExtension-StickyFeeds/extension.php +++ b/xExtension-StickyFeeds/extension.php @@ -1,6 +1,17 @@ getFileUrl('style.css', 'css')); Minz_View::appendScript($this->getFileUrl('script.js', 'js')); diff --git a/xExtension-StickyFeeds/metadata.json b/xExtension-StickyFeeds/metadata.json index 6f75c7b..a361260 100644 --- a/xExtension-StickyFeeds/metadata.json +++ b/xExtension-StickyFeeds/metadata.json @@ -2,7 +2,7 @@ "name": "Sticky Feeds", "author": "Marien Fressinaud", "description": "Set the feed aside in the main stream following the window scroll.", - "version": 0.1, + "version": 0.2, "entrypoint": "StickyFeeds", "type": "user" } diff --git a/xExtension-TTRSS_API/extension.php b/xExtension-TTRSS_API/extension.php index 8533149..f5ad7ba 100644 --- a/xExtension-TTRSS_API/extension.php +++ b/xExtension-TTRSS_API/extension.php @@ -1,6 +1,9 @@ registerHook('post_update', array($this, 'postUpdateHook')); diff --git a/xExtension-TTRSS_API/metadata.json b/xExtension-TTRSS_API/metadata.json index 25c167e..5640c49 100644 --- a/xExtension-TTRSS_API/metadata.json +++ b/xExtension-TTRSS_API/metadata.json @@ -2,7 +2,7 @@ "name": "TinyTinyRSS API", "author": "Marien Fressinaud", "description": "Provides an API compliant with TinyTinyRSS applications.", - "version": 0.1, + "version": 0.2, "entrypoint": "TTRSS_API", "type": "system" } diff --git a/xExtension-TitleWrap/extension.php b/xExtension-TitleWrap/extension.php index 36a028e..db47d9c 100644 --- a/xExtension-TitleWrap/extension.php +++ b/xExtension-TitleWrap/extension.php @@ -1,7 +1,18 @@ getFileUrl('title_wrap.css', 'css')); + Minz_View::appendStyle($this->getFileUrl('title_wrap.css', 'css')); } } diff --git a/xExtension-TitleWrap/metadata.json b/xExtension-TitleWrap/metadata.json index ab5c4c2..fd85a15 100644 --- a/xExtension-TitleWrap/metadata.json +++ b/xExtension-TitleWrap/metadata.json @@ -1,8 +1,8 @@ { "name": "Title-Wrap", - "author": "₣rans de Jonge, Joris Kinable", + "author": "Frans de Jonge, Joris Kinable", "description": "Applies a line-wrap to long article titles, as opposed to truncating the title when it overflows its display area.", - "version": 0.1, + "version": 0.2, "entrypoint": "TitleWrap", "type": "user" }