Skip to content

Commit

Permalink
Merge Release 1.1.0 into release-1.1.1 (#140)
Browse files Browse the repository at this point in the history
* folder structure changed: moved pligins to tjreports folder

* Issue #138 fix: Maintainance: move the plugins folder under the tjreports(src) folder

* Issue #139 fix:Install the indexer table from plugin

* Update indexer.php
  • Loading branch information
manojLondhe authored Jul 12, 2019
1 parent d780671 commit edf19e5
Show file tree
Hide file tree
Showing 24 changed files with 32 additions and 16 deletions.
8 changes: 4 additions & 4 deletions build/bump.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ function usage($command)
// This file will vary from component to component
$coreXmlFiles = array(
'/tjreports/tjreports.xml',
'/plugins/actionlog/tjreports/tjreports.xml',
'/plugins/content/tjreportsfields/tjreportsfields.xml',
'/plugins/privacy/tjreports/tjreports.xml',
'/plugins/user/tjreportsindexer/tjreportsindexer.xml'
'/tjreports/plugins/actionlog/tjreports/tjreports.xml',
'/tjreports/plugins/content/tjreportsfields/tjreportsfields.xml',
'/tjreports/plugins/privacy/tjreports/tjreports.xml',
'/tjreports/plugins/user/tjreportsindexer/tjreportsindexer.xml'
);

$antJobFile = '/build.xml';
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<extension version="3.9" type="plugin" group="actionlog" method="upgrade">
<name>plg_actionlog_tjreports</name>
<author>Techjoomla</author>
<creationDate>24th Jun 2019</creationDate>
<creationDate>11th Jul 2019</creationDate>
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright>
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
<authorEmail>[email protected]</authorEmail>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<name>plg_content_tjreportsfields</name>
<description>PLG_CONTENT_TJREPORTSFIELDS_XML_DESCRIPTION</description>
<author>Techjoomla</author>
<authorEmail>contact@techjoomla.com</authorEmail>
<authorEmail>extensions@techjoomla.com</authorEmail>
<authorUrl>https://techjoomla.com</authorUrl>
<creationDate>24th May 2019</creationDate>
<copyright>Copyright (C) 2009 - 2019 Techjoomla. All rights reserved.</copyright>
<creationDate>11th Jul 2019</creationDate>
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright>
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
<version>1.0.0</version>
<version>1.1.0</version>

<files>
<filename plugin="tjreportsfields">tjreportsfields.php</filename>
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<extension version="3.4" type="plugin" group="privacy" method="upgrade">
<name>plg_privacy_tjreports</name>
<version>1.1.0</version>
<creationDate>24th Jun 2019</creationDate>
<creationDate>11th Jul 2019</creationDate>
<author>Techjoomla</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>https://techjoomla.com</authorUrl>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
CREATE TABLE IF NOT EXISTS `#__tjreports_com_users_user` (
`record_id` int(11) NOT NULL
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
CREATE TABLE IF NOT EXISTS `#__tjreports_com_users_user` (
`record_id` int(11) NOT NULL,
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,26 @@
<name>plg_user_tjreportsindexer</name>
<description>PLG_USER_TJREPORTSINDEXER_XML_DESCRIPTION</description>
<author>Techjoomla</author>
<authorEmail>contact@techjoomla.com</authorEmail>
<authorEmail>extensions@techjoomla.com</authorEmail>
<authorUrl>https://techjoomla.com</authorUrl>
<creationDate>24th May 2019</creationDate>
<copyright>Copyright (C) 2009 - 2019 Techjoomla. All rights reserved.</copyright>
<creationDate>11th Jul 2019</creationDate>
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright>
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
<version>1.0.0</version>

<version>1.1.0</version>
<install>
<sql>
<file driver="mysql" charset="utf8">sql/tjreportsindexer.install.sql</file>
</sql>
</install>
<update>
<schemas>
<schemapath type="mysql">sql/updates/mysql</schemapath>
</schemas>
</update>
<files>
<filename plugin="tjreportsindexer">tjreportsindexer.php</filename>
<filename>index.html</filename>
<folder>sql</folder>
</files>

<languages folder="language">
Expand Down
2 changes: 1 addition & 1 deletion tjreports/tjreports.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<authorUrl>https://techjoomla.com</authorUrl>
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright>
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
<creationDate>24th Jun 2019</creationDate>
<creationDate>11th Jul 2019</creationDate>
<version>1.1.0</version>
<description>This component is used to access all the report at single place.</description>
<install>
Expand Down

0 comments on commit edf19e5

Please sign in to comment.