Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
psemiletov committed Apr 23, 2021
1 parent e674d28 commit 35642aa
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//it's lazy updated file, so the real ChangeLog is the activity on github

* Good olg bug with syntax hl engine (related to partial hl module file) is fixed
+ Youtube subtitles hl support
+ Fn - Case - Capitalize sentences

Expand Down
2 changes: 1 addition & 1 deletion hls/sbv.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<item name="options" casecare="0"></item>

<item name="keywords" type="keywords" color="digits">\b\d{1,}:\d{1,}:\d{1,}\.\d{1,},\d{1,}:\d{1,}:\d{1,}\.\d{1,}\b</item>
<item name="keywords" type="keywords" color="digits">\b\d{1,}:\d{1,}:\d{1,}\.\d{1,}\b</item>


</document>
2 changes: 2 additions & 0 deletions manuals/en.html
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,8 @@ <h3>Functions</h3>

<p><b>Functions &gt; Repeat last</b> - repeat the last used function. Actually, it works with almost all menu items, not just at the Functions menu.</p>

<p><b>Functions &gt; Capitalize sentences</b> - make all selected sensences with the upper case first letter of the first word. Useful for auto-generated subtitles from Youtube, where you manually add ".", "!" and "?", and then apply this function.</p>

<p><b>Functions &gt; Tools &gt; Scale image</b> - scales the image. In the text, select the image file name or set the cursor on it. Put into the FIF parameters of the scaling. Apply this function.</p>

<p>The format of parameters is: filename~new size</p>
Expand Down
2 changes: 2 additions & 0 deletions manuals/ru.html
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,8 @@ <h2>Функции</h2>

<p>Некоторые функции принимают параметры. Параметры следует прописывать в Знаменитом Поле Ввода (ЗПВ, строка внизу главного окна) - до применения функции. Например, функция <b>Удалить строки &lt; размера N</b> должна получить этот самый размер, число, из Знаменитого поля ввода. Значений по умолчанию нет, зато всегда можно выполнить отмену примененной функции.</p>

<p><b>Функции &gt; Предложения с большой буквы</b> - чтобы предложения начинались с большой буквы. Удобно для автоматических субтитров с Ютуба. Расставили точки и знаки ?, !, а потом применили эту функцию.</p>

<p><b>Функции &gt; Инструменты &gt; Масштабировать картинку</b> - масштабирует картинку, на имени которой в тексте стоит курсор или имя просто выделено. Пропишите в ЗПВ параметры преобразования и примените эту функцию.</p>

<p>Формат параметров: имя файла~новый размер</p>
Expand Down
7 changes: 0 additions & 7 deletions tea.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3140,17 +3140,10 @@ void CTEA::fn_use_table()
else
text = d->toPlainText();

int y = d->textCursor().block().blockNumber();

if (d->textCursor().hasSelection())
d->put (apply_table (text, a->data().toString(), menu_find_regexp->isChecked()));
else
d->setPlainText (apply_table (text, a->data().toString(), menu_find_regexp->isChecked()));

QTextCursor cr = d->textCursor();
cr.movePosition (QTextCursor::Start);
cr.movePosition (QTextCursor::NextBlock, QTextCursor::MoveAnchor, y);
d->setTextCursor (cr);
}
else
if (main_tab_widget->currentIndex() == idx_tab_fman)
Expand Down

0 comments on commit 35642aa

Please sign in to comment.