Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/activitystream.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<copyright>Copyright(C)2012-16 TechJoomla</copyright>
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
<!-- The version string is recorded in the components table -->
<version>0.0.1</version>
<version>1.0.0</version>
<!-- The description is optional and defaults to the name -->
<description>COM_ACTIVITYSTREAM_DESCRIPTION</description>
<scriptfile>script.activitystream.php</scriptfile>
Expand Down
1 change: 1 addition & 0 deletions src/admin/sql/install.mysql.utf8.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ CREATE TABLE IF NOT EXISTS `#__tj_activities` (
`target` text(900),
`target_id` text(900),
`type` text(900),
`client` varchar(20),
`template` text(900),
`formatted_text` text(900),
`access` tinyint(2) DEFAULT 1,
Expand Down
1 change: 1 addition & 0 deletions src/admin/sql/updates/mysql/1.0.0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE `#__tj_activities` add column `client` varchar(20) DEFAULT NULL;