Skip to content

Commit 78dbd82

Browse files
authored
Merge Release 1.0.6 into master (#62)
Merge `Release 1.0.6` into `master`
2 parents 11077f4 + fbe9994 commit 78dbd82

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

src/com_tjnotifications/admin/sql/install.mysql.utf8.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ CREATE TABLE IF NOT EXISTS `#__tj_notification_templates` (
3939
`client` varchar(100) NOT NULL,
4040
`key` varchar(100) NOT NULL,
4141
`provider` varchar(100) NOT NULL,
42-
KEY `client1` (`client`,`provider`,`key`),
42+
KEY `client1` (`client`(100),`provider`(50),`key`(100)),
4343
KEY `key` (`key`),
4444
KEY `provider` (`provider`),
4545
CONSTRAINT `#__tj_notification_user_exclusions_ibfk_1` FOREIGN KEY (`provider`) REFERENCES `#__tj_notification_providers` (`provider`)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
----Change table Key;
2+
3+
ALTER TABLE `#__tj_notification_user_exclusions` CHANGE KEY `client1` (`client`(100),`provider`(50),`key`(100));

src/com_tjnotifications/tjnotifications.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<authorUrl>https://techjoomla.com</authorUrl>
77
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright>
88
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
9-
<creationDate>22nd Oct 2019</creationDate>
10-
<version>1.0.5</version>
9+
<creationDate>13th Nov 2019</creationDate>
10+
<version>1.0.6</version>
1111
<install>
1212
<sql>
1313
<file driver="mysql" charset="utf8">sql/install.mysql.utf8.sql</file>

src/plugins/actionlog/tjnotification/tjnotification.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<extension version="3.9" type="plugin" group="actionlog" method="upgrade">
33
<name>plg_actionlog_tjnotification</name>
44
<author>Techjoomla</author>
5-
<creationDate>22nd Oct 2019</creationDate>
5+
<creationDate>13th Nov 2019</creationDate>
66
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright>
77
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
88
<authorEmail>[email protected]</authorEmail>
99
<authorUrl>https://techjoomla.com</authorUrl>
10-
<version>1.0.5</version>
10+
<version>1.0.6</version>
1111
<description>PLG_ACTIONLOG_TJNOTIFICATION_XML_DESCRIPTION</description>
1212
<files>
1313
<filename plugin="tjnotification">tjnotification.php</filename>

src/plugins/privacy/tjnotification/tjnotification.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<extension version="3.9" type="plugin" group="privacy" method="upgrade">
33
<name>plg_privacy_tjnotification</name>
4-
<version>1.0.5</version>
5-
<creationDate>22nd Oct 2019</creationDate>
4+
<version>1.0.6</version>
5+
<creationDate>13th Nov 2019</creationDate>
66
<author>Techjoomla</author>
77
<authorEmail>[email protected]</authorEmail>
88
<authorUrl>https://techjoomla.com</authorUrl>

0 commit comments

Comments
 (0)