From c8becbbef441a1c142b181e6fa86f62c679e5809 Mon Sep 17 00:00:00 2001 From: Timothy Kempf Date: Mon, 12 Oct 2015 07:48:07 -0700 Subject: [PATCH] 1.0.0 --- .gitignore | 3 +++ README.md | 4 ++-- package.json | 12 ++++++------ src/components/Uploader.jsx | 2 +- src/manifest.json | 6 +++--- 5 files changed, 15 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 6731d9c..22ee609 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,6 @@ node_modules # Do not include compiled files dist + +# Do not include zip +*.zip diff --git a/README.md b/README.md index 2957f08..6eb4227 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## Slack Emoji Utils +## Slack Emoji Tools Drag and drop all your emoji. @@ -33,6 +33,6 @@ Follow these steps to get your dev workflow in order: - Run `npm run build` to build the distributable files - Go to [chrome://extensions](chrome://extensions) in Google Chrome - Click "Load unpacked extension..." (*make sure "Developer Mode" is checked*) -- Select the `dist/` directory in your Slack Emoji Utils repo +- Select the `dist/` directory in your Slack Emoji Tools repo Once you've done all these things, the extension should appear in your extensions list. If you want to actively work on the extension, run `npm run dev`—this will watch the `src/` directory for changes and update the contents of `dist/` automatically. You will then need to go to the [chrome://extensions/](chrome://extensions) page, manually reload the extension, and refresh the page. diff --git a/package.json b/package.json index 842e757..7bda264 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "slack-emoji-utils", - "version": "1.0.0-alpha.0", - "description": "Utilities that make life as a Slack emoji addict a little easier.", + "name": "slack-emoji-tools", + "version": "1.0.0", + "description": "Tools that make life as a Slack emoji addict a little easier.", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", @@ -10,7 +10,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/Fauntleroy/slack-emoji-utils.git" + "url": "git+https://github.com/Fauntleroy/slack-emoji-tools.git" }, "keywords": [ "slack", @@ -22,9 +22,9 @@ "author": "Timothy Kempf (http://kemp59f.info)", "license": "ISC", "bugs": { - "url": "https://github.com/Fauntleroy/slack-emoji-utils/issues" + "url": "https://github.com/Fauntleroy/slack-emoji-tools/issues" }, - "homepage": "https://github.com/Fauntleroy/slack-emoji-utils#readme", + "homepage": "https://github.com/Fauntleroy/slack-emoji-tools#readme", "devDependencies": { "babelify": "^6.3.0", "browserify": "^11.2.0", diff --git a/src/components/Uploader.jsx b/src/components/Uploader.jsx index fa5e48c..605dfa5 100644 --- a/src/components/Uploader.jsx +++ b/src/components/Uploader.jsx @@ -63,7 +63,7 @@ var Uploader = React.createClass({ }, render: function () { return ( -
+

Bulk Emoji Uploader

Drag and drop images into the area below. Any images dropped there will be automatically uploaded using their filename as the emoji name.

Example: "ditto.gif" will be added as "ditto"

diff --git a/src/manifest.json b/src/manifest.json index 73f57c8..19cac10 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { - "name": "Slack Emoji Utils", - "description": "Utilities that make life as a Slack emoji addict a little easier.", - "version": "1.0.0.0", + "name": "Slack Emoji Tools", + "description": "Tools that make life as a Slack emoji addict a little easier.", + "version": "1.0.0", "permissions": ["activeTab"], "content_scripts": [{ "matches": ["*://*.slack.com/customize/emoji*"],