Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CSS-Tricks/The-Printliminator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Gruntfile.js15
-rw-r--r--dist/bookmarklet/printliminator.js4
-rw-r--r--dist/chrome.crxbin19534 -> 19508 bytes
-rw-r--r--dist/chrome.zipbin20567 -> 20541 bytes
-rw-r--r--dist/chrome/manifest.json3
-rw-r--r--dist/chrome/printliminator.js4
-rw-r--r--dist/opera.nexbin19534 -> 19508 bytes
-rw-r--r--package.json2
-rw-r--r--src/chrome/manifest.json3
-rw-r--r--src/chrome/updates.xml6
-rw-r--r--updates.xml6
11 files changed, 9 insertions, 34 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index f0276c5..eb0bfee 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -84,8 +84,7 @@ module.exports = function( grunt ) {
src : [
'dist/**/*',
config.indexHtml,
- '*.min.js',
- 'updates.xml'
+ '*.min.js'
]
},
cleanup : {
@@ -120,14 +119,6 @@ module.exports = function( grunt ) {
src : [ '_locales/**/*.json' ],
dest : 'dist/chrome'
},
- chromeUpdate : {
- files : [{
- expand : true,
- flatten : true,
- src : [ 'src/chrome/updates.xml' ],
- dest : './'
- }]
- },
// Opera can use chrome.crx; just renamed
opera : {
src : 'dist/chrome.crx',
@@ -299,7 +290,6 @@ module.exports = function( grunt ) {
'bookmarklet-create',
'copy:chrome',
'copy:chromeLocales',
- 'copy:chromeUpdate',
'jshint',
'jasmine',
'clean:cleanup'
@@ -361,8 +351,7 @@ module.exports = function( grunt ) {
projectFile = [
'dist/chrome/manifest.json',
'dist/chrome/printliminator.js',
- 'dist/bookmarklet/printliminator.js',
- 'updates.xml'
+ 'dist/bookmarklet/printliminator.js'
],
len = projectFile.length;
for ( i = 0; i < len; i++ ) {
diff --git a/dist/bookmarklet/printliminator.js b/dist/bookmarklet/printliminator.js
index 9622081..f79f8fa 100644
--- a/dist/bookmarklet/printliminator.js
+++ b/dist/bookmarklet/printliminator.js
@@ -1,4 +1,4 @@
-/* Printliminator v4.0.2
+/* Printliminator v4.0.3
* https://github.com/CSS-Tricks/The-Printliminator
*/
/*jshint expr:false */
@@ -8,7 +8,7 @@
var pl = window.thePrintliminator = {
- version : '4.0.2',
+ version : '4.0.3',
// preprocess is used to echo in settings from options.json
css : {
diff --git a/dist/chrome.crx b/dist/chrome.crx
index ce6e4e2..67a44d4 100644
--- a/dist/chrome.crx
+++ b/dist/chrome.crx
Binary files differ
diff --git a/dist/chrome.zip b/dist/chrome.zip
index 0e74db4..9b8ca94 100644
--- a/dist/chrome.zip
+++ b/dist/chrome.zip
Binary files differ
diff --git a/dist/chrome/manifest.json b/dist/chrome/manifest.json
index f131a36..b5d3135 100644
--- a/dist/chrome/manifest.json
+++ b/dist/chrome/manifest.json
@@ -1,11 +1,10 @@
{
"name": "__MSG_printliminatorName__",
- "version": "4.0.2",
+ "version": "4.0.3",
"manifest_version": 2,
"author": "Chris Coyier",
"description": "__MSG_printliminatorDescription__",
"homepage_url": "https://github.com/CSS-Tricks/The-Printliminator",
- "update_url": "https://css-tricks.github.io/The-Printliminator/updates.xml",
"default_locale": "en",
"icons": {
"16": "icon16.png",
diff --git a/dist/chrome/printliminator.js b/dist/chrome/printliminator.js
index 46eae1f..f7260f1 100644
--- a/dist/chrome/printliminator.js
+++ b/dist/chrome/printliminator.js
@@ -1,4 +1,4 @@
-/* Printliminator v4.0.2
+/* Printliminator v4.0.3
* https://github.com/CSS-Tricks/The-Printliminator
*/
/*jshint expr:false */
@@ -8,7 +8,7 @@
var pl = window.thePrintliminator = {
- version : '4.0.2',
+ version : '4.0.3',
// preprocess is used to echo in settings from options.json
css : {
diff --git a/dist/opera.nex b/dist/opera.nex
index ce6e4e2..67a44d4 100644
--- a/dist/opera.nex
+++ b/dist/opera.nex
Binary files differ
diff --git a/package.json b/package.json
index f511bfb..801f107 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "Printliminator",
- "version": "4.0.2",
+ "version": "4.0.3",
"description": "Printliminator is a simple tool you can use to make websites print better. One click to activate, and then click to remove elements from the page, remove graphics, and apply better print styling.",
"repository": {
"type": "git",
diff --git a/src/chrome/manifest.json b/src/chrome/manifest.json
index f131a36..b5d3135 100644
--- a/src/chrome/manifest.json
+++ b/src/chrome/manifest.json
@@ -1,11 +1,10 @@
{
"name": "__MSG_printliminatorName__",
- "version": "4.0.2",
+ "version": "4.0.3",
"manifest_version": 2,
"author": "Chris Coyier",
"description": "__MSG_printliminatorDescription__",
"homepage_url": "https://github.com/CSS-Tricks/The-Printliminator",
- "update_url": "https://css-tricks.github.io/The-Printliminator/updates.xml",
"default_locale": "en",
"icons": {
"16": "icon16.png",
diff --git a/src/chrome/updates.xml b/src/chrome/updates.xml
deleted file mode 100644
index cfabf36..0000000
--- a/src/chrome/updates.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
- <app appid='nklechikgnfoonbfmcalddjcpmcmgapf'>
- <updatecheck codebase='http://css-tricks.github.io/The-Printliminator/dist/chrome.crx' version='{version}' />
- </app>
-</gupdate>
diff --git a/updates.xml b/updates.xml
deleted file mode 100644
index 065d3ee..0000000
--- a/updates.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
- <app appid='nklechikgnfoonbfmcalddjcpmcmgapf'>
- <updatecheck codebase='http://css-tricks.github.io/The-Printliminator/dist/chrome.crx' version='4.0.2' />
- </app>
-</gupdate>