From 6ea916607654ac47e1185fd91496b15012be8b7a Mon Sep 17 00:00:00 2001 From: Llewellyn van der Merwe Date: Fri, 15 Jan 2021 09:27:24 +0200 Subject: [PATCH] Fix the site view category query of all categories. Adds another demo website to the readme. --- README.md | 7 ++++--- admin/README.txt | 7 ++++--- script.php | 2 +- sermondistributor.xml | 4 ++-- sermondistributor_update_server.xml | 4 ++-- site/models/categories.php | 4 ++-- 6 files changed, 15 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index f4de4518..6594fe68 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ The best way to see all your options is to install this component on you Joomla ### Example Website, That Has Over 6000 Audio Files [LoudVoice.org](http://www.loudvoice.org) +[TrueChristian.Church](https://truechristian.church/) ### Some Video Demonstrations @@ -36,7 +37,7 @@ due to [Automated Component Builder](https://www.vdm.io/joomla-component-builder > (if creating a folder and file took **5 seconds** and writing one line of code took **10 seconds**, > never making one mistake or taking any coffee break.) -+ *Line count*: **73060** ++ *Line count*: **73062** + *File count*: **460** + *Folder count*: **93** @@ -56,8 +57,8 @@ due to [Automated Component Builder](https://www.vdm.io/joomla-component-builder Project duration: **8.4 weeks** or **1.8 months** -> This **component** was build with a Joomla [Automated Component Builder](https://www.vdm.io/joomla-component-builder). -> Developed by [Llewellyn van der Merwe](mailto:joomla@vdm.io) +> This **component** was build with a Joomla [Automated Component Builder](http://joomlacomponentbuilder.com). +> Developed by [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com) ## Contributors diff --git a/admin/README.txt b/admin/README.txt index f4de4518..6594fe68 100644 --- a/admin/README.txt +++ b/admin/README.txt @@ -11,6 +11,7 @@ The best way to see all your options is to install this component on you Joomla ### Example Website, That Has Over 6000 Audio Files [LoudVoice.org](http://www.loudvoice.org) +[TrueChristian.Church](https://truechristian.church/) ### Some Video Demonstrations @@ -36,7 +37,7 @@ due to [Automated Component Builder](https://www.vdm.io/joomla-component-builder > (if creating a folder and file took **5 seconds** and writing one line of code took **10 seconds**, > never making one mistake or taking any coffee break.) -+ *Line count*: **73060** ++ *Line count*: **73062** + *File count*: **460** + *Folder count*: **93** @@ -56,8 +57,8 @@ due to [Automated Component Builder](https://www.vdm.io/joomla-component-builder Project duration: **8.4 weeks** or **1.8 months** -> This **component** was build with a Joomla [Automated Component Builder](https://www.vdm.io/joomla-component-builder). -> Developed by [Llewellyn van der Merwe](mailto:joomla@vdm.io) +> This **component** was build with a Joomla [Automated Component Builder](http://joomlacomponentbuilder.com). +> Developed by [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com) ## Contributors diff --git a/script.php b/script.php index e5ded53f..548517f7 100644 --- a/script.php +++ b/script.php @@ -1837,7 +1837,7 @@ class com_sermondistributorInstallerScript echo ' -

Upgrade to Version 2.0.4 Was Successful! Let us know if anything is not working as expected.

'; +

Upgrade to Version 2.0.5 Was Successful! Let us know if anything is not working as expected.

'; // Set db if not set already. if (!isset($db)) diff --git a/sermondistributor.xml b/sermondistributor.xml index a30ab6f4..00d1ce09 100644 --- a/sermondistributor.xml +++ b/sermondistributor.xml @@ -7,9 +7,9 @@ https://www.vdm.io/ Copyright (C) 2015. All Rights Reserved GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html - 2.0.4 + 2.0.5 Sermon Distributor (v.2.0.4) +

Sermon Distributor (v.2.0.5)

Distributor is a highly advanced sermon distributor that runs on the [Joomla 3.x](http://www.joomla.org) framework. You can link a shared folder from Dropbox to the component and use Dropbox as your file host, not to mention the advanced auto builder that gives you the ability to simply load sermons to your website by only adding them to Dropbox.

Created by Llewellyn van der Merwe
Development started 22nd October, 2015

diff --git a/sermondistributor_update_server.xml b/sermondistributor_update_server.xml index c0c4324e..9948cbde 100644 --- a/sermondistributor_update_server.xml +++ b/sermondistributor_update_server.xml @@ -55,10 +55,10 @@ A sermon distributor that links to Dropbox. com_sermondistributor component - 2.0.4 + 2.0.5 https://www.vdm.io/ - https://github.com/Llewellynvdm/Joomla-Sermon-Distributor/releases/download/v2.0.4/SD_v2.0.4.zip + https://github.com/Llewellynvdm/Joomla-Sermon-Distributor/releases/download/v2.0.5/SD_v2.0.5.zip stable diff --git a/site/models/categories.php b/site/models/categories.php index 7527af70..5db08399 100644 --- a/site/models/categories.php +++ b/site/models/categories.php @@ -77,8 +77,8 @@ class SermondistributorModelCategories extends JModelList $query->where('a.access IN (' . implode(',', $this->levels) . ')'); // Get where a.published is 1 $query->where('a.published = 1'); - // Get where a.extension is "com_sermondistributor.sermons" - $query->where('a.extension = "com_sermondistributor.sermons"'); + // Get where a.extension is "com_sermondistributor.sermon" + $query->where('a.extension = "com_sermondistributor.sermon"'); $query->order('a.title ASC'); // return the query object