diff --git a/VERSION b/VERSION
index 20a1df5..dd2cde1 100644
--- a/VERSION
+++ b/VERSION
@@ -1,5 +1,10 @@
-v0.2.3
+v0.2.4
Changelog
- * Bugfix for automatic actions typo error in v0.2.2 (@alex3305)
+ * Bugfix for attachments downloading with hash instead of file name (#41).
+ * Bugfix for item positions (#37).
+ * noty errors are ignored now.
+ * Favicons added.
+ * API Error now returns exception message in JSON data.
+
diff --git a/api/api.php b/api/api.php
index 5a3a27b..f2efbf1 100644
--- a/api/api.php
+++ b/api/api.php
@@ -17,9 +17,14 @@ require_once('helpers.php'); // Must come after $jsonResponse exists.
// Catch Exception if connection to DB failed
function exceptionHandler($exception) {
+ global $jsonResponse;
+
header('Content-Type: application/json');
http_response_code(503);
- echo '{"message": "API Error."}';
+
+ $jsonResponse->message = 'API Error.';
+ $jsonResponse->data = $exception->getMessage();
+ echo $jsonResponse->asJson();
};
set_exception_handler('exceptionHandler');
diff --git a/css/styles.css b/css/styles.css
index 45cdb26..b6ce208 100644
--- a/css/styles.css
+++ b/css/styles.css
@@ -311,8 +311,8 @@ a:hover.fa {
border-radius: 5px;
margin: 5px;
}
-a > span.fa-plus {
- margin-left: 5px;
+span.fa {
+ margin-right: 5px;
}
.lane-placeholder {
width: 100%;
diff --git a/favicons/apple-touch-icon-114x114.png b/favicons/apple-touch-icon-114x114.png
new file mode 100755
index 0000000..e0bb42f
Binary files /dev/null and b/favicons/apple-touch-icon-114x114.png differ
diff --git a/favicons/apple-touch-icon-120x120.png b/favicons/apple-touch-icon-120x120.png
new file mode 100755
index 0000000..dfa28a1
Binary files /dev/null and b/favicons/apple-touch-icon-120x120.png differ
diff --git a/favicons/apple-touch-icon-144x144.png b/favicons/apple-touch-icon-144x144.png
new file mode 100755
index 0000000..c9543af
Binary files /dev/null and b/favicons/apple-touch-icon-144x144.png differ
diff --git a/favicons/apple-touch-icon-152x152.png b/favicons/apple-touch-icon-152x152.png
new file mode 100755
index 0000000..b5a7827
Binary files /dev/null and b/favicons/apple-touch-icon-152x152.png differ
diff --git a/favicons/apple-touch-icon-180x180.png b/favicons/apple-touch-icon-180x180.png
new file mode 100755
index 0000000..65807a9
Binary files /dev/null and b/favicons/apple-touch-icon-180x180.png differ
diff --git a/favicons/apple-touch-icon-57x57.png b/favicons/apple-touch-icon-57x57.png
new file mode 100755
index 0000000..738b2da
Binary files /dev/null and b/favicons/apple-touch-icon-57x57.png differ
diff --git a/favicons/apple-touch-icon-60x60.png b/favicons/apple-touch-icon-60x60.png
new file mode 100755
index 0000000..d6581f4
Binary files /dev/null and b/favicons/apple-touch-icon-60x60.png differ
diff --git a/favicons/apple-touch-icon-72x72.png b/favicons/apple-touch-icon-72x72.png
new file mode 100755
index 0000000..95dc147
Binary files /dev/null and b/favicons/apple-touch-icon-72x72.png differ
diff --git a/favicons/apple-touch-icon-76x76.png b/favicons/apple-touch-icon-76x76.png
new file mode 100755
index 0000000..fd3cd93
Binary files /dev/null and b/favicons/apple-touch-icon-76x76.png differ
diff --git a/favicons/apple-touch-icon-precomposed.png b/favicons/apple-touch-icon-precomposed.png
new file mode 100755
index 0000000..1efb6c4
Binary files /dev/null and b/favicons/apple-touch-icon-precomposed.png differ
diff --git a/favicons/apple-touch-icon.png b/favicons/apple-touch-icon.png
new file mode 100755
index 0000000..65807a9
Binary files /dev/null and b/favicons/apple-touch-icon.png differ
diff --git a/favicons/browserconfig.xml b/favicons/browserconfig.xml
new file mode 100755
index 0000000..fce999d
--- /dev/null
+++ b/favicons/browserconfig.xml
@@ -0,0 +1,12 @@
+
+
Add Comment