Skip to content

Commit 5fd2ff8

Browse files
authored
Merge pull request #525 from JoomShaper/dev
Release for v2.2.2
2 parents 439cef2 + 9fe3e57 commit 5fd2ff8

File tree

73 files changed

+1828
-917
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+1828
-917
lines changed

administrator/language/en-GB/en-GB.plg_system_helixultimate.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,8 @@ HELIX_ULTIMATE_JS_COMPRESS="Compress Javascript Files"
362362
HELIX_ULTIMATE_JS_COMPRESS_DESC="Enable this option to compress and combine all Javascript files to increase website performance by reducing loading time. <strong>Note: In case of problems please disable this option</strong>"
363363
HELIX_ULTIMATE_PURGE_CSS_TEXT="<span class='fas fa-eraser'></span> Purge CSS"
364364
HELIX_ULTIMATE_PURGE_CSS_DESC="Remove cache css and sass files from the system."
365+
HELIX_ULTIMATE_EXCLUDE_CSS="Exclude CSS Files"
366+
HELIX_ULTIMATE_EXCLUDE_CSS_DESC="Enter the names of CSS files separated by a comma that you don't want to compress. e.g., template.css, bootstrap.min.css"
365367
HELIX_ULTIMATE_EXCLUDE_JS="Exclude Javascript Files"
366368
HELIX_ULTIMATE_EXCLUDE_JS_DESC="Enter the names of Javascript files separated by a comma that you don't want to compress. e.g., jquery.min.js, main.js"
367369
HELIX_ULTIMATE_ENABLE_SCSS="Compile SCSS to CSS"

gulpfile.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ const config = {
1414
srcPath: path.resolve(__dirname),
1515
buildPath: path.resolve(__dirname, './package/'),
1616
qsPath: path.resolve(__dirname, './package/helix_ultimate_quickstart/'),
17-
qsPackageName: 'helixultimate_quickstart_j5_2.2.1.zip',
18-
packageName: 'helixultimate_template_v2.2.1.zip',
19-
pluginPackageName: 'plg_system_helixultimate_v2.2.1.zip',
17+
qsPackageName: 'helixultimate_quickstart_j5_2.2.2.zip',
18+
packageName: 'helixultimate_template_v2.2.2.zip',
19+
pluginPackageName: 'plg_system_helixultimate_v2.2.2.zip',
2020

2121
templateFileExtensions: 'xml, json, php, png, scss, js, ico, svg, jpg, eot, ttf, woff, woff2, otf, css, html',
2222
pluginFileExtensions: function () {
@@ -94,9 +94,9 @@ function templateStreamTask() {
9494
function pluginStreamTask() {
9595
return src([
9696
path.resolve(config.srcPath, './plugins/system/helixultimate') +
97-
'/**/*.{' +
98-
config.parseExtensions('pluginFileExtensions') +
99-
'}',
97+
'/**/*.{' +
98+
config.parseExtensions('pluginFileExtensions') +
99+
'}',
100100
]).pipe(dest(path.resolve(config.buildPath, './plugins/system/'), config.destOptions));
101101
}
102102

language/en-GB/en-GB.tpl_shaper_helixultimate.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,8 @@ HELIX_ULTIMATE_JS_COMPRESS="Compress Javascript Files"
428428
HELIX_ULTIMATE_JS_COMPRESS_DESC="Enable this option to compress and combine all Javascript files to increase website performance by reducing loading time. <strong>Note: In case of problems please disable this option</strong>"
429429
HELIX_ULTIMATE_PURGE_CSS_TEXT="<span class='fas fa-eraser'></span> Purge CSS"
430430
HELIX_ULTIMATE_PURGE_CSS_DESC="Remove cache css and sass files from the system."
431+
HELIX_ULTIMATE_EXCLUDE_CSS="Exclude CSS Files"
432+
HELIX_ULTIMATE_EXCLUDE_CSS_DESC="Enter the names of CSS files separated by a comma that you don't want to compress. e.g., template.css, bootstrap.min.css"
431433
HELIX_ULTIMATE_EXCLUDE_JS="Exclude Javascript Files"
432434
HELIX_ULTIMATE_EXCLUDE_JS_DESC="Enter the names of Javascript files separated by a comma that you don't want to compress. e.g., jquery.min.js, main.js"
433435
HELIX_ULTIMATE_ENABLE_SCSS="Compile SCSS to CSS"
@@ -471,6 +473,10 @@ HELIX_ULTIMATE_ZOOM_IN_ANIMATION="Zoom In"
471473
HELIX_ULTIMATE_ROTATE_IN_ANIMATION="Rotate In"
472474
HELIX_ULTIMATE_PULSE_ANIMATION="Pulse"
473475
HELIX_ULTIMATE_OFFCANVAS_TOGGLE_HIDDEN="Off-Canvas Toggle"
476+
HELIX_ULTIMATE_OFFCANVAS_ARROW_POSITION="Off-canvas arrow position"
477+
HELIX_ULTIMATE_OFFCANVAS_ARROW_POSITION_DESC="Choose where to show the submenu arrow icon in the off-canvas menu."
478+
HELIX_ULTIMATE_OFFCANVAS_ARROW_POSITION_LEFT="Left"
479+
HELIX_ULTIMATE_OFFCANVAS_ARROW_POSITION_RIGHT="Right"
474480

475481
; Missings
476482
HELIX_ULTIMATE_GROUP_IMAGE="Image"

plugins/system/helixultimate/assets/css/admin/blog-options.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@
8585
}
8686

8787
.btn-hu-remove-gallery-image {
88-
position: absolute;
89-
top: 10px;
90-
right: 10px;
88+
position: absolute !important;
89+
top: 10px;
90+
right: 10px;
91+
padding: 0.375rem 0.75rem !important;
9192
}

0 commit comments

Comments
 (0)