MyBB Community Forums

Full Version: Rin Editor 1.2.4 (Powerd by CKEditor)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Missing "add url/link" button in th newest version... any other deletions?
(2020-12-08, 05:29 PM)Eldenroot Wrote: [ -> ]Missing "add url/link" button in th newest version... any other deletions?

It was not intentional ... I just didn't realize it. Thank you for letting me know.

i will relase fix...
but if you can't wait you can do by yourself:

go to config.js ( https://github.com/martec/Rin-Editor/blo.../config.js )

Find:

		{ name: 'insert' },

add below:

		{ name: 'links' },

1.0.3 Released

Change log:
https://community.mybb.com/mods.php?acti...og&pid=657

How update:
- Unistall old version.
- Upload new version.
- Install new version.

(2020-12-08, 05:29 PM)Eldenroot Wrote: [ -> ]Missing "add url/link" button in th newest version... any other deletions?

thanks for report. Fixed in 1.0.3
Thank you, +1 - works fine!
1.0.4 Released

Change log:
https://community.mybb.com/mods.php?acti...og&pid=657

Added the possibility to define the black textarea for each theme (Check the first post of "How install new skin in Rin Editor v 1.0.4 or above:" section to learn how to set the textarea to black.)

How update:
- Unistall old version.
- Upload new version.
- Install new version.



Tips: How unofficially add table plugin


Requirement: Rin Editor 1.0.4 or above.

Caution: This is unofficial modification. I will not support issues related to the Table.

PS: Table button on toolbar only will work in wysiwyg mode

Steps:

1 - Download table plugin: https://ckeditor.com/cke4/addon/table
2 - Extract No. 1 to: root/jscripts/rin/editor/plugins
3 - Open and edit  root/jscripts/rin/editor/config.js

Find:
config.language = rinlanguage;

Add above:
config.extraPlugins = 'table';

4 - Clear your browser's cache, if you're using cloudflare, you also need to clear your cloudflare cache (https://support.cloudflare.com/hc/en-us/...Cloudflare).

5 - Add "caption, table, td, th and tr" mycode.

mycode sample:
caption

\[caption\](.*?)\[/caption\]
<caption>$1</caption>

table

\[table(=(\d{1,3})|=|)(,|)(center|left|right|)\](.*?)\[\/table\]
<table style="width: $2px;" align="$4" border="1">$5</table>

td

\[td(=(center|left|right)|)\](.*?)\[/td\]
<td style="text-align: $2;">$3</td>

th

\[th\](.*?)\[/th\]
<th style="text-align: center;">$1</th>

tr

\[tr\](.*?)\[/tr\]
<tr>$1</tr>

It's all.
@martec - great! Tables are in editor, finally! I would like to see better imgur integration (multiple uploading at once, dropdown box for upload) + ctrl+v for adding images into text (but this is not possible as you wrote). And one more - why did you remove addtional settings for images? I really liked the custom width/height of image... it was really useful (I do not use css for autoresize).

EDIT:
Is possible to change layout and design for popups? I really like how the default ckeditor looks (I mean whne oyu click on image button, link button etc).
https://ckeditor.com/ckeditor-4/demo/#article
(2020-12-13, 01:10 PM)Eldenroot Wrote: [ -> ]multiple uploading at once

already support multiple upload images... you need select more than one image.

(2020-12-13, 01:10 PM)Eldenroot Wrote: [ -> ]dropdown box for upload

no plan to do this...

(2020-12-13, 01:10 PM)Eldenroot Wrote: [ -> ]ctrl+v for adding images into text (but this is not possible as you wrote).

plz give me steps to reproduce this here on https://community.mybb.com
try by yourself if you can. And link me the post. You can do in testing folder https://community.mybb.com/forum-13.html

(2020-12-13, 01:10 PM)Eldenroot Wrote: [ -> ]And one more - why did you remove addtional settings for images? I really liked the custom width/height of image... it was really useful (I do not use css for autoresize).

read from here https://community.mybb.com/thread-189422...pid1306846 until https://community.mybb.com/thread-189422...pid1308577

post No 371 ~ 376

(2020-12-13, 01:10 PM)Eldenroot Wrote: [ -> ]Is possible to change layout and design for popups? I really like how the default ckeditor looks (I mean whne oyu click on image button, link button etc).
https://ckeditor.com/ckeditor-4/demo/#article

You need change theme to rin-moono-lisa
[Image: FsQNeKP.png]
OK, thank you. I did not know the issue for width and height in images, so I assume that there is no another way how to make it working (https://ckeditor.com/cke4/addon/image2)

One more thing - I would like to ask you if is possible to add a new button for background color (text highlighting), now we can just change the font color not the background color of the text. There is a plugin for CKeditor, is possible to use it somehow?

https://ckeditor.com/cke4/addon/colorbutton

Thank you! I am really happy that you are back and we get new updates for CKeditor!
(2020-12-13, 03:32 PM)Eldenroot Wrote: [ -> ]OK, thank you. I did not know the issue for width and height in images, so I assume that there is no another way how to make it working (https://ckeditor.com/cke4/addon/image2)

you can try by yourself... but it probably won't work.

(2020-12-13, 03:32 PM)Eldenroot Wrote: [ -> ]One more thing - I would like to ask you if is possible to add a new button for background color (text highlighting), now we can just change the font color not the background color of the text. There is a plugin for CKeditor, is possible to use it somehow?

https://ckeditor.com/cke4/addon/colorbutton

no plan to do this... this isn't default feature by mybb.

1.0.5 Released

Change log:
https://community.mybb.com/mods.php?acti...og&pid=657

How update:
- Unistall old version.
- Upload new version.
- Install new version.
This plugin seems to ignore the user option to disable the editor entirely. Is this on purpose?
1.0.6 Released

Change log:
https://community.mybb.com/mods.php?acti...og&pid=657

How update:
- Unistall old version.
- Upload new version.
- Install new version.


(2020-12-14, 07:39 AM)Omar G. Wrote: [ -> ]This plugin seems to ignore the user option to disable the editor entirely. Is this on purpose?

Hi,

are you saying about this [Image: 2HAzZx1.png] ?


Thanks for report! Fixed in 1.0.6



1.0.7 Released

Change log:
https://community.mybb.com/mods.php?acti...og&pid=657

How update:
- Unistall old version.
- Upload new version.
- Install new version.