Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
diddipoeler committed Mar 11, 2024
1 parent 88ce344 commit 42b0408
Show file tree
Hide file tree
Showing 9 changed files with 76 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Extensions ?

Änderungen
---------------------
* 11-03-2024: **4.20.00** 2 neue Tabellen
* 08-03-2024: **4.19.00** Teamname historisch
* 20-01-2024: **4.18.00** Anpassungen Joomla 4
* 02-05-2023: **4.17.00** Neue Felder für Einzelsportart Tischtennis
Expand Down
4 changes: 4 additions & 0 deletions admin/sql/install.mysql.utf8.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2282,3 +2282,7 @@ CREATE TABLE IF NOT EXISTS `#__sportsmanagement_log_entries` (
`category` varchar(255) DEFAULT NULL,
KEY `idx_category_date_priority` (`category`,`date`,`priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;




43 changes: 43 additions & 0 deletions admin/sql/updates/mysql/4.20.00.sql
Original file line number Diff line number Diff line change
@@ -1 +1,44 @@
--
-- Tabellenstruktur für Tabelle `#__sportsmanagement_playground_details`
--
CREATE TABLE `#__sportsmanagement_playground_details` (
`id` INT(11) NOT NULL AUTO_INCREMENT ,
`playground_id` int(11) NOT NULL DEFAULT 0,
`date_von` date NOT NULL DEFAULT '0000-00-00',
`date_bis` date NOT NULL DEFAULT '0000-00-00',
`name_visitors` enum('NAME','VISITORS') NOT NULL DEFAULT 'VISITORS',
`notes` varchar(255) DEFAULT NULL,
`max_visitors` int(11) NOT NULL DEFAULT 0,
`picture` varchar(255) DEFAULT NULL,
`ordering` int(11) NOT NULL DEFAULT 0,
`checked_out` int(11) NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(11) DEFAULT NULL,
`published` tinyint(1) NOT NULL DEFAULT 1,
`cr_picture` varchar(255) DEFAULT NULL,
`timestamp_von` bigint(20) NOT NULL DEFAULT 0,
`timestamp_bis` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `history` (`playground_id`,`date_von`,`date_bis`,`name_visitors`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;



--
-- Tabellenstruktur für Tabelle `#__sportsmanagement_club_logos`
--
CREATE TABLE `#__sportsmanagement_club_logos` (
`id` INT(11) NOT NULL AUTO_INCREMENT ,
`club_id` int(11) NOT NULL DEFAULT 0,
`season_id` int(11) NOT NULL DEFAULT 1,
`logo_big` varchar(255) DEFAULT NULL,
`ordering` int(11) NOT NULL DEFAULT 0,
`checked_out` int(11) NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(11) DEFAULT NULL,
`published` tinyint(1) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
UNIQUE KEY `clubseason` (`club_id`,`season_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
4 changes: 2 additions & 2 deletions changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<changelog>
<element>com_sportsmanagement</element>
<type>component</type>
<version>4.17.00</version>
<version>4.20.00</version>
<security>
<item><![CDATA[<p>No security issues.</p>]]></item>
</security>
Expand All @@ -46,7 +46,7 @@
</language>
<addition>
<item>JComments für Joomla 4</item>
<item>Neue Felder für Tischtennis</item>
<item>Neue Tabelle für Stadien und Vereine</item>
</addition>
<change>
<item>No change</item>
Expand Down
2 changes: 1 addition & 1 deletion list.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<extensionset name="sportsmanagement" description="JSM">
<extension name="sportsmanagement" element="com_sportsmanagement" type="component" version="4.19.00" detailsurl="https://github.com/diddipoeler/sportsmanagement/master/sportsmanagement-update.xml"/>
<extension name="sportsmanagement" element="com_sportsmanagement" type="component" version="4.20.00" detailsurl="https://github.com/diddipoeler/sportsmanagement/master/sportsmanagement-update.xml"/>
</extensionset>
4 changes: 2 additions & 2 deletions script.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ class com_sportsmanagementInstallerScript
* The release value would ideally be extracted from <version> in the manifest file,
* but at preflight, the manifest file exists only in the uploaded temp folder.
*/
private $release = '4.19.00';
private $old_release = '4.18.00';
private $release = '4.20.00';
private $old_release = '4.19.00';

// $language_update = '';

Expand Down
20 changes: 20 additions & 0 deletions sportsmanagement-update.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2421,6 +2421,26 @@
</update>


<update>
<name>Sports-Management</name>
<description>Sports-Management Component</description>
<element>com_sportsmanagement</element>
<type>component</type>
<version>4.20.00</version>
<infourl title="Sports-Management URL">http://fussballineuropa.de</infourl>
<downloads>
<downloadurl type="full" format="zip">https://github.com/diddipoeler/sportsmanagement/archive/master.zip</downloadurl>
</downloads>
<tags>
<tag>some-tag</tag>
</tags>
<maintainer>Sports-Management Inc.</maintainer>
<maintainerurl>http://fussballineuropa.de</maintainerurl>
<section>some-section</section>
<targetplatform name="joomla" version=".*" />
</update>





Expand Down
2 changes: 1 addition & 1 deletion sportsmanagement.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<copyright>Copyright Info</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<!-- The version string is recorded in the components table -->
<version>4.19.00</version>
<version>4.20.00</version>
<!-- The description is optional and defaults to the name -->
<description>COM_SPORTSMANAGEMENT_DESCRIPTION</description>

Expand Down
4 changes: 2 additions & 2 deletions update-server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<description>Sports-Management Component</description>
<element>com_sportsmanagement</element>
<type>component</type>
<version>4.19.00</version>
<version>4.20.00</version>
<infourl title="Sports-Management URL">http://fussballineuropa.de</infourl>
<downloads>
<downloadurl type="full" format="zip">https://github.com/diddipoeler/sportsmanagement/archive/4.19.00.zip</downloadurl>
<downloadurl type="full" format="zip">https://github.com/diddipoeler/sportsmanagement/archive/4.20.00.zip</downloadurl>
</downloads>
<tags>
<tag>some-tag</tag>
Expand Down

0 comments on commit 42b0408

Please sign in to comment.