1
0
Fork 0

- actually use the compiled regex-scanner when seraching text in the

message window;
- increased refresh frequency;
- removed author name from NEWS.org.
This commit is contained in:
cage 2020-10-02 15:52:19 +02:00
parent e5b6f3b0cd
commit 5feb137128
3 changed files with 6 additions and 7 deletions

View File

@ -8,19 +8,19 @@
The command line switch "-m" to get notification when mentioned did
not works at all and has been fixed.
* 2020-09-19 cage
* 2020-09-19
Added adding an optional mention when composing a message.
Fixed a bug that made the message composition window to disappear
before actually sending the message.
* 2020-09-12 cage
* 2020-09-12
Added support for pleroma chat.
Added managing of gemini streams. A gemini window allow to abort,
rendering/opening of gemini connection while streaming.
* 2020-08-30 cage
* 2020-08-30
Added a window to manage all the gemini streams opened. The user
can ispect the status o all the streams as well abort or open them.

View File

@ -56,7 +56,7 @@ For bug report please point your browser to:
(define-constant +json-false+ "false" :test #'string=)
(define-constant +fps+ 20 :test #'=
(define-constant +fps+ 60 :test #'=
:documentation "The redraw frequency in frame per second")
(define-constant +command-window-height+ 1 :test #'=)

View File

@ -401,9 +401,8 @@
(let ((regexp (payload object)))
(when (text-utils:string-not-empty-p regexp)
(handler-case
(progn
(cl-ppcre:create-scanner regexp)
(message-window:search-regex specials:*message-window* regexp))
(let ((scanner (cl-ppcre:create-scanner regexp :case-insensitive-mode t)))
(message-window:search-regex specials:*message-window* scanner))
(error ()
(ui:error-message (_ "Invalid regular expression")))))))