Skip to content

Commit

Permalink
Update to 2.1.3
Browse files Browse the repository at this point in the history
* Small fix
* Update dependencies
  • Loading branch information
denysdesign committed Mar 20, 2024
1 parent 0add98b commit 6a4f3ec
Show file tree
Hide file tree
Showing 9 changed files with 453 additions and 429 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

## Download

[JUPWA v 2.1.2](https://github.com/Joomla-Ukraine/JUPWA/releases/download/2.1.2/pkg_jupwa_v2.1.2.zip)
[JUPWA v 2.1.3](https://github.com/Joomla-Ukraine/JUPWA/releases/download/2.1.3/pkg_jupwa_v2.1.3.zip)

## Integration

Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
basedir=".">

<property name="VERSION"
value="2.1.2" />
value="2.1.3" />
<property name="JOOMLA"
value="4.0" />

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jupwa",
"sideEffects": true,
"version": "1.9",
"version": "1.10",
"description": "JUPWA",
"private": true,
"scripts": {
Expand All @@ -17,10 +17,10 @@
"keywords": [],
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/runtime": "^7.24.0",
"@babel/core": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.1",
"@babel/preset-env": "^7.24.1",
"@babel/runtime": "^7.24.1",
"@swc/core": "^1.4.8",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
Expand All @@ -42,6 +42,6 @@
"yargs": "^17.7.2"
},
"dependencies": {
"@khmyznikov/pwa-install": "^0.3.4"
"@khmyznikov/pwa-install": "^0.3.5"
}
}
2 changes: 1 addition & 1 deletion packages/plg_system_jupwa/jupwa.php
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public function onAfterDispatch(): void
if($this->params->get('usepwainstall') == 1)
{
$wa = $doc->getWebAssetManager();
$jupwa_install_version = '1.9';
$jupwa_install_version = '1.10';

$wa->registerAndUseScript('jupwa', Uri::root() . 'media/jupwa/js/jupwa.' . $jupwa_install_version . '.js', [ 'version' => false ], [
'defer' => 'defer',
Expand Down
2 changes: 1 addition & 1 deletion packages/plg_system_jupwa/libraries/src/Thumbs/Render.php
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public static function manifest_icons(array $option = []): array
$image[] = Image::render_image($source, $out, [
'width' => $icon,
'height' => $icon,
'ratio' => 1.12,
'ratio' => 1.11,
'color' => $option[ 'manifest_icon_background_color' ] == 1 ? $option[ 'background_color' ] : null
]);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => 'joomla-ua/jupwa',
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => '17e2e7fd697ec640f97a9f063fac90b2d27b187d',
'reference' => '0add98bf95b837029243749b12c5c865c5829b0d',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down Expand Up @@ -31,7 +31,7 @@
'joomla-ua/jupwa' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => '17e2e7fd697ec640f97a9f063fac90b2d27b187d',
'reference' => '0add98bf95b837029243749b12c5c865c5829b0d',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down
1 change: 1 addition & 0 deletions packages/plg_system_jupwa/media/jupwa/js/jupwa.1.10.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion packages/plg_system_jupwa/media/jupwa/js/jupwa.1.9.js

This file was deleted.

Loading

0 comments on commit 6a4f3ec

Please sign in to comment.