Skip to content

Commit

Permalink
3.0.2 - Bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjasper committed Sep 27, 2023
2 parents 3a16873 + c4bf71f commit 39a7e72
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.2] - 2023-09-27 Bugfixes

### Fixed

- Fixed default route enhancer for pagination (#64)
- Fixed error originating in Services.php (#118)

### Changed

- Changed pagination partial to stop trying to render non-working links for previous and next pages

## [2.3.3] - 2023-09-27 Hotfix

### Fixed

- Fixed error originating in Services.php

## [3.0.1] - 2023-09-19 Bugfix

### Fixed
Expand Down
9 changes: 5 additions & 4 deletions Configuration/Services.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,17 @@
use ITX\Jobapplications\Widgets\Provider\ApplicationsPerPostingBarChartProvider;
use ITX\Jobapplications\Widgets\Provider\BackendModuleButtonProvider;
use ITX\Jobapplications\Widgets\Provider\PostingsActiveProvider;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Symfony\Component\DependencyInjection\Reference;
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
use TYPO3\CMS\Dashboard\Dashboard;
use TYPO3\CMS\Dashboard\Widgets\BarChartWidget;
use TYPO3\CMS\Dashboard\Widgets\NumberWithIconWidget;

return function(ContainerConfigurator $configurator) {
return function(ContainerConfigurator $configurator, ContainerBuilder $containerBuilder) {
$services = $configurator->services();

if (ExtensionManagementUtility::isLoaded('dashboard')) {
if ($containerBuilder->hasDefinition(Dashboard::class)) {
$services->set(PostingsActiveProvider::class);

$services->set(BackendModuleButtonProvider::class)->arg('$target', '');
Expand Down Expand Up @@ -60,4 +61,4 @@
]);

}
};
};
2 changes: 1 addition & 1 deletion Documentation/Settings.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ project = Jobapplications Extension
# ... (recommended) version, displayed next to title (desktop) and in <meta name="book-version"
# .................................................................................

release = 3.0.1
release = 3.0.2

# .................................................................................
# ... (recommended) displayed in footer
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type" : "typo3-cms-extension",
"description" : "This extension enables you to manage job postings, has an application form for applicants to apply and an Application Managment Backend Module",
"license" : "GPL-3.0-or-later",
"version" : "3.0.1",
"version" : "3.0.2",
"homepage" : "http://www.itx.de",
"authors" : [
{
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
'uploadfolder' => 1,
'createDirs' => '',
'clearCacheOnLoad' => true,
'version' => '3.0.1',
'version' => '3.0.2',
'constraints' => [
'depends' => [
'typo3' => '12.4.1-12.9.99'
Expand Down

0 comments on commit 39a7e72

Please sign in to comment.