diff --git a/CHANGELOG.md b/CHANGELOG.md index a6bfe26..310368d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [2.1.3] - Feature Release (2020-04-25) + +### Changed + +* Allow selection of future events including cancelled ones + ## [0.1.0] - Unreleased Initial release diff --git a/Classes/Controller/CoverageController.php b/Classes/Controller/CoverageController.php index 528bc77..30ccae5 100644 --- a/Classes/Controller/CoverageController.php +++ b/Classes/Controller/CoverageController.php @@ -10,7 +10,7 @@ * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * - * (c) 2019 + * © 2020 * ***/ diff --git a/Classes/Controller/EventController.php b/Classes/Controller/EventController.php index cdaaf73..0a51850 100644 --- a/Classes/Controller/EventController.php +++ b/Classes/Controller/EventController.php @@ -15,7 +15,7 @@ * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * - * (c) 2019 + * © 2020 * ***/ diff --git a/Classes/Controller/OrganizationController.php b/Classes/Controller/OrganizationController.php index 5dcefe7..c1b7a47 100644 --- a/Classes/Controller/OrganizationController.php +++ b/Classes/Controller/OrganizationController.php @@ -15,7 +15,7 @@ * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * - * (c) 2019 + * © 2020 * ***/ diff --git a/Classes/Controller/PresentationController.php b/Classes/Controller/PresentationController.php index 28ac97b..8b49368 100644 --- a/Classes/Controller/PresentationController.php +++ b/Classes/Controller/PresentationController.php @@ -12,7 +12,7 @@ * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * - * (c) 2019 + * © 2020 * ***/ diff --git a/Classes/Domain/Model/Coverage.php b/Classes/Domain/Model/Coverage.php index 1dfcd08..970587c 100644 --- a/Classes/Domain/Model/Coverage.php +++ b/Classes/Domain/Model/Coverage.php @@ -9,7 +9,7 @@ * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * - * (c) 2019 + * © 2020 * ***/ diff --git a/Classes/Domain/Model/Event.php b/Classes/Domain/Model/Event.php index b501be5..606f5d9 100644 --- a/Classes/Domain/Model/Event.php +++ b/Classes/Domain/Model/Event.php @@ -13,7 +13,7 @@ * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * - * (c) 2019 + * © 2020 * ***/ diff --git a/Classes/Domain/Model/Note.php b/Classes/Domain/Model/Note.php index 9e35fea..12080ff 100644 --- a/Classes/Domain/Model/Note.php +++ b/Classes/Domain/Model/Note.php @@ -9,7 +9,7 @@ * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * - * (c) 2019 + * © 2020 * ***/ diff --git a/Classes/Domain/Model/Organization.php b/Classes/Domain/Model/Organization.php index a52b96e..a0848cb 100644 --- a/Classes/Domain/Model/Organization.php +++ b/Classes/Domain/Model/Organization.php @@ -13,7 +13,7 @@ * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * - * (c) 2019 + * © 2020 * ***/ diff --git a/Classes/Domain/Model/Page.php b/Classes/Domain/Model/Page.php index 5cd53ec..fbd6b0f 100644 --- a/Classes/Domain/Model/Page.php +++ b/Classes/Domain/Model/Page.php @@ -7,14 +7,14 @@ * @package Tollwerk\Vamoso * @subpackage Tollwerk\TwEvents\Domain\Model * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/Domain/Model/Person.php b/Classes/Domain/Model/Person.php index 11c2b22..9cf8401 100644 --- a/Classes/Domain/Model/Person.php +++ b/Classes/Domain/Model/Person.php @@ -11,7 +11,7 @@ * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * - * (c) 2019 + * © 2020 * ***/ diff --git a/Classes/Domain/Model/Presentation.php b/Classes/Domain/Model/Presentation.php index a12a43f..9ce36d6 100644 --- a/Classes/Domain/Model/Presentation.php +++ b/Classes/Domain/Model/Presentation.php @@ -14,7 +14,7 @@ * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * - * (c) 2019 + * © 2020 * ***/ diff --git a/Classes/Domain/Model/Sponsor.php b/Classes/Domain/Model/Sponsor.php index 205787a..d9e86ad 100644 --- a/Classes/Domain/Model/Sponsor.php +++ b/Classes/Domain/Model/Sponsor.php @@ -10,7 +10,7 @@ * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * - * (c) 2019 + * © 2020 * ***/ diff --git a/Classes/Domain/Model/Traits/SlugTrait.php b/Classes/Domain/Model/Traits/SlugTrait.php index e6ac11e..ab62a48 100644 --- a/Classes/Domain/Model/Traits/SlugTrait.php +++ b/Classes/Domain/Model/Traits/SlugTrait.php @@ -7,14 +7,14 @@ * @package Artefakt\Core * @subpackage TwEvents\Domain\Model\Traits * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal / @jkphl + * Copyright © 2020 Joschi Kuphal / @jkphl * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in @@ -69,4 +69,4 @@ public function setSlug(string $slug): void { $this->slug = $slug; } -} \ No newline at end of file +} diff --git a/Classes/Domain/Repository/AbstractRepository.php b/Classes/Domain/Repository/AbstractRepository.php index b63ae19..85d0efd 100644 --- a/Classes/Domain/Repository/AbstractRepository.php +++ b/Classes/Domain/Repository/AbstractRepository.php @@ -7,14 +7,14 @@ * @package Tollwerk\TwEvents * @subpackage Tollwerk\TwEvents\Domain\Repository * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/Domain/Repository/CoverageRepository.php b/Classes/Domain/Repository/CoverageRepository.php index 213614a..4e602dc 100644 --- a/Classes/Domain/Repository/CoverageRepository.php +++ b/Classes/Domain/Repository/CoverageRepository.php @@ -7,14 +7,14 @@ * @package Tollwerk\TwEvents * @subpackage Tollwerk\TwEvents\Domain\Repository * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/Domain/Repository/EventRepository.php b/Classes/Domain/Repository/EventRepository.php index 17bab83..4198ab4 100644 --- a/Classes/Domain/Repository/EventRepository.php +++ b/Classes/Domain/Repository/EventRepository.php @@ -7,14 +7,14 @@ * @package Tollwerk\TwEvents * @subpackage Tollwerk\TwEvents\Domain\Repository * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/Domain/Repository/NoteRepository.php b/Classes/Domain/Repository/NoteRepository.php index 05ee2f9..63596c8 100644 --- a/Classes/Domain/Repository/NoteRepository.php +++ b/Classes/Domain/Repository/NoteRepository.php @@ -7,14 +7,14 @@ * @package Tollwerk\TwEvents * @subpackage Tollwerk\TwEvents\Domain\Repository * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/Domain/Repository/OrganizationRepository.php b/Classes/Domain/Repository/OrganizationRepository.php index 6f2667c..5d6a2e3 100644 --- a/Classes/Domain/Repository/OrganizationRepository.php +++ b/Classes/Domain/Repository/OrganizationRepository.php @@ -7,14 +7,14 @@ * @package Tollwerk\TwEvents * @subpackage Tollwerk\TwEvents\Domain\Repository * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/Domain/Repository/PageRepository.php b/Classes/Domain/Repository/PageRepository.php index 4c665ad..78caddd 100644 --- a/Classes/Domain/Repository/PageRepository.php +++ b/Classes/Domain/Repository/PageRepository.php @@ -7,14 +7,14 @@ * @package Tollwerk\Vamoso * @subpackage Tollwerk\TwEvents\Domain\Repository * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/Domain/Repository/PersonRepository.php b/Classes/Domain/Repository/PersonRepository.php index 8fdbfe3..ca6ec20 100644 --- a/Classes/Domain/Repository/PersonRepository.php +++ b/Classes/Domain/Repository/PersonRepository.php @@ -7,14 +7,14 @@ * @package Tollwerk\TwEvents * @subpackage Tollwerk\TwEvents\Domain\Repository * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/Domain/Repository/PresentationRepository.php b/Classes/Domain/Repository/PresentationRepository.php index c89fc8f..9eeb892 100644 --- a/Classes/Domain/Repository/PresentationRepository.php +++ b/Classes/Domain/Repository/PresentationRepository.php @@ -7,14 +7,14 @@ * @package Tollwerk\TwEvents * @subpackage Tollwerk\TwEvents\Domain\Repository * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/Domain/Repository/SponsorRepository.php b/Classes/Domain/Repository/SponsorRepository.php index c6a388b..17765c7 100644 --- a/Classes/Domain/Repository/SponsorRepository.php +++ b/Classes/Domain/Repository/SponsorRepository.php @@ -7,14 +7,14 @@ * @package Tollwerk\TwEvents * @subpackage Tollwerk\TwEvents\Domain\Repository * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in @@ -45,7 +45,7 @@ * For the full copyright and license information, please read the * LICENSE.txt file that was distributed with this source code. * - * (c) 2019 + * © 2020 * ***/ diff --git a/Classes/Utility/DatetimeUtility.php b/Classes/Utility/DatetimeUtility.php index b1debc2..286c6bf 100644 --- a/Classes/Utility/DatetimeUtility.php +++ b/Classes/Utility/DatetimeUtility.php @@ -7,14 +7,14 @@ * @package Tollwerk\Vamoso * @subpackage Tollwerk\TwEvents\Utility * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/Utility/Tca.php b/Classes/Utility/Tca.php index f9523b9..15e0bd1 100644 --- a/Classes/Utility/Tca.php +++ b/Classes/Utility/Tca.php @@ -7,14 +7,14 @@ * @package Tollwerk\Vamoso * @subpackage Tollwerk\TwEvents\Utility * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/ViewHelpers/Event/BlocksViewHelper.php b/Classes/ViewHelpers/Event/BlocksViewHelper.php index 11a7819..e63ebe6 100644 --- a/Classes/ViewHelpers/Event/BlocksViewHelper.php +++ b/Classes/ViewHelpers/Event/BlocksViewHelper.php @@ -7,14 +7,14 @@ * @package Tollwerk\Vamoso * @subpackage Tollwerk\TwEvents\ViewHelpers\Event * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/ViewHelpers/EventViewHelper.php b/Classes/ViewHelpers/EventViewHelper.php index 6a91b83..36768ff 100644 --- a/Classes/ViewHelpers/EventViewHelper.php +++ b/Classes/ViewHelpers/EventViewHelper.php @@ -7,14 +7,14 @@ * @package Jkphl\Antibot * @subpackage Tollwerk\TwEvents\ViewHelpers * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/ViewHelpers/Presentation/ScheduleViewHelper.php b/Classes/ViewHelpers/Presentation/ScheduleViewHelper.php index e2edddf..8ac56d9 100644 --- a/Classes/ViewHelpers/Presentation/ScheduleViewHelper.php +++ b/Classes/ViewHelpers/Presentation/ScheduleViewHelper.php @@ -7,14 +7,14 @@ * @package Tollwerk\TwEvents * @subpackage Tollwerk\TwEvents\ViewHelpers\Presentation * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Classes/ViewHelpers/PresentationViewHelper.php b/Classes/ViewHelpers/PresentationViewHelper.php index b645dc4..f2fff2d 100644 --- a/Classes/ViewHelpers/PresentationViewHelper.php +++ b/Classes/ViewHelpers/PresentationViewHelper.php @@ -7,14 +7,14 @@ * @package Jkphl\Antibot * @subpackage Tollwerk\TwPresentations\ViewHelpers * @author Joschi Kuphal / @jkphl - * @copyright Copyright © 2019 Joschi Kuphal / @jkphl + * @copyright Copyright © 2020 Joschi Kuphal / @jkphl * @license http://opensource.org/licenses/MIT The MIT License (MIT) */ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/Configuration/Extbase/Persistence/Classes.php b/Configuration/Extbase/Persistence/Classes.php index 5b4aa85..476957a 100644 --- a/Configuration/Extbase/Persistence/Classes.php +++ b/Configuration/Extbase/Persistence/Classes.php @@ -5,7 +5,7 @@ /*********************************************************************************** * The MIT License (MIT) * - * Copyright © 2019 Joschi Kuphal + * Copyright © 2020 Joschi Kuphal * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in diff --git a/README.md b/README.md index c7a133a..7025ef2 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,6 @@ Credits License ------- -Copyright © 2019 [Joschi Kuphal / tollwerk GmbH][author-url] / info@tollwerk.de. Licensed under the terms of the [GPL v2](LICENSE.txt) license. +Copyright © 2020 [Joschi Kuphal / tollwerk GmbH][author-url] / info@tollwerk.de. Licensed under the terms of the [GPL v2](LICENSE.txt) license. [author-url]: https://tollwerk.de diff --git a/ext_emconf.php b/ext_emconf.php index ce9ff71..ca9a3bc 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -20,7 +20,7 @@ 'uploadfolder' => 1, 'createDirs' => '', 'clearCacheOnLoad' => 0, - 'version' => '2.1.1', + 'version' => '2.1.3', 'constraints' => [ 'depends' => [ 'typo3' => '9.5.0-10.99.99',