Skip to content

Commit

Permalink
Release 3.1.4 (#98)
Browse files Browse the repository at this point in the history
* Remove useless Google Analytics parameters

* Delete PULL_REQUEST_TEMPLATE.md

* Update build-release.yml

* Update README.md

* Update README.md

* feat: remove mobile desactivation

* Release 3.1.4

---------

Co-authored-by: JoseNOM <103456499+JoseNOM@users.noreply.github.com>
Co-authored-by: Mathieu Ferment <mathieu.ferment@prestashop.com>
Co-authored-by: leemyongpakvn <3759923+leemyongpakvn@users.noreply.github.com>
Co-authored-by: Krystian Podemski <kpodemski@users.noreply.github.com>
Co-authored-by: florine2623 <16019289+florine2623@users.noreply.github.com>
Co-authored-by: Daniel Hlavacek <daniel.hlavacek@hotmail.cz>
Co-authored-by: Guyomar Alexis <52718717+ga-devfront@users.noreply.github.com>
  • Loading branch information
8 people authored Jan 16, 2024
1 parent 36f848c commit 25c8674
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 83 deletions.
19 changes: 0 additions & 19 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

59 changes: 3 additions & 56 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,59 +2,6 @@ name: Build
on: [push, pull_request]

jobs:
deploy:
name: build dependencies & create artifact
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.0.0
- name: Install composer dependencies
run: composer install --no-dev -o
- name: Clean-up project
uses: PrestaShopCorp/github-action-clean-before-deploy@v1.0
- name: Prepare auto-index tool
run: composer global require prestashop/autoindex
- name: Generate index.php
run: ~/.composer/vendor/bin/autoindex
- name: Create & upload artifact
uses: actions/upload-artifact@v1
with:
name: ${{ github.event.repository.name }}
path: ../
update_release_draft:
runs-on: ubuntu-latest
needs: [deploy]
if: github.event_name == 'push' && github.event.ref == 'refs/heads/master'
steps:
- name: Download artifact
uses: actions/download-artifact@v1
with:
name: ${{ github.event.repository.name }}
- id: release_info
uses: toolmantim/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Prepare for Release
run: |
cd ${{ github.event.repository.name }}
zip -r ${{ github.event.repository.name }}.zip ${{ github.event.repository.name }}
- name: Clean existing assets
shell: bash
run: |
curl -fsSL https://github.com/github/hub/raw/master/script/get | bash -s 2.14.1
assets=`bin/hub api -t repos/${{ github.repository }}/releases/${{ steps.release_info.outputs.id }}/assets | awk '/\].url/ { print $2 }'`
for asset in $assets
do
bin/hub api -X DELETE $asset
done
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to GitHub Release
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.release_info.outputs.upload_url }}
asset_path: ./${{ github.event.repository.name }}/${{ github.event.repository.name }}.zip
asset_name: ${{ github.event.repository.name }}.zip
asset_content_type: application/zip
build-and-release-draft:
name: Build & Release draft
uses: PrestaShop/.github/.github/workflows/build-release.yml@master
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,26 @@

Add sliding images to your homepage to welcome your visitors in a visual and friendly way.

## Compatibility

PrestaShop: `1.7.4.0` or later

## Multistore compatibility

This module is not compatible with the multistore :x: <br/>
It means that its configuration applies for all stores.

## How to test

Link to specs : https://docs.prestashop-project.org/functional-documentation/functional-documentation/ux-ui/back-office/improve/modules/image-slider-ps_imageslider

Settings
- Configure Settings and check the results on FO
Slides list
- CRUD
- Enable/disable
- Reposition

## Reporting issues

You can report issues with this module in the main PrestaShop repository. [Click here to report an issue][report-issue].
Expand Down
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>ps_imageslider</name>
<displayName><![CDATA[Image slider]]></displayName>
<version><![CDATA[3.1.3]]></version>
<version><![CDATA[3.1.4]]></version>
<description><![CDATA[Adds an image slider to your site.]]></description>
<author><![CDATA[PrestaShop]]></author>
<tab><![CDATA[front_office_features]]></tab>
Expand Down
9 changes: 2 additions & 7 deletions ps_imageslider.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function __construct()
{
$this->name = 'ps_imageslider';
$this->tab = 'front_office_features';
$this->version = '3.1.3';
$this->version = '3.1.4';
$this->author = 'PrestaShop';
$this->need_instance = 0;
$this->secure_key = Tools::hash($this->name);
Expand Down Expand Up @@ -119,9 +119,6 @@ public function install()
$this->installSamples();
}

// Disable on mobiles and tablets
$this->disableDevice(Context::DEVICE_MOBILE);

return (bool) $res;
}

Expand All @@ -143,9 +140,7 @@ protected function installSamples()
$slide->description[$language['id_lang']] = '<h3>EXCEPTEUR OCCAECAT</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin tristique in tortor et dignissim. Quisque non tempor leo. Maecenas egestas sem elit</p>';
$slide->legend[$language['id_lang']] = 'sample-' . $i;
$slide->url[$language['id_lang']] = 'https://www.prestashop-project.org?utm_source=back-office&utm_medium=v17_homeslider'
. '&utm_campaign=back-office-' . Tools::strtoupper($this->context->language->iso_code)
. '&utm_content=' . (defined('_PS_HOST_MODE_') ? 'ondemand' : 'download');
$slide->url[$language['id_lang']] = 'https://www.prestashop-project.org';
$rtlSuffix = $language['is_rtl'] ? '_rtl' : '';
$slide->image[$language['id_lang']] = sprintf('sample-%d%s.jpg', $i, $rtlSuffix);
}
Expand Down

0 comments on commit 25c8674

Please sign in to comment.