Skip to content

Commit 2181d79

Browse files
committed
Patch-A
1 parent 1defe66 commit 2181d79

File tree

29 files changed

+209
-86
lines changed

29 files changed

+209
-86
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name=HTML ������ (Jsoup)
2-
description=����� ��� �������� html � ������ � ����� ��� jQuery
1+
name=HTML Парсер (Jsoup)
2+
description=Пакет для парсинга html и сайтов в стиле апи jQuery
33

44
class=develnext\\bundle\\jsoup\\JsoupBundle
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
name=Отправитель писем
2+
description=Пакет для отправки электронным писем (email) через smtp сервер
3+
4+
class=develnext\\bundle\\mail\\MailBundle

develnext-bundles/dn-mail-bundle/src/develnext/bundle/mail/JPHPMailBundle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function getName()
1616
*/
1717
function getJarDependencies()
1818
{
19-
return ["jphp-mail-ext", "commons-email", "activation", "mail"];
19+
return [];
2020
}
2121

2222
/**

develnext-bundles/dn-mail-bundle/src/develnext/bundle/mail/MailBundle.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33

44
use develnext\bundle\mail\components\MailScriptComponent;
55
use ide\bundle\AbstractBundle;
6+
use ide\bundle\AbstractJarBundle;
67
use ide\formats\ScriptModuleFormat;
78
use ide\Ide;
89
use ide\project\behaviours\GuiFrameworkProjectBehaviour;
910
use ide\project\Project;
1011
use php\lib\fs;
1112

12-
class MailBundle extends AbstractBundle
13+
class MailBundle extends AbstractJarBundle
1314
{
1415
function getName()
1516
{

develnext-designer/src/main/java/org/develnext/jphp/gui/designer/classes/UXAbstractCodeArea.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ interface WrappedInterface {
6060

6161
void showPopup();
6262
void hidePopup();
63+
void forgetHistory();
6364
}
6465

6566
public UXAbstractCodeArea(Environment env, T wrappedObject) {

develnext-designer/src/main/java/org/develnext/jphp/gui/designer/editor/syntax/AbstractCodeArea.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,10 @@ public void registerHotkey(KeyCode keyCode, KeyCombination.Modifier[] keyModifie
182182
hotkeyHandlers.put(hotkey, inputMap);
183183
}
184184

185+
public void forgetHistory() {
186+
getUndoManager().forgetHistory();
187+
}
188+
185189
public void registerHotkey(AbstractHotkey hotkey) {
186190
registerHotkey(hotkey.getDefaultKeyCode(), hotkey.getDefaultKeyCombination(), hotkey);
187191
}

develnext-designer/src/main/resources/JPHP-INF/sdk/php/gui/designer/UXAbstractCodeArea.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,8 @@ public function showPopup()
100100
public function hidePopup()
101101
{
102102
}
103+
104+
public function forgetHistory()
105+
{
106+
}
103107
}

develnext/misc/history.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Patch-A
44
- Исправлен баг в подсветке синтаксиса PHP связанный с shell exec кавычками.
55
- Исправлен баг при поиске в документации, кнопка поиска не работала при открытой документации.
66
- Улучшено отображение процесса сборки проекта, вместо окна процесс отображается внизу главного окна и текст логов можно выделять.
7+
- Переработана система пакетов расширений, теперь пакеты хранят свои исходники в папке проекта vendor.
8+
- В редакторе когда исправлен баг с командой "Отменить", иногда команда приводила к полному очищению содержимого редактора.
79

810
Beta-2
911
------------
-20 Bytes
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)