From 1c53591a43cfea0c7c7ca0ed4cd223cef842eaf3 Mon Sep 17 00:00:00 2001 From: VirtualTam Date: Fri, 18 Jan 2019 22:24:58 +0100 Subject: doc: add phpDocumentor configuration See: - https://phpdoc.org/ - https://docs.phpdoc.org/references/configuration.html - https://github.com/phpDocumentor/phpDocumentor2 Signed-off-by: VirtualTam --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 414ff6d5..ce2ebe28 100644 --- a/.gitignore +++ b/.gitignore @@ -25,12 +25,14 @@ coverage doxygen sandbox phpmd.html +phpdoc.xml # User plugin configuration plugins/*/config.php # HTML documentation doc/html/ +doc/phpdoc/ # 3rd party themes tpl/* -- cgit v1.2.3 From 9eb6055abb2643a9d666b0355cd6d6d67ee4e0ba Mon Sep 17 00:00:00 2001 From: VirtualTam Date: Fri, 18 Jan 2019 22:44:21 +0100 Subject: doc: remove Doxygen configuration Signed-off-by: VirtualTam --- .gitignore | 1 - 1 file changed, 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index ce2ebe28..6208e795 100644 --- a/.gitignore +++ b/.gitignore @@ -22,7 +22,6 @@ inc/languages/*/LC_MESSAGES/shaarli.mo # Development and test resources coverage -doxygen sandbox phpmd.html phpdoc.xml -- cgit v1.2.3 From 5321f704b563df03232e2f8a1d2a26ecb8297428 Mon Sep 17 00:00:00 2001 From: ArthurHoaro Date: Sat, 25 May 2019 16:40:45 +0200 Subject: Daily - display the current day instead of the previous one Also mention if it's today or yesterday for clarity using `dayDesc` variable Fixes #1299 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 6208e795..c54d9b69 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,6 @@ tpl/default/img tpl/vintage/js tpl/vintage/css tpl/vintage/img + +# Documented scripts +generate_templates.php -- cgit v1.2.3 From a5a0c0399bcfea518330c4bad186da77f89ace6e Mon Sep 17 00:00:00 2001 From: ArthurHoaro Date: Mon, 8 Jul 2019 23:10:00 +0200 Subject: WIP - Plugin to override default template colors * Adds a new core plugin to override default template colors * Adds a new hook when plugin settings are saved (`save_plugin_parameters`) * Use CSS native variables for main colors instead of SASS variables * Disable SASS sort order rules due to a bug in the plugin Fixes #1312 --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index c54d9b69..b21d2118 100644 --- a/.gitignore +++ b/.gitignore @@ -28,6 +28,7 @@ phpdoc.xml # User plugin configuration plugins/*/config.php +plugins/default_colors/default_colors.css # HTML documentation doc/html/ -- cgit v1.2.3