[ABD] Emoji Picker 0.2.5

Any abandoned Extensions will be moved to this forum.

WARNING: Extensions in this forum are not currently being supported or maintained by the original Extension author. Proceed at your own risk.
Forum rules
IMPORTANT: Extension Development Forum rules

WARNING: Extensions in this forum are not currently being supported nor updated by the original Extension author. Proceed at your own risk.
Locked
User avatar
potku
Registered User
Posts: 980
Joined: Wed Dec 22, 2004 10:26 pm
Location: Tampere, Finland
Contact:

Re: [3.1][3.2][BETA] Emoji Picker 0.2.2

Post by potku »

Mathieu M. wrote: Wed Jan 11, 2017 9:36 am There's also a bug with the cursor which is not where it should be in textarea, when you have not wrote someting yet :

Image
Unfortunately, it is more than that. Here's a screencap of my post a few moments ago that I couldn't send.

Image
Potku.net

"Before I speak, I have something important to say."

- Groucho Marx
User avatar
nedka
Registered User
Posts: 162
Joined: Tue Jun 28, 2005 8:55 am
Name: Khoa Nguyen

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by nedka »

KenTSA wrote: Tue Jan 10, 2017 9:40 pm When emoji picker is active, bb codes from mchat doesn't work....can you solved it? And can you put emoji picker in mchat?
I will test it and add support later, sure :D
strelok-by wrote: Tue Jan 10, 2017 9:10 pm no, set 0.2.2 . Cache cleaning
Give me the style name, strelok-by, I will check it.
nextgen wrote: Wed Jan 11, 2017 4:12 am Great extension nedka, but dont's works for me phpBB in 3.2.0... :(
Hi nextgen, what is your style? I will check its posting template. Maybe the jQuery selector not match as prosilver:

Code: Select all

$('div#message-box > textarea, textarea[data-emojipicker="true"]')


Although "php array to string conversion" notices come from a bug since phpBB 3.2.0-RC2, but this ext still works.
potku wrote: Wed Jan 11, 2017 11:21 am Unfortunately, it is more than that. Here's a screencap of my post a few moments ago that I couldn't send.

Image
I've fixed these height issues, potku. Thanks for your reports.
Mathieu M. wrote: Wed Jan 11, 2017 9:36 am There's also a bug with the cursor which is not where it should be in textarea, when you have not wrote someting yet :

Image
Ha ha, Mathieu, I forgot about this funny bug on Firefox, it has reported since 2013. Anyway, I added a trick to resolve it. Test the new version, and let me know the result. I've tested it on FireFox 50.1.


v0.1.3 / v0.2.3 released with fixed issues:
- Incorrect cursor position on BBCode buttons or appear beside the Emoji icon (Only FireFox).
- Set min-height on the quick reply form.
- Breaks long words.
User avatar
potku
Registered User
Posts: 980
Joined: Wed Dec 22, 2004 10:26 pm
Location: Tampere, Finland
Contact:

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by potku »

Nedka, aren't you one to reply quickly? :)

Custom BBCodes do not show up in posting template. Is there a way to fix this?
Potku.net

"Before I speak, I have something important to say."

- Groucho Marx
User avatar
null2
Registered User
Posts: 516
Joined: Wed Jan 20, 2010 11:03 am

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by null2 »

Its not compatible with "Background Image in Text Area" extension: https://www.phpbb.com/customise/db/exte ... text_area/
Sorry for my bad english. I'm from USA.
GenesMan
Registered User
Posts: 9
Joined: Fri Jan 06, 2017 12:04 pm

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by GenesMan »

Code: Select all

