Skip to content
This repository has been archived by the owner on Jul 23, 2019. It is now read-only.

Commit

Permalink
improved unicode 9 data
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyahenson committed Jun 28, 2016
1 parent c40e86a commit 48ab43b
Show file tree
Hide file tree
Showing 41 changed files with 3,035 additions and 1,698 deletions.
58 changes: 29 additions & 29 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
babel-compiler@6.6.4
babel-runtime@0.1.8
base64@1.0.8
blaze@2.1.7
blaze-tools@1.0.8
caching-compiler@1.0.4
babel-compiler@6.8.2
babel-runtime@0.1.9
base64@1.0.9
blaze@2.1.8
blaze-tools@1.0.9
caching-compiler@1.0.5
caching-html-compiler@1.0.6
check@1.2.1
check@1.2.3
deps@1.0.12
diff-sequence@1.0.5
ecmascript@0.4.3
ecmascript-runtime@0.2.10
ejson@1.0.11
diff-sequence@1.0.6
ecmascript@0.4.5
ecmascript-runtime@0.2.11
ejson@1.0.12
emojione:emojione@2.2.3
html-tools@1.0.9
htmljs@1.0.9
id-map@1.0.7
jquery@1.11.8
meteor@1.1.14
minifier-js@1.1.11
modules@0.6.1
modules-runtime@0.6.3
mongo-id@1.0.4
observe-sequence@1.0.11
promise@0.6.7
random@1.0.9
reactive-var@1.0.9
spacebars@1.0.11
spacebars-compiler@1.0.11
templating@1.1.9
html-tools@1.0.10
htmljs@1.0.10
id-map@1.0.8
jquery@1.11.9
meteor@1.1.15
minifier-js@1.1.12
modules@0.6.3
modules-runtime@0.6.4
mongo-id@1.0.5
observe-sequence@1.0.12
promise@0.7.2
random@1.0.10
reactive-var@1.0.10
spacebars@1.0.12
spacebars-compiler@1.0.12
templating@1.1.11
templating-tools@1.0.4
tracker@1.0.13
underscore@1.0.8
tracker@1.0.14
underscore@1.0.9
38 changes: 19 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ When storing user inputted text in your database, say from a guestbook or throug
We've teamed up with [JSDelivr](http://www.jsdelivr.com/#!emojione) to provide a simple way to install these emoji on any javascript-enabled website. Add the following script and stylesheet links to the head of your webpage:

```
<script src="//cdn.jsdelivr.net/emojione/2.2.4/lib/js/emojione.min.js"></script>
<link rel="stylesheet" href="//cdn.jsdelivr.net/emojione/2.2.4/assets/css/emojione.min.css"/>
<script src="//cdn.jsdelivr.net/emojione/2.2.5/lib/js/emojione.min.js"></script>
<link rel="stylesheet" href="//cdn.jsdelivr.net/emojione/2.2.5/assets/css/emojione.min.css"/>
```

