Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Fauntleroy committed Oct 12, 2015
1 parent 208769f commit c8becbb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ node_modules

# Do not include compiled files
dist

# Do not include zip
*.zip
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Slack Emoji Utils
## Slack Emoji Tools

Drag and drop all your emoji.

Expand Down Expand Up @@ -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.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand All @@ -22,9 +22,9 @@
"author": "Timothy Kempf <[email protected]> (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",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Uploader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ var Uploader = React.createClass({
},
render: function () {
return (
<div className="slack-emoji-utils">
<div className="slack-emoji-tools">
<h4 className="set__uploader__heading">Bulk Emoji Uploader</h4>
<p className="set__uploader__subheading">Drag and drop images into the area below. Any images dropped there will be automatically uploaded using their filename as the emoji name.</p>
<p className="set__uploader__input-note input_note">Example: <span className="normal">"ditto.gif" will be added as "ditto"</span></p>
Expand Down
6 changes: 3 additions & 3 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -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*"],
Expand Down

0 comments on commit c8becbb

Please sign in to comment.