diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index b1478bfc36..aff2a141c9 100755 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -7,7 +7,7 @@ - **Button** - Add `inverted` and `inverted basic` variations for `primary` and `secondary` buttons **Thanks @hammy2899** [#6242](https://github.com/Semantic-Org/Semantic-UI/issues/6242) **Theming** -- **Global** - Add `hover` `down` `active` and `focus` variables for `invertedPrimaryColor` and `invertedSecondaryColor` +- **Global** - Add `hover` `down` `active` and `focus` variables for `@invertedPrimaryColor` and `@invertedSecondaryColor` **Bugs** - **Dropdown** Fixed bug that could cause dropdown to recursively trigger network requests specifically when using `apiSettings` with a url that returns valid response but with no results when clicking directly on the `dropdown icon`. **Thanks @vpeti** [#5231](https://github.com/Semantic-Org/Semantic-UI/issues/5231) [#5809](https://github.com/Semantic-Org/Semantic-UI/issues/5809) diff --git a/tasks/admin/components/init.js b/tasks/admin/components/init.js index 986f9783df..168f8dfc02 100644 --- a/tasks/admin/components/init.js +++ b/tasks/admin/components/init.js @@ -74,7 +74,7 @@ module.exports = function(callback) { pullOptions = { args: '-q', cwd: outputDirectory, quiet: true }, resetOptions = { args: '-q --hard', cwd: outputDirectory, quiet: true }, - gitURL = 'https://github.com/' + release.org + '/' + repoName + '.git', + gitURL = 'git@github.com:' + release.org + '/' + repoName + '.git', repoURL = 'https://github.com/' + release.org + '/' + repoName + '/', localRepoSetup = fs.existsSync(path.join(outputDirectory, '.git')) ; diff --git a/tasks/admin/components/update.js b/tasks/admin/components/update.js index 4817e0b58f..d69501b474 100644 --- a/tasks/admin/components/update.js +++ b/tasks/admin/components/update.js @@ -166,7 +166,7 @@ module.exports = function(callback) { console.log('Sleeping for 1 second...'); // avoid rate throttling global.clearTimeout(timer); - timer = global.setTimeout(stepRepo, 1000); + timer = global.setTimeout(stepRepo, 100); } diff --git a/tasks/admin/distributions/update.js b/tasks/admin/distributions/update.js index 5c23bfacb7..1fce7d2e8b 100644 --- a/tasks/admin/distributions/update.js +++ b/tasks/admin/distributions/update.js @@ -161,7 +161,7 @@ module.exports = function(callback) { console.log('Sleeping for 1 second...'); // avoid rate throttling global.clearTimeout(timer); - timer = global.setTimeout(stepRepo, 500); + timer = global.setTimeout(stepRepo, 100); }