From 5555698cae493f8b7b1784108b29129f50ded650 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Mon, 22 Jul 2013 03:52:24 -0400 Subject: [PATCH 1/4] Don't publish release binaries into site-build repo We're going to be hosting them in GitHub Releases instead. --- Gruntfile.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index 9e34ccd5..a2fa8070 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -191,6 +191,10 @@ module.exports = function(grunt) { // Copies the contents of the build folder into the release folder. grunt.registerTask("copy:release", function() { grunt.file.recurse("build", function(abspath, rootdir, subdir, filename) { + if (subdir === 'releases') { + return; + } + var dest = releaseRoot + (subdir ? subdir + "/" : '/') + filename; From 1f05e0de7281ebf4136063240e9b4798768cbcc4 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Mon, 22 Jul 2013 21:11:14 -0400 Subject: [PATCH 2/4] Stop excluding site-build/built-openseadragon/releases from clean The historical releases directory in site-build is no longer kept in built-openseadragon. --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index a2fa8070..7f32301c 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -58,7 +58,7 @@ module.exports = function(grunt) { build: ["build"], package: [packageDir], release: { - src: [releaseRoot + '*', '!' + releaseRoot + 'releases'], + src: [releaseRoot], options: { force: true } From 4ff498814c1ea0683d4cedb7167dd354bcb10932 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Mon, 22 Jul 2013 21:19:18 -0400 Subject: [PATCH 3/4] Stop copying changelog.txt to the website It's not referenced from the site itself, and the GitHub releases page is nicer. --- Gruntfile.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 7f32301c..81f70b10 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -168,8 +168,6 @@ module.exports = function(grunt) { grunt.file.recurse("images", function(abspath, rootdir, subdir, filename) { grunt.file.copy(abspath, "build/openseadragon/images/" + (subdir || "") + filename); }); - - grunt.file.copy("changelog.txt", "build/changelog.txt"); }); // ---------- From a09f09c0028a196053477634dcf4f99956f6a057 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Mon, 22 Jul 2013 21:33:58 -0400 Subject: [PATCH 4/4] README: Update link to releases page --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 757ea619..c4445221 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ See it in action and get started using it at http://openseadragon.github.io/. ## Stable Builds -See our [releases page](http://openseadragon.github.io/releases/). +See the [GitHub releases page](https://github.com/openseadragon/openseadragon/releases). ## Development