From de74cdf35ba79ccf058ae269bc791ef38c7c5900 Mon Sep 17 00:00:00 2001 From: Carles Tubio Date: Sun, 28 May 2017 14:38:28 +0200 Subject: [PATCH 1/5] Updated reg. --- package.json | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index ef55eec..6d9f5bc 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,11 @@ { "name": "hacktimer", - "version": "1.1.0", + "version": "1.1.1", "description": "Avoid timers throttling by browser when tab is inactive", "main": "HackTimer.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, "repository": { "type": "git", - "url": "git+https://github.com/turuslan/HackTimer.git" + "url": "git+https://github.com/ctubio/HackTimer.git" }, "keywords": [ "suspend", @@ -25,7 +22,7 @@ "author": "turuslan (http://github.com/turuslan/)", "license": "MIT", "bugs": { - "url": "https://github.com/turuslan/HackTimer/issues" + "url": "https://github.com/ctubio/HackTimer/issues" }, - "homepage": "https://github.com/turuslan/HackTimer" + "homepage": "https://github.com/ctubio/HackTimer" } From fdc509745a8201cd3014784e12167b96c98b0031 Mon Sep 17 00:00:00 2001 From: Carles Tubio Date: Sun, 28 May 2017 14:40:50 +0200 Subject: [PATCH 2/5] Updated reg. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ef15280..8d3f6b9 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Place script reference to **HackTimer.js** (or HackTimer.min.js) before any othe This includes library's such as jQuery as otherwise timed events such as fadeOut and fadeIn will break. # NPM -Command: `npm install hacktimer --reg https://www.myget.org/F/hack-timer/npm` +Command: `npm install hacktimer` Latest version is 1.1.0 From d0d7ea417d9ed2f22f7dcd6e7aec5213315770c8 Mon Sep 17 00:00:00 2001 From: Carles Tubio Date: Sun, 28 May 2017 14:41:07 +0200 Subject: [PATCH 3/5] Updated reg. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6d9f5bc..20eb2ec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hacktimer", - "version": "1.1.1", + "version": "1.1.2", "description": "Avoid timers throttling by browser when tab is inactive", "main": "HackTimer.js", "repository": { From 8ca313ef33614f2480fa218adea35c250be4727f Mon Sep 17 00:00:00 2001 From: Carles Tubio Date: Sun, 28 May 2017 17:03:53 +0200 Subject: [PATCH 4/5] Update source without console.log calls. --- HackTimer.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/HackTimer.js b/HackTimer.js index 95d50cd..797ff95 100644 --- a/HackTimer.js +++ b/HackTimer.js @@ -137,7 +137,6 @@ onmessage = function (event) {\ worker.onerror = function (event) { console.log (event); }; - console.log (logPrefix + 'Initialisation succeeded'); } catch (error) { console.log (logPrefix + 'Initialisation failed'); console.error (error); @@ -145,4 +144,4 @@ onmessage = function (event) {\ } else { console.log (logPrefix + 'Initialisation failed - HTML5 Web Worker is not supported'); } -}) ('HackTimerWorker.js'); \ No newline at end of file +}) ('HackTimerWorker.js'); From 111662506478443f0f610274d48bc0c6a4fbf854 Mon Sep 17 00:00:00 2001 From: Carles Tubio Date: Sun, 28 May 2017 17:04:20 +0200 Subject: [PATCH 5/5] Updated version. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 20eb2ec..48966fc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hacktimer", - "version": "1.1.2", + "version": "1.1.3", "description": "Avoid timers throttling by browser when tab is inactive", "main": "HackTimer.js", "repository": {