Skip to content

Commit 4400a62

Browse files
zip comment add, label fix
1 parent 65df868 commit 4400a62

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

gulpfile.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,12 @@ gulp.task("exportCacheXML", [
8686

8787
gulp.task("zipRelease", ["exportCacheXML"], function () {
8888
return gulp.src("build/**/*")
89-
.pipe(zip("LightPivotTable-v" + pkg["version"] + ".zip"))
89+
.pipe(zip("LightPivotTable-v" + pkg["version"] + ".zip", {
90+
comment: "Light pivot table v" + pkg["version"] + " by Nikita Savchenko\n\n" +
91+
"+ WEBModule folder holds JS and CSS files to integrate Light pivot table to any WEB " +
92+
"application;\n" +
93+
"+ Cache folder holds XML file to import to InterSystems Cache."
94+
}))
9095
.pipe(gulp.dest("build"));
9196
});
9297

source/js/PivotView.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ PivotView.prototype.init = function () {
8686
_.displayMessage("<a href=\"https://github.com/ZitRos/LightPivotTable\">LIGHT PIVOT TABLE" +
8787
" v" + _.controller.VERSION +
8888
"</a><br/>by <a href=\"https://plus.google.com/+NikitaSavchenko\">Nikita Savchenko</a>" +
89-
"<br/>for dear <a href=\"http://www.intersystems.com/\">InterSystems Corporation</a><br/>" +
90-
"Hope you enjoy it!", true);
89+
"<br/>for dear users of products of <a href=\"http://www.intersystems.com/\">InterSystems" +
90+
" Corporation</a><br/>Hope you enjoy it!", true);
9191
};
9292

9393
};

0 commit comments

Comments
 (0)