Hello martec, thank you very much!martec wrote: Wed May 03, 2023 5:44 am 0.4.7-beta Released
Enhancement
- Add support to Simple mentions 2.0 by request of Octopus (viewtopic.php?p=15950146#p15950146)
※This version doesnt support more Simple mentions 1.0.5
hello,Thank you wrote: Sun May 07, 2023 9:35 am Hello, I have English and Hebrew usernames on my board, and with the latest release simple mention only works with the English usernames, but it's not detecting the Hebrew ones...
Without your extention it works greatmartec wrote: Mon May 08, 2023 12:58 amhello,Thank you wrote: Sun May 07, 2023 9:35 am Hello, I have English and Hebrew usernames on my board, and with the latest release simple mention only works with the English usernames, but it's not detecting the Hebrew ones...
Could you please test Simple mentions 2.0 with my extension disabled (Rin Editor)?
I think you need to replace in rin/editor/styles/all/template/js/automention.jsmartec wrote: Mon May 08, 2023 12:58 amhello,Thank you wrote: Sun May 07, 2023 9:35 am Hello, I have English and Hebrew usernames on my board, and with the latest release simple mention only works with the English usernames, but it's not detecting the Hebrew ones...
Could you please test Simple mentions 2.0 with my extension disabled (Rin Editor)?
Code: Select all
function remoteSearch(a,b){a.length<MIN_MENTION_LENGTH?b([]):$.getJSON(U_AJAX_MENTION_URL,{q:encodeURIComponent(a)},function(a){b(a)})}
Code: Select all
function remoteSearch(a,b){a.length<MIN_MENTION_LENGTH?b([]):$.getJSON(U_AJAX_MENTION_URL,{q:a},function(a){b(a)})}
The function below is inserted in the past version as well. It could be the cause but it's strange to say that it was in this last version only if the function below was always there.Thank you wrote: Mon May 08, 2023 1:59 amI think you need to replace in rin/editor/styles/all/template/js/automention.jsmartec wrote: Mon May 08, 2023 12:58 am
hello,
Could you please test Simple mentions 2.0 with my extension disabled (Rin Editor)?
from thisto thisCode: Select all
function remoteSearch(a,b){a.length<MIN_MENTION_LENGTH?b([]):$.getJSON(U_AJAX_MENTION_URL,{q:encodeURIComponent(a)},function(a){b(a)})}
makes sense?Code: Select all
function remoteSearch(a,b){a.length<MIN_MENTION_LENGTH?b([]):$.getJSON(U_AJAX_MENTION_URL,{q:a},function(a){b(a)})}
Its the first time im installing Rin Editor (great extension BTW) and i encountered that issue, and after changing the code, the issue is gonemartec wrote: Mon May 08, 2023 2:37 amThe function below is inserted in the past version as well. It could be the cause but it's strange to say that it was in this last version only if the function below was always there.Thank you wrote: Mon May 08, 2023 1:59 am
I think you need to replace in rin/editor/styles/all/template/js/automention.js
from thisto thisCode: Select all
function remoteSearch(a,b){a.length<MIN_MENTION_LENGTH?b([]):$.getJSON(U_AJAX_MENTION_URL,{q:encodeURIComponent(a)},function(a){b(a)})}
makes sense?Code: Select all
function remoteSearch(a,b){a.length<MIN_MENTION_LENGTH?b([]):$.getJSON(U_AJAX_MENTION_URL,{q:a},function(a){b(a)})}
encodeURIComponent
Strange regardless of my extension's existence, it shouldn't affect the inner workings of a function.KFMDM Solutions wrote: Tue May 09, 2023 4:25 am i found another issue
remove_mention_in_quote is not implemented
https://github.com/paul999/mention/blob ... r.php#L368
sorry you're rightmartec wrote: Tue May 09, 2023 12:21 pmStrange regardless of my extension's existence, it shouldn't affect the inner workings of a function.KFMDM Solutions wrote: Tue May 09, 2023 4:25 am i found another issue
remove_mention_in_quote is not implemented
https://github.com/paul999/mention/blob ... r.php#L368