Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
mdogo committed Oct 18, 2017
1 parent 9ae6442 commit 06e3ab7
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ module.exports = function(grunt) {
{expand: true, src: 'css/**', dest: 'release/doofinder'},
{expand: true, src: 'js/**', dest: 'release/doofinder'},
{expand: true, src: 'translations/**', dest: 'release/doofinder'},
{expand: true, src: 'override/**', dest: 'release/doofinder'},
{expand: true, src: 'lib/**', dest: 'release/doofinder'},
{expand: true, src: 'src/**', dest: 'release/doofinder'},
{expand: true, src: 'override/**', dest: 'release/doofinder'},
{expand: true, src: 'lib/**', dest: 'release/doofinder'},
{expand: true, src: 'views/**', dest: 'release/doofinder'}
]
},
Expand All @@ -51,28 +52,29 @@ module.exports = function(grunt) {
{expand: true, src: 'css/**', dest: 'release/doofinder'},
{expand: true, src: 'js/**', dest: 'release/doofinder'},
{expand: true, src: 'translations/**', dest: 'release/doofinder'},
{expand: true, src: 'src/**', dest: 'release/doofinder'},
{expand: true, src: 'lib/**', dest: 'release/doofinder'},
{expand: true, src: 'views/**', dest: 'release/doofinder'}
]
},
latest_to_version: {
files: [
{src: 'dist/doofinder-p1.7-latest.zip', dest: 'dist/doofinder-p1.7-<%= packageconfig.version %>.zip'}
{src: 'dist/doofinder-p1.5-latest.zip', dest: 'dist/doofinder-p1.5-<%= packageconfig.version %>.zip'}
]
}
},
compress: {
release: {
options: {
archive: 'dist/doofinder-p1.7-latest.zip'
archive: 'dist/doofinder-p1.5-latest.zip'
},
files: [
{expand: true, cwd: 'release', src: '**/*'}
]
},
release_no_full: {
options: {
archive: 'dist/doofinder-p1.7-latest-no-full.zip'
archive: 'dist/doofinder-p1.5-latest-no-full.zip'
},
files: [
{expand: true, cwd: 'release', src: '**/*'}
Expand Down
Binary file modified dist/doofinder-p1.5-latest-no-full.zip
Binary file not shown.
Binary file modified dist/doofinder-p1.5-latest.zip
Binary file not shown.
Binary file removed dist/doofinder-p1.7-latest-no-full.zip
Binary file not shown.
Binary file removed dist/doofinder-p1.7-latest.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion doofinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class Doofinder extends Module

const GS_SHORT_DESCRIPTION = 1;
const GS_LONG_DESCRIPTION = 2;
const VERSION = "1.0";
const VERSION = "2.3";
const YES = 1;
const NO = 0;

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "doofinder-for-prestashop",
"version": "1.0",
"version": "2.3",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.5.0",
Expand Down

0 comments on commit 06e3ab7

Please sign in to comment.