Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Johann committed Oct 10, 2015
1 parent 7d4cdf3 commit a74301e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
V=1.1.0
V=1.1.1

release: build
rm -rf release/latest
Expand Down
2 changes: 1 addition & 1 deletion chrome/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.1.0",
"version": "1.1.1",
"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.1.0",
"version": "1.1.1",
"description": "A very simple and useful reference for the codes that can be used to generate Emojis on popular sites like GitHub or Basecamp.",
"id": "jid1-Xo5SuA6qc1DFpw",
"main": "main",
Expand Down
4 changes: 2 additions & 2 deletions safari/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>1.1.1</string>
<key>CFBundleVersion</key>
<string>1.1.0</string>
<string>1.1.1</string>
<key>Chrome</key>
<dict>
<key>Database Quota</key>
Expand Down
6 changes: 2 additions & 4 deletions shared/popup.jade
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,11 @@ html
img.about-text-img(src="./img/emoji/heart.png")
div.half
p.center
| Version 1.1.0 -
| Version 1.1.1 -
img.about-text-img(src="./img/emoji/tropical_fish.png")
hr
ul
if browser == "Chrome" || browser == "Firefox"
li New setting to copy emoji images to use in Gmail and many other places (thanks to @webcaetano)
li Code improvements
li Insert into page as an optional default action on click (thanks to @michyprima)
hr
p
+link("https://github.com/johannhof/emoji-helper/releases")
Expand Down
4 changes: 2 additions & 2 deletions shared/src/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// local vars for linting (and performance)
var vendor = window.vendor;

var VERSION = "1.1.0";
var VERSION = "1.1.1";

// upper bar
var logos = document.querySelectorAll(".group-logo");
Expand Down Expand Up @@ -355,7 +355,7 @@
whatToCopy = "unicode";
vendor.setLocal("copy-setting", "unicode");
});

if(insertName) {
insertName.addEventListener("click", function () {
whatToCopy = "insertname";
Expand Down

0 comments on commit a74301e

Please sign in to comment.