Skip to content

Commit

Permalink
1.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RainLoop committed May 27, 2017
1 parent acbe439 commit f61a4cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
10 changes: 5 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ gulp.task('ckeditor', ['ckeditor:copy-plugins', 'ckeditor:copy', 'ckeditor:clear
gulp.task('rainloop:copy', ['default'], function() {

var
versionFull = pkg.version + '.' + parseInt(pkg.release, 10),
versionFull = pkg.version,
dist = cfg.releasesPath + '/webmail/' + versionFull + '/src/'
;

Expand All @@ -471,7 +471,7 @@ gulp.task('rainloop:copy', ['default'], function() {
gulp.task('rainloop:setup', ['rainloop:copy'], function() {

var
versionFull = pkg.version + '.' + parseInt(pkg.release, 10),
versionFull = pkg.version,
dist = cfg.releasesPath + '/webmail/' + versionFull + '/src/'
;

Expand Down Expand Up @@ -518,7 +518,7 @@ gulp.task('rainloop:sign', ['rainloop:shortname'], signFileTask);
gulp.task('rainloop:owncloud:copy', function() {

var
versionFull = pkg.ownCloudPackageVersion,
versionFull = pkg.ownCloudVersion,
dist = cfg.releasesPath + '/owncloud/' + versionFull + '/src/'
;

Expand All @@ -532,7 +532,7 @@ gulp.task('rainloop:owncloud:copy', function() {
gulp.task('rainloop:owncloud:copy-rainloop', ['rainloop:start', 'rainloop:owncloud:copy'], function() {

var
versionFull = pkg.ownCloudPackageVersion,
versionFull = pkg.ownCloudVersion,
dist = cfg.releasesPath + '/owncloud/' + versionFull + '/src/rainloop/'
;

Expand All @@ -552,7 +552,7 @@ gulp.task('rainloop:owncloud:copy-rainloop:clean', ['rainloop:owncloud:copy-rain
gulp.task('rainloop:owncloud:setup', ['rainloop:owncloud:copy', 'rainloop:owncloud:copy-rainloop'], function() {

var
versionFull = pkg.ownCloudPackageVersion,
versionFull = pkg.ownCloudVersion,
dist = cfg.releasesPath + '/owncloud/' + versionFull + '/src/'
;

Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
"title": "RainLoop Webmail",
"description": "Simple, modern & fast web-based email client",
"private": true,
"version": "1.11.0",
"release": "205",
"ownCloudPackageVersion": "4.28",
"version": "1.11.1",
"ownCloudVersion": "5.0.0",
"homepage": "http://rainloop.net",
"main": "gulpfile.js",
"author": {
Expand Down

0 comments on commit f61a4cc

Please sign in to comment.