Alternatively, CDNjs is also available as a [CDN Host for Emoji One](https://cdnjs.com/libraries/emojione).
Expand Down Expand Up @@ -62,19 +62,19 @@ Below there are some examples of how you will actually use the libraries to conv
### Javascript Conversion


**[.toShort\(str\)](http://git.emojione.com/demos/2.2.4/jstoshort.html)** - _native unicode -> shortnames_
**[.toShort\(str\)](http://git.emojione.com/demos/latest/jstoshort.html)** - _native unicode -> shortnames_

This demo shows you how to take native unicode emoji input, such as that from your mobile device, and translate it to their corresponding shortnames. (we recommend this for database storage)

**[.shortnameToImage\(str\)](http://git.emojione.com/demos/2.2.4/jsshortnametoimage.html)** - _shortname -> images_
**[.shortnameToImage\(str\)](http://git.emojione.com/demos/latest/jsshortnametoimage.html)** - _shortname -> images_

This demo shows you how to take input containing only shortnames and translate it directly to Emoji One images. (when displaying the unified input to clients)

**[.unicodeToImage\(str\)](http://git.emojione.com/demos/2.2.4/jsunicodetoimage.html)** - _native unicode -> images_
**[.unicodeToImage\(str\)](http://git.emojione.com/demos/latest/jsunicodetoimage.html)** - _native unicode -> images_

This demo shows you how to take native unicode emoji input, such as that from your mobile device, and translate it directly to Emoji One images. (would be great for a live editor preview)

**[.toImage\(str\)](http://git.emojione.com/demos/2.2.4/jstoimage.html)** - _native unicode + shortnames -> images (mixed input)_
**[.toImage\(str\)](http://git.emojione.com/demos/latest/jstoimage.html)** - _native unicode + shortnames -> images (mixed input)_

This demo shows you how to take input containing both native unicode emoji and shortnames, and translate it into Emoji One images for display.

Expand All @@ -83,19 +83,19 @@ This demo shows you how to take input containing both native unicode emoji and s

##### As of version 1.4.1 this library syntax has changed.

**[toShort\($str\)](http://git.emojione.com/demos/2.2.4/phptoshort.php)** - _native unicode -> shortnames_
**[toShort\($str\)](http://git.emojione.com/demos/latest/phptoshort.php)** - _native unicode -> shortnames_

This demo shows you how to take native unicode emoji input, such as that from your mobile device, and translate it to their corresponding shortnames. (we recommend this for database storage)

**[shortnameToImage\($str\)](http://git.emojione.com/demos/2.2.4/phpshortnametoimage.php)** - _shortname -> images_
**[shortnameToImage\($str\)](http://git.emojione.com/demos/latest/phpshortnametoimage.php)** - _shortname -> images_

This demo shows you how to take input containing only shortnames and translate it directly to Emoji One images. (when displaying the unified input to clients)

**[unicodeToImage\($str\)](http://git.emojione.com/demos/2.2.4/phpunicodetoimage.php)** - _native unicode -> images_
**[unicodeToImage\($str\)](http://git.emojione.com/demos/latest/phpunicodetoimage.php)** - _native unicode -> images_

This demo shows you how to take native unicode emoji input, such as that from your mobile device, and translate it directly to Emoji One images. (would be great for a live editor preview)

**[toImage\($str\)](http://git.emojione.com/demos/2.2.4/phptoimage.php)** - _native unicode + shortnames -> images (mixed input)_
**[toImage\($str\)](http://git.emojione.com/demos/latest/phptoimage.php)** - _native unicode + shortnames -> images (mixed input)_

This demo shows you how to take input containing both native unicode emoji and shortnames, and translate it into Emoji One images for display.

Expand Down Expand Up @@ -134,39 +134,39 @@ Or

### Extras

**[shortnameToUnicode(str)](http://git.emojione.com/demos/2.2.4/shortnametounicode.html)**
**[shortnameToUnicode(str)](http://git.emojione.com/demos/latest/shortnametounicode.html)**

Change from shortnames to native unicode emoji.

**[Shortname Autocomplete](http://git.emojione.com/demos/2.2.4/autocomplete.html)**
**[Shortname Autocomplete](http://git.emojione.com/demos/latest/autocomplete.html)**

Easily add shortname autocomplete functionality to any text input on your page.

**[ASCII Smiley Conversion](http://git.emojione.com/demos/2.2.4/ascii-smileys.html)**
**[ASCII Smiley Conversion](http://git.emojione.com/demos/latest/ascii-smileys.html)**

With one quick step you can start converting common ASCII smileys to their corresponding images.

**[Alternate Alt Tags](http://git.emojione.com/demos/2.2.4/alternate-alt-tags.html)**
**[Alternate Alt Tags](http://git.emojione.com/demos/latest/alternate-alt-tags.html)**

Change from the native unicode emoji in the resulting alt tags to their shortnames instead.

**[Live Preview Box](http://git.emojione.com/demos/2.2.4/live-preview.html)**
**[Live Preview Box](http://git.emojione.com/demos/latest/live-preview.html)**

Display converted Emoji in a preview box as the user is typing.

**[Conversion HTML Class](http://git.emojione.com/demos/2.2.4/class-convert.html)**
**[Conversion HTML Class](http://git.emojione.com/demos/latest/class-convert.html)**

Stick a class of .emojione-convert on any HTML element and automatically convert native unicode emoji and/or shortnames to images after page load.

**[Convert on Form Submission](http://git.emojione.com/demos/2.2.4/convert-on-submit.html)**
**[Convert on Form Submission](http://git.emojione.com/demos/latest/convert-on-submit.html)**

Converts unicode input to shortnames once the user submits the form.

**[Sprites (PNG)](http://git.emojione.com/demos/2.2.4/sprites-png.html)**
**[Sprites (PNG)](http://git.emojione.com/demos/latest/sprites-png.html)**

With an additional CSS file you can use Emoji One as resizable PNG sprites (up to 64x64).

**[Sprites (SVG)](http://git.emojione.com/demos/2.2.4/sprites-svg.html)**
**[Sprites (SVG)](http://git.emojione.com/demos/latest/sprites-svg.html)**

This sprite method requires no extra CSS, and is infinitely resizable.

Expand Down
Loading

0 comments on commit 48ab43b

Please sign in to comment.