Skip to content

Commit 3a300f7

Browse files
committed
EE6 support
1 parent 21f2572 commit 3a300f7

5 files changed

Lines changed: 19 additions & 11 deletions

File tree

emoji_support/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ It's always good idea to check with the developer though, as it is possible that
3636

3737
## Change Log
3838

39+
### 2.1.0
40+
41+
- Added EE6 support
42+
3943
### 2.0.1
4044

4145
- Fixing Travis CI auto-releases.
@@ -68,8 +72,8 @@ You may be wondering what the rest of the files in this package are for. They ar
6872

6973
## Copyright / License Notice
7074

71-
This project is copyright (c) 2018 EllisLab, Inc ([https://ellislab.com](https://ellislab.com)) and is licensed under Apache License, Version 2.0.
75+
This project is copyright (c) 2021 Packet Tide, LLC ([https://packettide.com](https://packettide.com)) and is licensed under Apache License, Version 2.0.
7276

7377
Complete license terms and copyright information can be found in [LICENSE.txt](LICENSE.txt) in the root of this repository.
7478

75-
"ExpressionEngine" is a registered trademark of EllisLab, Inc. in the United States and around the world. Refer to EllisLab's [Trademark Use Policy](https://ellislab.com/trademark-use-policy) for access to logos and acceptable use.
79+
"ExpressionEngine" is a registered trademark of Packet Tide, LLC in the United States and around the world. Refer to ExpressionEngine's [Trademark Use Policy](https://expressionengine.com/about/trademark-use-policy) for access to logos and acceptable use.

emoji_support/addon.setup.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

33
return array(
4-
'author' => 'EllisLab',
5-
'author_url' => 'https://ellislab.com/',
4+
'author' => 'Packet Tide',
5+
'author_url' => 'https://packettide.com/',
66
'name' => 'Emoji Support',
77
'description' => '',
8-
'version' => '1.0.2',
9-
'namespace' => 'EllisLab\Addons\EmojiSupport',
8+
'version' => '2.1.0',
9+
'namespace' => 'ExpressionEngine\Addons\EmojiSupport',
1010
'settings_exist' => TRUE,
1111
);

emoji_support/javascript/convert.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
EE.cp.emoji_support = {
22

3-
buttons: $('input.btn:visible'),
3+
buttons: $('[name=convert]'),
44

55
init: function() {
66
EE.cp.emoji_support._init();

emoji_support/views/alert.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<div class="box snap table-list-wrap">
2-
<div class="tbl-ctrls">
1+
<div class="box snap table-list-wrap panel">
2+
<div class="tbl-ctrls panel-body">
33
<?=ee('CP/Alert')->getAllInlines()?>
44
</div>
55
</div>

emoji_support/views/index.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<div class="box">
2-
<div class="tbl-ctrls">
1+
<div class="box panel">
2+
<div class="tbl-ctrls panel-body">
33
<?=form_open(ee('CP/URL')->make('addons/settings/emoji_support/convert'))?>
44
<h1><?=lang('emoji_support_module_name')?></h1>
55

@@ -9,10 +9,14 @@
99

1010
<textarea><?=implode("\n", $sql)?></textarea>
1111

12+
<br />
13+
1214
<div class="progress-bar">
1315
<div class="progress" style="width: 0%;"></div>
1416
</div>
1517

18+
<br />
19+
1620
<fieldset class="form-ctrls">
1721
<?=cp_form_submit('btn_update_db', lang('btn_update_db_working'), 'convert')?>
1822
</fieldset>

0 commit comments

Comments
 (0)