File tree Expand file tree Collapse file tree 7 files changed +77
-6
lines changed
administrator/sql/updates Expand file tree Collapse file tree 7 files changed +77
-6
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * @package Joomla Easy Custom Script (jecs)
3
+ * @version 1.x.y Free
4
+ *
5
+ * @author Massimo Di Primio <info@diprimio.com>
6
+ * @link https://www.diprimio.com
7
+ * @copyright Copyright© 2017 Massimo Di Primio All Rights Reserved
8
+ * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
9
+ *
10
+ * ----------------------------------------------------------------------------
11
+ *
12
+ **
13
+
14
+ CHANELOG
15
+
16
+ v-1.0.2
17
+ * Fix error: 'table column script_in-line too short' due to wrong column type `#__jecs_rules`.`script_inline`. Changed from "varchar(1024)" to "TEXT"
18
+ * Fix error: Wrong Sql update definition in manifest file, for automatic update of Jecs database tables.
19
+
20
+ v-1.0.1
21
+ * Fixed some language files typo.
22
+
23
+ v-1.0.0
24
+ * First version of the package released in the public domain.
Original file line number Diff line number Diff line change
1
+ < html > < body > </ body > </ html >
Original file line number Diff line number Diff line change 4
4
*
5
5
* @author Massimo Di Primio <info@diprimio.com>
6
6
* @link https://www.diprimio.com
7
- * @copyright Copyright © 2017 Massimo Di Primio All Rights Reserved
7
+ * @copyright Copyright© 2017 Massimo Di Primio All Rights Reserved
8
8
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
9
9
*
10
10
* ----------------------------------------------------------------------------
Original file line number Diff line number Diff line change
1
+ /* *
2
+ * @package Joomla Easy Custom Script (jecs)
3
+ * @version 1.0.0 Free
4
+ *
5
+ * @author Massimo Di Primio <info@diprimio.com>
6
+ * @link https://www.diprimio.com
7
+ * @copyright Copyright© 2017 Massimo Di Primio All Rights Reserved
8
+ * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
9
+ *
10
+ * ----------------------------------------------------------------------------
11
+ *
12
+ * File containing mysql schema updates for the component.
13
+
14
+ Changelog
15
+
16
+ No database update on this version
17
+ */
Original file line number Diff line number Diff line change
1
+ /* *
2
+ * @package Joomla Easy Custom Script (jecs)
3
+ * @version 1.0.1 Free
4
+ *
5
+ * @author Massimo Di Primio <info@diprimio.com>
6
+ * @link https://www.diprimio.com
7
+ * @copyright Copyright© 2017 Massimo Di Primio All Rights Reserved
8
+ * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
9
+ *
10
+ * ----------------------------------------------------------------------------
11
+ *
12
+ * File containing mysql schema updates for the component.
13
+
14
+ Changelog
15
+
16
+ Fix error: 'table column script_inline too short'.
17
+ */
18
+ ALTER TABLE ` joomladb` .` #__jecs_rules`
19
+ CHANGE COLUMN ` script_inline` ` script_inline` TEXT CHARACTER SET ' utf8mb4' COLLATE ' utf8mb4_unicode_ci' NOT NULL DEFAULT ' ' COMMENT ' content of the inline script' ;
Original file line number Diff line number Diff line change
1
+ < html > < body > </ body > </ html >
Original file line number Diff line number Diff line change 7
7
<author >Massimo Di Primio</author >
8
8
<authorEmail >m.diprimio@outlook.com</authorEmail >
9
9
<authorUrl >https://www.diprimio.com</authorUrl >
10
- <version >1.0.1 </version >
10
+ <version >1.0.2 </version >
11
11
<description >Joomla Extended Custom Script</description >
12
12
13
13
<!-- Runs on install/uninstall/update; New in 2.5 -->
19
19
<!-- <file driver="mysql" charset="utf8">sql/update.mysql.utf8.sql</file>-->
20
20
</sql >
21
21
</install >
22
- <update > <!-- Runs on update -->
22
+
23
+ <update >
24
+ <schemas >
25
+ <schemapath type =" mysql" >sql/updates/mysql</schemapath >
26
+ </schemas >
27
+ </update >
28
+ <!-- Runs on update -->
29
+ <!--
30
+ <update>
23
31
<sql>
24
32
<file driver="mysql" charset="utf8">sql/update.mysql.utf8.sql</file>
25
33
</sql>
26
34
</update>
35
+ -->
36
+
27
37
<uninstall > <!-- Runs on uninstall -->
28
38
<sql >
29
39
<file driver =" mysql" charset =" utf8" >sql/uninstall.mysql.utf8.sql</file >
70
80
<folder >views</folder >
71
81
</files >
72
82
<languages folder =" languages/administrator" >
73
-
74
- <language tag =" en-GB" >en-GB/en-GB.com_jecs.ini</language >
75
- <language tag =" en-GB" >en-GB/en-GB.com_jecs.sys.ini</language >
83
+ <language tag =" en-GB" >en-GB/en-GB.com_jecs.ini</language >
84
+ <language tag =" en-GB" >en-GB/en-GB.com_jecs.sys.ini</language >
76
85
</languages >
77
86
</administration >
78
87
<config >
You can’t perform that action at this time.
0 commit comments