5 liens privรฉs
Deux ans aprรจs Apple, Google, qui dรฉveloppe le systรจme dโexploitation Android, a transformรฉ son image dโarme mรฉtallique par un jouet en plastique.
Android's infamous blob emoji is dead.
EmojiOne1 has today released version 3.0 which includes a complete redesign of every emoji, support for all emojis approved in 2016, and updates to licensing terms.
After months of work aligning Unicode 10.0 code points with new features in Emoji 5.0, the 2017 emoji list is now final.
I've came across this awesomeย open source set called Emoji One, which features over 1600 emojis and is ready to be used with CC BY 4.0 license. I've created a KEmoticons theme out of the last released set, supporting both the :ascii: notation as well as the unicode symbols which were gladly contributed by David Gil Oliva. This theme of course supports the good old emoticons too :)
And today I'm happy to announce that all is merged in now and will be released with next KDE Frameworks release.
Des emojis partout \o/ :grinning: :gear: :balloon:
Add colorful emojis to your Shaarli
plugins/emojione/emojione.css
:
img.emojione {
display: inline-block;
line-height: normal;
font-size: inherit;
vertical-align: middle;
position: relative;
width: 1.1em;
height: 1.1em;
top: -0.1em;
}
plugins/emojione/emojione.js
:
var posts = document.querySelectorAll('.link-tag, .link-description, .link-title, a, p, .dailyEntryTags');
emojione.imageType = 'svg';
emojione.imagePathSVG = "https://cdn.jsdelivr.net/emojione/assets/svg/";
emojione.imagePathPNG = "https://cdn.jsdelivr.net/emojione/assets/png/";
Array.prototype.forEach.call(posts, function(el, i){
var parsed = emojione.toImage(el.innerHTML);
el.innerHTML = parsed;
});
plugins/emojione/emojione.php
:
<?php
function hook_emojione_render_includes($data)
{
$data['css_files'][] = PluginManager::$PLUGINS_PATH . '/emojione/emojione.css';
return $data;
}
function hook_emojione_render_footer($data)
{
$data['js_files'][] = 'https://cdn.jsdelivr.net/emojione/2.1.4/lib/js/emojione.min.js';
$data['js_files'][] = PluginManager::$PLUGINS_PATH . '/emojione/emojione.js';
return $data;
}
plugins/emojione/emojione.meta
:
description="A plugin to add colorful emojis to your Shaarli."
Puis activez le nouveau plugin.