Skip to content

Commit

Permalink
✅DevelWare Studio 16.7.0.3
Browse files Browse the repository at this point in the history
- Улучшена и исправлена тема.
- Добавлено зачеркивание текста и режимы наложения.
- Удалены ненужные штуки из "Помощь".
- Добавлена быстрая стилизация обьектов.
  • Loading branch information
meigoc authored Jul 23, 2024
1 parent 75355e3 commit c41a0b2
Show file tree
Hide file tree
Showing 41 changed files with 70 additions and 57 deletions.
61 changes: 29 additions & 32 deletions highlights/fxcss/DevelNext-Bright.css
Original file line number Diff line number Diff line change
@@ -1,67 +1,64 @@
.syntax-text-area {
-fx-background-color: #202020;
-fx-background-fill: #404E51;
-fx-background-color: #fffdf5;
-fx-background-fill: #fdffe6;
-fx-cursor: text;
}

.syntax-text-area .paragraph-box:has-caret {
-fx-background-color: #343f41;
-fx-background-color: #fcfad9;
}

.syntax-text-area .text {
-fx-fill: #E0E2E4;
-fx-fill: #333334;
}

.syntax-text-area .gutter .lineno {
-fx-text-fill: #8c8c8c;
-fx-fill: #8c8c8c;
-fx-background-fill: #8c8c8c;
}

.syntax-text-area .gutter {
-fx-border-color: #939393;
-fx-background-color: #545454;
-fx-border-color: white;
-fx-background-color: #ececec;
-fx-border-width: 0 1px 0 0;
-fx-padding: 0 3 0 3;
}

