Skip to content

Commit

Permalink
2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
johannhof committed Jul 9, 2017
1 parent 616184b commit c7f563d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var request = require("request-promise-native");
var fs = require("fs-extra");

const BUILD_DIR = "./build/";
const VERSION = "1.2.0";
const VERSION = "2.0.0";

var static = [
"./data/emoji/clock9.png",
Expand All @@ -19,7 +19,7 @@ var static = [
"./data/emoji/oncoming_automobile.png",
"./data/emoji/symbols.png",
"./data/emoji/hatched_chick.png",
"./data/emoji/octopus.png",
"./data/emoji/owl.png",
"./data/emoji/heart.png"
];

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "Emoji Cheatsheet for GitHub, Basecamp etc.",
"short_name": "Emoji Helper",
"description": "A very simple and useful reference for the codes that can be used to generate Emojis on popular sites like GitHub or Basecamp.",
"version": "1.2.0",
"version": "2.0.0",
"icons": {
"32": "icon32.png",
"48": "icon48.png",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "emoji-helper",
"title": "Emoji Cheatsheet for GitHub, Basecamp etc.",
"version": "1.2.0",
"version": "2.0.0",
"description": "A very simple and useful reference for the codes that can be used to generate Emojis on popular sites like GitHub or Basecamp.",
"author": "Johann Hofmann",
"homepage": "http://github.com/johannhof/emoji-helper",
Expand Down
13 changes: 5 additions & 8 deletions src/popup.jade
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,14 @@ html
img.about-text-img(src="./img/emoji/heart.png")
div.half
p.center
| Version 1.2.0 -
img.about-text-img(src="./img/emoji/octopus.png")
| Version 2.0.0 -
img.about-text-img(src="./img/emoji/owl.png")
hr
ul
li
| "Clear history" option in the settings (by
+link("https://github.com/jackunion") @jackunion
| )
li
| Show the emoji name on hover, also by
+link("https://github.com/jackunion") @jackunion
| Now as a
+link("https://developer.mozilla.org/en-US/Add-ons/WebExtensions") WebExtension!
li Updated Emoji to the latest set and added all the missing new Emoji!
hr
p
+link("https://github.com/johannhof/emoji-helper/releases")
Expand Down
2 changes: 1 addition & 1 deletion src/popup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(function() {
const VERSION = "1.2.0";
const VERSION = "2.0.0";

function getLocal(name, cb) {
chrome.storage.local.get(name, function(item) {
Expand Down
4 changes: 2 additions & 2 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ body {
/* Sprite height / 2 */
background-size: 897px;
transform: scale(1.2);
height: 22px;
width: 22px;
height: 23px;
width: 23px;
margin: 8px;
}
#copy-message {
Expand Down

0 comments on commit c7f563d

Please sign in to comment.