<?php
/**
* This file is part of the Emoji Picker package.
*
* @copyright (c) VinaBB <vinabb.vn>
* @license GNU General Public License, version 2 (GPL-2.0)
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

if (empty($lang) || !is_array($lang))
{
	$lang = [];
}

/**
* All language files should use UTF-8 as their encoding
* and the files must not contain a BOM.
*/
$lang = array_merge($lang, [
	'EMOJI_BUTTON_EXPLAIN'	=> 'Use a tecla Tab para inserir o Emoji mais rapidamente.',
	'EMOJI_CATS'			=> [
		'ACTIVITIES'	=> 'Atividades',
		'FLAGS'			=> 'Bandeiras',
		'FOOD'			=> 'Comida e Bebida',
		'NATURE'		=> 'Animais e Natureza',
		'OBJECTS'		=> 'Objetos',
		'RECENT'		=> 'Recente',
		'SMILIES'		=> 'Smilies e Pessoas',
		'SYMBOLS'		=> 'Símbolos',
		'TONES'			=> 'Diversidade',
		'TRAVEL'		=> 'Viagem e Lugares'
	]
]);
My contribution , translated common.php to Portuguese Brazillian ;)
User avatar
nedka
Registered User
Posts: 162
Joined: Tue Jun 28, 2005 8:55 am
Name: Khoa Nguyen

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by nedka »

potku wrote: Wed Jan 11, 2017 10:11 pm Nedka, aren't you one to reply quickly? :)

Custom BBCodes do not show up in posting template. Is there a way to fix this?
potku, I've just tested it and custom BBCodes should work:

Image

Or there is a problem from your style?

null2 wrote: Wed Jan 11, 2017 10:14 pm Its not compatible with "Background Image in Text Area" extension: https://www.phpbb.com/customise/db/exte ... text_area/
Hi null2, just open ext/alex75/imageintextarea/styles/prosilver/theme/image.css, find #message-box textarea { and replace with .emojionearea .emojionearea-editor {. Have done 😁

Image
Last edited by nedka on Wed Jan 11, 2017 11:05 pm, edited 3 times in total.
User avatar
nedka
Registered User
Posts: 162
Joined: Tue Jun 28, 2005 8:55 am
Name: Khoa Nguyen

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by nedka »

GenesMan wrote: Wed Jan 11, 2017 10:28 pm My contribution , translated common.php to Portuguese Brazillian ;)
Thanks you, GenesMan. ISO code is pt-BR, right? :D
User avatar
potku
Registered User
Posts: 980
Joined: Wed Dec 22, 2004 10:26 pm
Location: Tampere, Finland
Contact:

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by potku »

Nedka, maybe you are right. However, I just tested it with prosilver, and the same issue remains. Maybe it's a conflict with another EXT. I will test it on our test board (3.2) in a few days.

Thanks again for your swift reply. :)
Potku.net

"Before I speak, I have something important to say."

- Groucho Marx
User avatar
3Di
I've Been Banned!
Posts: 17538
Joined: Mon Apr 04, 2005 11:09 pm
Location: I'm with Ukraine 🇺🇦
Name: Marco
Contact:

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by 3Di »

nedka wrote: Wed Jan 11, 2017 10:36 pm
GenesMan wrote: Wed Jan 11, 2017 10:28 pm My contribution , translated common.php to Portuguese Brazillian ;)
Thanks you, GenesMan. ISO code is pt-BR, right? :D
viewtopic.php?f=491&t=2393036 ;)

BTW, I like this picker. Keep on doing.
🆓 Free support for our extensions also provided here: phpBB Studio
🚀 Looking for a specific feature or alternative option? We will rock you!
Please PM me only to request paid works. Thx. Buy me a coffee -> Image
My development's activity º PhpStorm's proud user º Extensions, Scripts, MOD porting, Update/Upgrades
User avatar
nedka
Registered User
Posts: 162
Joined: Tue Jun 28, 2005 8:55 am
Name: Khoa Nguyen

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by nedka »

3Di wrote: Wed Jan 11, 2017 10:43 pm BTW, I like this picker. Keep on doing.
Got it, 3Di, use underscores :D On a WYSIWYG editor, this ext was a simple one, same as the first version, until now... It becomes complex to keep the compatibility with phpBB editor 🤕
User avatar
null2
Registered User
Posts: 516
Joined: Wed Jan 20, 2010 11:03 am

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by null2 »

