From 71828b5e545cd7404b572d353b795ed71ec6819b Mon Sep 17 00:00:00 2001 From: Mottie Date: Wed, 30 Sep 2015 12:38:44 -0500 Subject: Add Opera screenshots --- README.md | 17 ++++++++++++----- dist/bookmarklet/printliminator.js | 4 ++-- dist/chrome.crx | Bin 19508 -> 19508 bytes dist/chrome.zip | Bin 20541 -> 20541 bytes dist/chrome/manifest.json | 2 +- dist/chrome/printliminator.js | 4 ++-- dist/opera.nex | Bin 19508 -> 19508 bytes index.html | 2 +- package.json | 2 +- src/chrome/manifest.json | 2 +- src/images/Chrome-1.png | Bin 0 -> 117923 bytes src/images/Chrome-2.png | Bin 0 -> 108245 bytes src/images/Chrome-3.png | Bin 0 -> 67144 bytes src/images/Chrome-4.png | Bin 0 -> 62062 bytes src/images/Chrome-5.png | Bin 0 -> 88818 bytes src/images/Opera-1.png | Bin 0 -> 226565 bytes src/images/Opera-2.png | Bin 0 -> 160615 bytes src/images/Opera-3.png | Bin 0 -> 128779 bytes src/images/The-Printliminator-1.png | Bin 117923 -> 0 bytes src/images/The-Printliminator-2.png | Bin 108245 -> 0 bytes src/images/The-Printliminator-3.png | Bin 67144 -> 0 bytes src/images/The-Printliminator-4.png | Bin 62062 -> 0 bytes src/images/The-Printliminator-5.png | Bin 88818 -> 0 bytes 23 files changed, 20 insertions(+), 13 deletions(-) create mode 100644 src/images/Chrome-1.png create mode 100644 src/images/Chrome-2.png create mode 100644 src/images/Chrome-3.png create mode 100644 src/images/Chrome-4.png create mode 100644 src/images/Chrome-5.png create mode 100644 src/images/Opera-1.png create mode 100644 src/images/Opera-2.png create mode 100644 src/images/Opera-3.png delete mode 100644 src/images/The-Printliminator-1.png delete mode 100644 src/images/The-Printliminator-2.png delete mode 100644 src/images/The-Printliminator-3.png delete mode 100644 src/images/The-Printliminator-4.png delete mode 100644 src/images/The-Printliminator-5.png diff --git a/README.md b/README.md index ce054c8..a6e9ebe 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,21 @@ Get the: * Updates & extensions by [Rob Garrison](http://wowmotty.blogspot.com/). * Icons by [Function](http://wefunction.com/2008/07/function-free-icon-set/). * Print stylesheet based on [Hartija](http://code.google.com/p/hartija/). +* Translations provided by [Transifex]() + +### Contributing + +* Pull requests are welcome! +* Provide additional translations via [Transifex](https://www.transifex.com/css-tricks/the-printliminator/) or with a pull request. ### Recent Changes +#### Version 4.0.4 (9/30/2015) + +* Add screenshots of Opera extesion. +* Rename Chrome screenshots. +* Version bump to resubmit Opera extension. + #### Version 4.0.3 (9/28/2015) * Fix icon file name in Chrome manifest which was preventing the extension from working. @@ -44,8 +56,3 @@ Get the: * Add some basic unit testing for DOM traversing. * All production files are now located in the `dist` folder; `printliminator.min.js` is still located in the root. * Added [wiki documentation](https://github.com/CSS-Tricks/The-Printliminator/wiki). - -#### Version 3.1.2 (9/15/2015) - -* Add missing Shift+Click functionality. -* Make drag area larger while dragging. Fixes [issue #4](https://github.com/CSS-Tricks/The-Printliminator/issues/4). diff --git a/dist/bookmarklet/printliminator.js b/dist/bookmarklet/printliminator.js index f79f8fa..8218efa 100644 --- a/dist/bookmarklet/printliminator.js +++ b/dist/bookmarklet/printliminator.js @@ -1,4 +1,4 @@ -/* Printliminator v4.0.3 +/* Printliminator v4.0.4 * https://github.com/CSS-Tricks/The-Printliminator */ /*jshint expr:false */ @@ -8,7 +8,7 @@ var pl = window.thePrintliminator = { - version : '4.0.3', + version : '4.0.4', // preprocess is used to echo in settings from options.json css : { diff --git a/dist/chrome.crx b/dist/chrome.crx index 67a44d4..261c8b6 100644 Binary files a/dist/chrome.crx and b/dist/chrome.crx differ diff --git a/dist/chrome.zip b/dist/chrome.zip index 9b8ca94..e5519c7 100644 Binary files a/dist/chrome.zip and b/dist/chrome.zip differ diff --git a/dist/chrome/manifest.json b/dist/chrome/manifest.json index b5d3135..ee6ba57 100644 --- a/dist/chrome/manifest.json +++ b/dist/chrome/manifest.json @@ -1,6 +1,6 @@ { "name": "__MSG_printliminatorName__", - "version": "4.0.3", + "version": "4.0.4", "manifest_version": 2, "author": "Chris Coyier", "description": "__MSG_printliminatorDescription__", diff --git a/dist/chrome/printliminator.js b/dist/chrome/printliminator.js index f7260f1..2ba581f 100644 --- a/dist/chrome/printliminator.js +++ b/dist/chrome/printliminator.js @@ -1,4 +1,4 @@ -/* Printliminator v4.0.3 +/* Printliminator v4.0.4 * https://github.com/CSS-Tricks/The-Printliminator */ /*jshint expr:false */ @@ -8,7 +8,7 @@ var pl = window.thePrintliminator = { - version : '4.0.3', + version : '4.0.4', // preprocess is used to echo in settings from options.json css : { diff --git a/dist/opera.nex b/dist/opera.nex index 67a44d4..261c8b6 100644 Binary files a/dist/opera.nex and b/dist/opera.nex differ diff --git a/index.html b/index.html index 44a1f0e..c0a9a6d 100644 --- a/index.html +++ b/index.html @@ -22,7 +22,7 @@ To make changes, modify the "src/bookmarklet/index.html"
diff --git a/package.json b/package.json index 801f107..6be123a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Printliminator", - "version": "4.0.3", + "version": "4.0.4", "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 b5d3135..ee6ba57 100644 --- a/src/chrome/manifest.json +++ b/src/chrome/manifest.json @@ -1,6 +1,6 @@ { "name": "__MSG_printliminatorName__", - "version": "4.0.3", + "version": "4.0.4", "manifest_version": 2, "author": "Chris Coyier", "description": "__MSG_printliminatorDescription__", diff --git a/src/images/Chrome-1.png b/src/images/Chrome-1.png new file mode 100644 index 0000000..8300aab Binary files /dev/null and b/src/images/Chrome-1.png differ diff --git a/src/images/Chrome-2.png b/src/images/Chrome-2.png new file mode 100644 index 0000000..27bf8c9 Binary files /dev/null and b/src/images/Chrome-2.png differ diff --git a/src/images/Chrome-3.png b/src/images/Chrome-3.png new file mode 100644 index 0000000..1913d38 Binary files /dev/null and b/src/images/Chrome-3.png differ diff --git a/src/images/Chrome-4.png b/src/images/Chrome-4.png new file mode 100644 index 0000000..6c13525 Binary files /dev/null and b/src/images/Chrome-4.png differ diff --git a/src/images/Chrome-5.png b/src/images/Chrome-5.png new file mode 100644 index 0000000..7314823 Binary files /dev/null and b/src/images/Chrome-5.png differ diff --git a/src/images/Opera-1.png b/src/images/Opera-1.png new file mode 100644 index 0000000..f5801e5 Binary files /dev/null and b/src/images/Opera-1.png differ diff --git a/src/images/Opera-2.png b/src/images/Opera-2.png new file mode 100644 index 0000000..fe1fbc2 Binary files /dev/null and b/src/images/Opera-2.png differ diff --git a/src/images/Opera-3.png b/src/images/Opera-3.png new file mode 100644 index 0000000..5fac4bc Binary files /dev/null and b/src/images/Opera-3.png differ diff --git a/src/images/The-Printliminator-1.png b/src/images/The-Printliminator-1.png deleted file mode 100644 index 8300aab..0000000 Binary files a/src/images/The-Printliminator-1.png and /dev/null differ diff --git a/src/images/The-Printliminator-2.png b/src/images/The-Printliminator-2.png deleted file mode 100644 index 27bf8c9..0000000 Binary files a/src/images/The-Printliminator-2.png and /dev/null differ diff --git a/src/images/The-Printliminator-3.png b/src/images/The-Printliminator-3.png deleted file mode 100644 index 1913d38..0000000 Binary files a/src/images/The-Printliminator-3.png and /dev/null differ diff --git a/src/images/The-Printliminator-4.png b/src/images/The-Printliminator-4.png deleted file mode 100644 index 6c13525..0000000 Binary files a/src/images/The-Printliminator-4.png and /dev/null differ diff --git a/src/images/The-Printliminator-5.png b/src/images/The-Printliminator-5.png deleted file mode 100644 index 7314823..0000000 Binary files a/src/images/The-Printliminator-5.png and /dev/null differ -- cgit v1.2.3