diff --git a/README.md b/README.md
index faab97e..8847974 100755
--- a/README.md
+++ b/README.md
@@ -39,13 +39,17 @@ For finishing it, you have to add a cron in your system for running checks. The
Decompress folder over your installation folder, and run "updater.php",
it will update and say if something goes wrong. Its a good idea to make
-a backup of your sqlite.db3 database.
+a backup of your sqlite.db3 database before updating or data may lost.
## Changelog
### (WIP) Version 0.9.3
--TODO: Cleaner code
+-TODO: New JSON GET/POST check
+
+-Bugfix in cronchk!
+
+-A bit cleaner code
### Version 0.9.2 (Beta)
diff --git a/assets/html/indexpage.twig b/assets/html/indexpage.twig
index 370c3b4..df7c187 100755
--- a/assets/html/indexpage.twig
+++ b/assets/html/indexpage.twig
@@ -30,7 +30,7 @@
{# "Switch" type #}
- {% if check.ID_TC == 1 or check.ID_TC == 2 or check.ID_TC == 4 %} {# Ping, HttpCode, SQL DB #}
+ {% if check.ID_TC != 3 %} {# Every except Visits that is different #}
{% if check.uptime != -1 %}{#Only if records exists#}
diff --git a/assets/html/panel/p_addedit.twig b/assets/html/panel/p_addedit.twig
index 8badfdd..d7a4176 100755
--- a/assets/html/panel/p_addedit.twig
+++ b/assets/html/panel/p_addedit.twig
@@ -21,14 +21,14 @@
action="?page=savenewcheck"
{%endif%}>
- {# Aquí empiezan los campos "opcionales" dependiendo del tipo de check #}
+ {# Aquí empiezan los campos "opcionales" dependiendo del tipo de check (Estos vienen de la tabla, al campo) #}
{# Sacar variables #}
{% if check.ID_TC == 1%}
- {% set t1 = check.URL|split(':') %}
+ {% set t1 = check.url|split(':') %}
{% elseif check.ID_TC == 2%}
- {% set t2_url = check.URL %}
- {% set t2_code = check.TCParam %}
+ {% set t2_url = check.url %}
+ {% set t2_code = check.urlParam %}
{% elseif check.ID_TC == 4%}
- {% set t4_url = check.URL %}
+ {% set t4_url = check.url %}
+ {% elseif check.ID_TC == 5 %}
+ {% set t5_url = check.url %}
+ {% set t5_params = check.urlParam|split('|') %}
+ {% set t5_exceptedRes = check.exceptedRes %}
{% endif %}
{# Trozos de formulario #}
@@ -119,7 +123,36 @@
-
+ {# Tipo 5 - Json API #}
+
|