diff --git a/.htaccess b/.htaccess index 3857687..9b5bbd1 100644 --- a/.htaccess +++ b/.htaccess @@ -1,5 +1,5 @@ # micro-MVC :: HTACCESS configuration file -# Copyright (C) 2016 - 2023 +# Copyright (C) 2016 - 2024 # Open Software License (OSL 3.0) Options All -Indexes diff --git a/README.md b/README.md index fd69b68..60289c9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![alt tag](https://github.com/g0d/micro-MVC/blob/master/site/pix/micro_mvc.png) -# micro-MVC (4.2.5) +# micro-MVC (4.2.6) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/889562a17e174c438fd56d35780822b0)](https://app.codacy.com/gh/g0d/micro-MVC/dashboard) @@ -29,7 +29,7 @@ You may test micro-MVC [here](https://micro-mvc.co/). Enjoy! George Delaportas (G0D) -Copyright (C) 2015 - 2023 micro-MVC +Copyright (C) 2015 - 2024 micro-MVC Open Software License (OSL 3.0) Supported by [PROBOTEK](https://probotek.eu/) Audited for web security & certified by [OCTAGON](https://octagonsec.gr/) diff --git a/framework/config/misc/ext_autoload.json b/framework/config/misc/ext_autoload.json index a66713d..dc86099 100644 --- a/framework/config/misc/ext_autoload.json +++ b/framework/config/misc/ext_autoload.json @@ -1,4 +1,4 @@ { - "js" : ["vulcan", "jap", "yoda", "bull", "taurus", "sensei", "ajax_factory", "content_fetcher", "ultron"], + "js" : ["vulcan", "pythia", "jap", "yoda", "bull", "taurus", "sensei", "ajax_factory", "content_fetcher", "ultron"], "php" : ["splash"] } \ No newline at end of file diff --git a/framework/extensions/js/core/msgbox/msgbox.css b/framework/extensions/js/core/msgbox/msgbox.css index 7ad0f35..119b8e8 100644 --- a/framework/extensions/js/core/msgbox/msgbox.css +++ b/framework/extensions/js/core/msgbox/msgbox.css @@ -46,7 +46,7 @@ #msgbox_title { text-align: center; - background-color: #4d94b3; + background-color: #ff8d06; border-radius: 6px; width: 100%; margin-left: auto; @@ -57,7 +57,7 @@ #msgbox_content { - text-align: justify; + text-align: center; min-height: 100px; margin-bottom: 10px; } @@ -67,7 +67,7 @@ color: #d8d8d8; background-color: #45454a; text-align: center; - border: solid 1px #479e44; + border: solid 1px #9e4444; border-radius: 6px; cursor: pointer; width: 24%; diff --git a/framework/extensions/js/user/armadillo/armadillo.js b/framework/extensions/js/user/armadillo/armadillo.js index 5dc517a..a06a547 100644 --- a/framework/extensions/js/user/armadillo/armadillo.js +++ b/framework/extensions/js/user/armadillo/armadillo.js @@ -1,12 +1,12 @@ /* Armadillo (JSON DB over the browser) - File: armadillo.js (Version: 1.1) + File: armadillo.js (Version: 1.2) Description: This file contains the Armadillo extension. Dependencies: Vulcan, Pythia and Sensei. Coded by George Delaportas (G0D) - Copyright (C) 2017 - 2022 + Copyright (C) 2017 - 2024 Open Software License (OSL 3.0) */ @@ -63,7 +63,7 @@ function armadillo() for (__this_name in db_array) { - if (__this_name == name) + if (__this_name === name) return true; } @@ -144,7 +144,7 @@ function armadillo() for (__index = 0; __index < __records_length; __index++) { - if (__this_db[__index].id == values[0]) + if (__this_db[__index].id === values[0]) return exec_code.call(this, [__index, __this_db, values[1]]); } diff --git a/framework/extensions/js/user/workbox/workbox.css b/framework/extensions/js/user/workbox/workbox.css index abe4aec..354843f 100644 --- a/framework/extensions/js/user/workbox/workbox.css +++ b/framework/extensions/js/user/workbox/workbox.css @@ -18,8 +18,9 @@ { text-align: center; color: #FFFFFF; - background-color: #3eb5d7; + background-color: #ff8d06; width: 100%; + border-radius: 6px; margin-left: auto; margin-right: auto; margin-bottom: 10px; @@ -42,7 +43,8 @@ color: #d8d8d8; background-color: #3e3737; text-align: center; - border: solid 1px #E06297; + border: solid 1px #9e4444; + border-radius: 6px; cursor: pointer; width: 20%; margin-left: auto; @@ -78,6 +80,7 @@ float: none; color: #FFFFFF; background-color: #413F44; + border-radius: 6px; width: 520px; height: 460px; margin-left: auto; diff --git a/framework/misc/dispatchers/gates/auth.php b/framework/misc/dispatchers/gates/auth.php index 26c7b70..67b321c 100644 --- a/framework/misc/dispatchers/gates/auth.php +++ b/framework/misc/dispatchers/gates/auth.php @@ -1,6 +1,6 @@