[nodebb-plugin-emoji-extended] Emoji Extended
-
It's seem this plugin not compatible with newest update:
warn: [plugins/nodebb-plugin-emoji-extended] This plugin may not be compatible with your version of NodeBB. This may cause unintended behaviour or crashing. warn: [plugins/nodebb-plugin-emoji-extended] In the event of an unresponsive NodeBB caused by this plugin, run ./nodebb reset plugin="nodebb-plugin-emoji-extended".
-
@chas where do you see the
:bowtie: " />
? Inside the textarea or the preview (and/or the final post)?Please ensure you've not enabled the
nodebb-plugin-emoji
since it's incompatible with this one. -
Thanks @frissdiegurke , I disabled emoji and now i dont see that bug... my bad.
-
Hey @frissdiegurke, I have just one suggestion.
Please implement the Escape key to close the modal with all the emojis on. It's really annoying having to find a 15x15 x at the top right.
-
I've just done some changes (mostly reorganization of variables/settings/names).
- @a_5mith escape should now close the dialog EDIT: @julian anything wrong with the mentions regarding
_
? - automatic image-update is removed
- some changes that will ease the step of integrating custom smileys one day
- admin-page re-design (I haven't had any knowledge of bootstrap when I wrote the old one )
But: Once you update most settings (xD, there ain't many) will be reset since they got renamed. So take care, especially if you changed the customizable regex ;).
The new version contains the setting to disable the write-access within the emoji/ directory which theoretically allows you to use your own smileys.
This doesn't take care of overwrites on plugin-updates, etc. and the mappings aren't customizable yet...I've also updated the main post a very bit ^^
- @a_5mith escape should now close the dialog EDIT: @julian anything wrong with the mentions regarding
-
This post is deleted!
-
Can't seem to find this from within the ACP panel.
-
@Ted said:
Can't seem to find this from within the ACP panel.
I too
-
I don't think there is an 0.6.0-compatible version of this plugin and the latest version of it was (correctly) marked as incompatible (or rather, only compatible with 0.5.7 and earlier) and that's why it doesn't show in the ACP. Seems like it needs an update.
@frissdiegurke Would you care to update us on your plans/progress with this?
-
@Shaun, the latest version is published on NPM, and it is fully compatible with NBB 0.6.x. as can be viewed in the source on GitHub. It seems strange that it's not being listed in the ACP as an available plugin for installation, given that these checks are met.
Installing through
npm i nodebb-plugin-emoji-extended
ornpm i https://github.com/frissdiegurke/nodebb-plugin-emoji-extended.git
works fine, however. -
Yeah, I was making assumptions since it was showing up properly in my 0.5.7 ACP and disappeared from 0.6.0. I also had to remove it to get 0.6.0 to start (was causing an error, due to the plugin changes in 0.6.0, I assume) so I figured it just wasn't available for the new version. But you're right and installing through the command line works flawlessly. Thanks!
-
sorry, must have missed the posts of @Ted and @Andrea-Cardinale 21/18d ago.
@Ted is correct. The
0.4.1-x
versions are supposed to work with (and only with) NodeBB0.6.x
. They're published since Nov, 21 '14 so technically it should be fine at all.I've just manually confirmed the support within the NodeBB Package Manager, so I hope that helps the plugin to appear in ACP. Give it some hours thought.
EDIT: Even the suggestion works like a charm, so it's pretty clear it's just missing on the plugins-list
-
@frissdiegurke maybe this is of use to you: http://hassankhan.github.io/emojify.js/
-
added version
0.4.2-1
for NodeBB0.7.x
- split emoji-modal into tabs rather than displaying all at once
- using
0.7.x
way to add composer-button - fixed help-message
-
Bringing this one back to life. @frissdiegurke, best way of changing existing posts that reference http:// to https:// now that I've got an SSL Certificate. As it's giving warnings as old posts were saved with http:// before I had an SSL Cert.
-
@a_5mith As long you change the
url
within the config, it should work fine. All parsing steps AFAIK happen when a client requests a post.
Maybe it just needs a restart? -
Speaking of which, any particular reason it uses absolute urls in reference to the emojis? I'd assume
nconf.get('relative_path') + '/plugins/nodebb-plugin-emoji-extended/emoji/' + emoji + '.png'
would be sufficient?Also, any luck updating the plugin to vanillajs?
-
I guess I should use
relative_path
xD have taken this the whole way from its originsActually great timing for the second question, I've just started working on the rework again (@a_5mith already triggered this burst in motivation)
PS: It's not about just updating to plain js but rather about a whole rewrite with many improvements such as different sets to choose from, custom sets, modulating markdown related code, etc., etc.