Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
We've teamed up with [JSDelivr](https://www.npmjs.com/settings/joypixels/packages) 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="https://cdn.jsdelivr.net/npm/emoji-toolkit@10.0.0/lib/js/joypixels.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/emoji-toolkit@10.0.0/extras/css/joypixels.min.css"/>
<script src="https://cdn.jsdelivr.net/npm/emoji-toolkit@11.0.0/lib/js/joypixels.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/emoji-toolkit@11.0.0/extras/css/joypixels.min.css"/>
```

Quick installs can also be done using NPM and many of it's alternatives (for the Javascript toolkit) or Composer (for the PHP toolkit). **If you wish to serve image assets locally you'll need to install [emoji-assets](https://www.github.com/joypixels/emoji-assets) and include the pngs and/or sprites into your project.** Many of our [demos](https://demos.joypixels.com/latest/) use assets locally simply by pointing the `imagePathPNG` variable to your local asset location.
Expand Down
4 changes: 2 additions & 2 deletions USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

Both PHP and JavaScript libraries now have wider range of available properties. The following are available for both libraries.

- `emojiVersion` (str) - Used only to direct CDN path. This is a 2-digit version (e.g. '10.0'). Not recommended for usage below 3.0.0.
- `emojiSize` (str) **Default: `32`** - Used only to direct CDN path for non-sprite PNG usage. Available options are '32', '64', and '128'.
- `emojiVersion` (str) - Used only to direct CDN path. This is a 2-digit version (e.g. '11.0'). Not recommended for usage below 3.0.0.
- `emojiSize` (str) **Default: `32`** - Used only to direct CDN path for non-sprite PNG usage. Available options are '32' and '64'.
- `imagePathPNG` (str) - Defaults to CDN (jsdelivr) path. Setting as alternate path overwrites `emojiSize` option.
- `fileExtension` (str) - Defaults to .png. Set to '.svg' if using premium assets (.svg) locally.
- `greedyMatch` (bool) **Default: `false`** - When `true`, matches non-fully-qualified Unicode values.
Expand Down
2 changes: 1 addition & 1 deletion emoji.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion emoji_strategy.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions examples/OTHER.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ By default, both the Javascript and PHP toolkits we've provided will use the nat
**HTML Output (default)**
```html
<p id="example-png">
PNG: Hello world! <img class="joypixels" alt="😄" title=":smile:" src="https://cdn.jsdelivr.net/joypixels/assets/10.0/png/unicode/32/1f604.png">
PNG: Hello world! <img class="joypixels" alt="😄" title=":smile:" src="https://cdn.jsdelivr.net/joypixels/assets/11.0/png/unicode/32/1f604.png">
</p>
```

Expand All @@ -32,7 +32,7 @@ $(document).ready(function() {
**HTML Output For Shortname Alt**
```html
<p id="example-png">
PNG: Hello world! <img class="joypixels" alt=":smile:" title=":smile:" src="https://cdn.jsdelivr.net/joypixels/assets/10.0/png/unicode/32/1f604.png">
PNG: Hello world! <img class="joypixels" alt=":smile:" title=":smile:" src="https://cdn.jsdelivr.net/joypixels/assets/11.0/png/unicode/32/1f604.png">
</p>
```

Expand Down Expand Up @@ -83,7 +83,7 @@ $(document).ready(function() {
callback(newResults);
},
template: function (shortname) {
return '<img class="joypixels" src="https://cdn.jsdelivr.net/joypixels/assets/10.0/png/unicode/32/'+unicode+'.png"/> :'+emojiStrategy[shortname].unicode+':';
return '<img class="joypixels" src="https://cdn.jsdelivr.net/joypixels/assets/11.0/png/unicode/32/'+unicode+'.png"/> :'+emojiStrategy[shortname].unicode+':';
},
replace: function (shortname) {
return ':'+shortname+': ';
Expand Down
4 changes: 4 additions & 0 deletions extras/alpha-codes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
changelog
---------

#### 11.0 / 2026-06
* additions
* Unicode 17 characters

#### 10.0 / 2025-10
* additions
* Unicode 16 characters
Expand Down
165 changes: 164 additions & 1 deletion extras/alpha-codes/eac.csv

Large diffs are not rendered by default.

980 changes: 979 additions & 1 deletion extras/alpha-codes/eac.json

Large diffs are not rendered by default.

Loading