.styled-text-area .caret {
-fx-stroke: white;
.syntax-text-area .caret {
-fx-stroke: #2f2f2f;
}

.styled-text-area .text.semicolon {
-fx-font-weight: bold;
.syntax-text-area .text.control, .syntax-text-area .text.operator, .syntax-text-area .text.semicolon {
-fx-fill: #c21c18;
}

.styled-text-area .text.control {
-fx-fill: #6A8088;
-fx-background-color: #6b8189;
-fx-font-weight: bold;
.syntax-text-area .text.comment {
-fx-fill: #9e9e9e;
-fx-font-style: italic;
}

.styled-text-area .text.comment {
-fx-fill: #939393;
}

.styled-text-area .text.selector {
-fx-fill: #cda869;
.syntax-text-area .text.keyword, .syntax-text-area .text.selector {
-fx-fill: #385192;
-fx-font-weight: bold;
}

.styled-text-area .text.keyword {
-fx-fill: #678CB1;
.styled-text-area .text.pseudo-class {
-fx-fill: #6994dc;
}

.styled-text-area .text.attribute {
-fx-fill: #aab8dd;
-fx-fill: #238125;
}

.styled-text-area .text.pseudo-class {
-fx-fill: #EC7600;
.syntax-text-area .text.string {
-fx-fill: #7f5b2f;
}

.styled-text-area .text.color {
-fx-fill: #FFCD22;
-fx-fill: #324aff;
}

.syntax-text-area .text.number {
-fx-fill: #FFCD22;
}

.syntax-text-area .text.string {
-fx-fill: #afc9a0;
}
-fx-fill: #324aff;
}
1 change: 0 additions & 1 deletion highlights/php/DevelNext-Bright.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.syntax-text-area {
-fx-font-family: "Arial";
-fx-background-color: white;
-fx-background-fill: #fdffe6;
-fx-cursor: text;
Expand Down
44 changes: 26 additions & 18 deletions highlights/php/DevelNext-Dark.css
Original file line number Diff line number Diff line change
@@ -1,61 +1,69 @@
/* Подключение кастомного шрифта */
@font-face {
font-family: 'Mono';
src: url('fonts/JetBrainsMono-Bold.ttf') format('truetype');
}

.syntax-text-area {
-fx-font-family: "Arial";
-fx-background-color: #202020;
-fx-background-fill: #404E51;
-fx-background-color: #1e1e1e; /* Глубокий темный фон */
-fx-background-fill: #2c2c2c; /* Мягкий фон для текста */
-fx-cursor: text;
-fx-font-family: 'Mono', monospace; /* Подключение кастомного шрифта */
-fx-font-size: 14px; /* Размер шрифта для лучшей читаемости */
}

.syntax-text-area .paragraph-box:has-caret {
-fx-background-color: #2b3436;
-fx-background-color: #252526; /* Цвет фона при наличии каретки */
}

.syntax-text-area .text {
-fx-fill: #E0E2E4;
-fx-fill: #d4d4d4; /* Светлый цвет текста */
}

.syntax-text-area .gutter {
-fx-border-color: #939393;
-fx-background-color: #545454;
-fx-border-color: #4e4e4e; /* Темно-серый цвет границы */
-fx-background-color: #2d2d2d; /* Темный фон для области номеров строк */
-fx-border-width: 0 1px 0 0;
-fx-padding: 0 3 0 3;
-fx-padding: 0 5 0 5; /* Увеличенные отступы для лучшего восприятия */
}

.syntax-text-area .caret {
-fx-stroke: white;
-fx-stroke: #ffffff; /* Яркий белый цвет каретки */
}

.syntax-text-area .text.semicolon {
-fx-fill: #9a9a9a; /* Светлый цвет для точек с запятой */
}

.syntax-text-area .text.control, .syntax-text-area .text.operator {
-fx-fill: #22C1AE;
-fx-fill: #9cdcfe; /* Яркий голубой цвет для управляющих символов и операторов */
}

.syntax-text-area .text.comment {
-fx-fill: #6c6c6c;
-fx-font-style: italic;
-fx-fill: #6a9955; /* Зеленый цвет для комментариев */
-fx-font-style: italic; /* Курсив для комментариев */
}

.syntax-text-area .text.selector {
-fx-fill: #cda869;
-fx-fill: #ce9178; /* Теплый оранжево-коричневый цвет для селекторов */
}

.syntax-text-area .text.keyword {
-fx-fill: #cda869;
-fx-fill: #569cd6; /* Синий цвет для ключевых слов */
}

.syntax-text-area .text.string {
-fx-fill: #afc9a0;
-fx-fill: #ce9178; /* Тот же теплый цвет для строк */
}

.syntax-text-area .text.number {
-fx-fill: #54b0ff;
-fx-fill: #b5cea8; /* Светло-зеленый цвет для чисел */
}

.syntax-text-area .text.variable {
-fx-fill: #ae9fbf;
-fx-fill: #9cdcfe; /* Тот же цвет для переменных */
}

.syntax-text-area .text.label {
-fx-fill: #E6E1DC;
-fx-fill: #dcdcaa; /* Светлый желтый цвет для меток */
}
Binary file added highlights/php/fonts/JetBrainsMono-Bold.ttf
Binary file not shown.
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMono-ExtraBold.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMono-Italic.ttf
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMono-Light.ttf
Binary file not shown.
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMono-Medium.ttf
Binary file not shown.
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMono-Regular.ttf
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMono-SemiBold.ttf
Binary file not shown.
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMono-Thin.ttf
Binary file not shown.
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMonoNL-Bold.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMonoNL-Italic.ttf
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMonoNL-Light.ttf
Binary file not shown.
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMonoNL-Medium.ttf
Binary file not shown.
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMonoNL-Regular.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added highlights/php/fonts/JetBrainsMonoNL-Thin.ttf
Binary file not shown.
Binary file not shown.
Binary file modified languages/en/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified languages/en/icon32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion languages/ru/description.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

name=Русский
name.en=Russian
name.uk=Російський

restart.message=Для применения настроек необходимо перезапустить программу!
restart.yes=Перезапустить сейчас
Expand Down
Binary file modified languages/ru/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified languages/ru/icon32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 15 additions & 5 deletions languages/ru/tips
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
[ru]
DevelWare позволяет создавать простые двухмерные игры.
DevelNext позволяет создавать простые двухмерные игры.
Первая версия среды была опубликована 15 июля 2015 года.
Главный автор проекта - Дмитрий Зайцев.
Официальный сайт среды - develnext.org
DevelWare почти полностью написан на языке программирования PHP.
DevelNext почти полностью написан на языке программирования PHP.
Среда умеет сохранять и загружать проекты из ZIP архивов.
DevelWare отлично подходит тем, кто еще не знаком с программированием.
Своими идеями и предложениями вы можете поделиться в Discord группе проекта.
DevelNext это open-source проект, его исходники полностью открыты.
Слово "Devel" произошло от слова "Development", а не от дьявола.
DevelNext отлично подходит тем, кто еще не знаком с программированием.
Своими идеями и предложениями вы можете поделиться в VK группе проекта.
Первая альфа версия среды появилась перед новым годом, 29 декабря 2015 года.
В начале был Mess Box, затем DevelStudio, а теперь DevelNext.
Название легендарной функции pre() произошло от html тега <pre>.
После версии DevelNext 2016 последует DevelNext 2017.
В первой версии DevelNext не было и 90% функционала, что вы увидите сейчас.
Для большого проекта не нужна огромная команда, часто достаточно одного человека.
У DevelNext есть официальный канал на Youtube.
DevelNext часто сокращенно именуют как просто DN.
Хороший программист пишет код, понятный человеку.
У каждой программы два назначения: что она должна делать и чего не должна.
Проще написать неправильную программу, чем понять правильную.

Все исходники DevelNext можно найти на сайте github.com.
DevelNext отлично подходит для создания прототипов.
DevelNext можно расшифровать как DevelStudio Next, где слово Studio было убрано.

Java VM - это виртуальная машина для запуска программ, подобная Microsoft .NET
JPHP - это скриптовой движок для языка программирования PHP.
Expand Down

0 comments on commit c41a0b2

Please sign in to comment.