Skip to content

Commit

Permalink
Merge pull request #47 from Gileba/hotfixes
Browse files Browse the repository at this point in the history
Version 0.5.3
  • Loading branch information
Gileba authored Aug 13, 2019
2 parents bf7992a + 4a3dd02 commit d6bfeb6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ deploy:
api_key: $GITHUB_TOKEN
after_deploy:
- curl -T plg_vm_unpurchased/plg_vm_unpurchased_updates.xml -u $FTP_USER:$FTP_PASSWORD $FTP_SERVER
- curl -T plg_vm_unpurchased/plg_vm_unpurchased_upadtes.xml -u $TMP_FTP_USER:$TMP_FTP_PASSWORD $TMP_FTP_SERVER
- curl -T plg_vm_unpurchased/plg_vm_unpurchased_updates.xml -u $TMP_FTP_USER:$TMP_FTP_PASSWORD $TMP_FTP_SERVER
- curl -T plg_vm_unpurchased.zip -u $TMP_FTP_USER:$TMP_FTP_PASSWORD $TMP_FTP_SERVER
10 changes: 5 additions & 5 deletions plg_vm_unpurchased_updates.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<element>unpurchased</element>
<type>plugin</type>
<folder>vmextended</folder>
<version>0.5.2</version>
<infourl title="VirtueMart Unpurchased (Plugin)">https://github.com/Gileba/plg_vm_unpurchased/releases/tag/0.5.2</infourl>
<version>0.5.3</version>
<infourl title="VirtueMart Unpurchased (Plugin)">https://github.com/Gileba/plg_vm_unpurchased/releases/tag/0.5.3</infourl>
<downloads>
<downloadurl type="full" format="zip">https://github.com/Gileba/plg_vm_unpurchased/releases/download/0.5.2/plg_vm_unpurchased.zip</downloadurl>
<downloadurl type="full" format="zip">https://github.com/Gileba/plg_vm_unpurchased/releases/download/0.5.3/plg_vm_unpurchased.zip</downloadurl>
</downloads>
<tags>
<tag>stable</tag>
Expand All @@ -23,8 +23,8 @@
<element>unpurchased</element>
<type>plugin</type>
<folder>vmextended</folder>
<version>0.5.2</version>
<infourl title="VirtueMart Unpurchased (Plugin)">http://github.com/Gileba/plg_vm_unpurchased/releases/tag/0.5.2</infourl>
<version>0.5.3</version>
<infourl title="VirtueMart Unpurchased (Plugin)">http://github.com/Gileba/plg_vm_unpurchased/releases/tag/0.5.3</infourl>
<downloads>
<downloadurl type="full" format="zip">http://updates.gileba.be/plg_vm_unpurchased.zip</downloadurl>
</downloads>
Expand Down
4 changes: 2 additions & 2 deletions src/unpurchased.script.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public function postflight($type, $parent = null)
$db->setQuery("SELECT `id` FROM `#__virtuemart_adminmenuentries` WHERE `view` = 'unpurchased'");
$exists = $db->loadResult();
if (!$exists) {
$q = "INSERT INTO `#__virtuemart_adminmenuentries` "
$q .= "(`module_id`, `name`, `link`, `depends`, `icon_class`, `ordering`, `published`, `tooltip`, `view`, `task`) "
$q = "INSERT INTO `#__virtuemart_adminmenuentries` ";
$q .= "(`module_id`, `name`, `link`, `depends`, `icon_class`, `ordering`, `published`, `tooltip`, `view`, `task`) ";
$q .= " VALUES (2, '" . vmText::_('COM_VIRTUEMART_UNPURCHASED') . "', '', '', 'vmicon vmicon-16-report', 25, 1, '', 'unpurchased', '')";
$db->setQuery($q);
$db->query();
Expand Down
4 changes: 2 additions & 2 deletions src/unpurchased.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8" ?>
<extension version="2.5" type="plugin" group="vmextended" method="upgrade">
<name>VMEXT_UNPURCHASED</name>
<creationDate>2019-08-08</creationDate>
<creationDate>2019-08-12</creationDate>
<author>Gileba</author>
<authorEmail>info@gileba.be</authorEmail>
<authorUrl>http://www.gileba.be/</authorUrl>
<copyright>Copyright (C) 2019 Gijs Lamon. All rights reserved.</copyright>
<license>http://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3</license>
<version>0.5.2</version>
<version>0.5.3</version>
<description>VMEXT_UNPURCHASED_DESC</description>

<files>
Expand Down

0 comments on commit d6bfeb6

Please sign in to comment.