Skip to content

Commit a50c45f

Browse files
Merge pull request #4 from bitshiftersgmbh/bitshiftersgmbh-maintain
release 1.1.2
2 parents 807c473 + d257a2b commit a50c45f

File tree

5 files changed

+276
-267
lines changed

5 files changed

+276
-267
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
1+
.idea/*
22
.DS_Store

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
=========
33

4+
Version 1.1.2 - 18.02.2022
5+
--------------------------
6+
7+
* Pfad-Korrektur für aktives CSS-File, wenn Subset ausgewählt ist
8+
* Backend-Formulare mit korrigierter Form-Action verhindert Probleme mit Installationen in Unterordnern (Packages Page)
9+
10+
> Bitte nach der Installation / dem Update Cache löschen!
11+
412
Version 1.1.1 - 28.01.2022
513
--------------------------
614

lib/rex.fa.iconpicker.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ public static function getCssUrl(): ?string {
178178
* @author Peter Schulze | p.schulze[at]bitshifters.de
179179
*/
180180
public static function getActiveCssFileName(): ?string {
181-
$basePath = rex_fa_package::PACKAGE_PATH.self::getActiveVariant().DIRECTORY_SEPARATOR.self::getActiveVariant()."-".self::getActiveVersion();
181+
$basePath = rex_fa_package::PACKAGE_PATH.self::getActiveVariant().DIRECTORY_SEPARATOR.self::getActiveVariant()."-".self::getActiveVersion().
182+
(self::getActiveSubset() != "" ? "-".self::getActiveSubset() : "");
182183

183184
if(file_exists(rex_path::data($basePath.DIRECTORY_SEPARATOR.'css'.DIRECTORY_SEPARATOR.self::ALL_MIN_CSS))) {
184185
return self::ALL_MIN_CSS;

package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package: fa_iconpicker
2-
version: '1.1.1'
2+
version: '1.1.2'
33
author: Friends Of REDAXO
44
pjax: false
55
supportpage: https://github.com/FriendsOfREDAXO/fa_iconpicker/

0 commit comments

Comments
 (0)