nedka wrote: Wed Jan 11, 2017 10:36 pm
GenesMan wrote: Wed Jan 11, 2017 10:28 pm My contribution , translated common.php to Portuguese Brazillian ;)
Thanks you, GenesMan. ISO code is pt-BR, right? :D
no, its "pt_br"
nedka wrote: Wed Jan 11, 2017 10:32 pm Hi null2, just open ext/alex75/imageintextarea/styles/prosilver/theme/image.css, find #message-box textarea { and replace with .emojionearea .emojionearea-editor {. Have done 😁
Solved, thanks!
Last edited by null2 on Wed Jan 11, 2017 11:16 pm, edited 2 times in total.
Sorry for my bad english. I'm from USA.
User avatar
3Di
I've Been Banned!
Posts: 17538
Joined: Mon Apr 04, 2005 11:09 pm
Location: I'm with Ukraine 🇺🇦
Name: Marco
Contact:

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by 3Di »

May I add some side note?

If I were you I stay focused on the 3.2.x version, it's quite possible that the posts made for 3.1.x will be not correctly parsed into 3.2.x (I assume this, not tested).

I'd create a topic for 3.1 and a topic for 3.2 (like two repositories) if the extension isn't usable on both versions. This way it's also easier for you to focus on related version's issues and for evryone who knows in advance what they are looking for.

At this stage though the users should and must reckon that being not yet a validated extension(s) everything that could happen onto their Boards it's up to them and not a developer's fault. No one of the ext in this forum should be used on a live board, that's clearly stated since ages, we know. ;)

Regards. :)
🆓 Free support for our extensions also provided here: phpBB Studio
🚀 Looking for a specific feature or alternative option? We will rock you!
Please PM me only to request paid works. Thx. Buy me a coffee -> Image
My development's activity º PhpStorm's proud user º Extensions, Scripts, MOD porting, Update/Upgrades
GenesMan
Registered User
Posts: 9
Joined: Fri Jan 06, 2017 12:04 pm

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by GenesMan »

nedka wrote: Wed Jan 11, 2017 10:36 pm
GenesMan wrote: Wed Jan 11, 2017 10:28 pm My contribution , translated common.php to Portuguese Brazillian ;)
Thanks you, GenesMan. ISO code is pt-BR, right? :D
As said above, the ISO code is pt-br but for normalisation the directory where language file is placed is pt_br (with the underscore replacing the hyphen)
User avatar
strelok-by
Registered User
Posts: 126
Joined: Fri Nov 21, 2014 10:22 am
Location: Mozyr / Belarus
Name: Stanislav
Contact:

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by strelok-by »

nedka wrote: Wed Jan 11, 2017 9:58 pm
strelok-by wrote: Tue Jan 10, 2017 9:10 pm no, set 0.2.2 . Cache cleaning
Give me the style name, strelok-by, I will check it.
SE Square Left 3.2
User avatar
Mathieu M.
Registered User
Posts: 181
Joined: Tue Nov 02, 2010 11:42 am
Location: France 🇫🇷
Name: Mathieu

Re: [3.1][3.2][BETA] Emoji Picker 0.2.3

Post by Mathieu M. »

nedka wrote: Wed Jan 11, 2017 9:58 pm
Mathieu M. wrote: Wed Jan 11, 2017 9:36 am There's also a bug with the cursor which is not where it should be in textarea, when you have not wrote someting yet :

Image
Ha ha, Mathieu, I forgot about this funny bug on Firefox, it has reported since 2013. Anyway, I added a trick to resolve it. Test the new version, and let me know the result. I've tested it on FireFox 50.1.


v0.1.3 / v0.2.3 released with fixed issues:
- Incorrect cursor position on BBCode buttons or appear beside the Emoji icon (Only FireFox).
- Set min-height on the quick reply form.
- Breaks long words.
It works for me with this little placeholder trick 👍

I've PR you with French translation 🇫🇷
😄😄😍😄😄
Locked

Return to “Abandoned Extensions”