Branch: refs/heads/master
Author: Jiří Techet <techet(a)gmail.com>
Committer: GitHub <noreply(a)github.com>
Date: Mon, 09 Dec 2024 11:28:29 UTC
Commit: 397bb5eac38b24bbbc3b8c434766dc109af2d7f8
https://github.com/geany/geany/commit/397bb5eac38b24bbbc3b8c434766dc109af2d…
Log Message:
-----------
Merge pull request #4061 from techee/saveactions_str
Split label in saveactions preferences to make the dialog less wide
Modified Paths:
--------------
plugins/saveactions.c
Modified: plugins/saveactions.c
6 lines changed, 2 insertions(+), 4 deletions(-)
===================================================================
@@ -1439,7 +1439,7 @@ GtkWidget *plugin_configure(GtkDialog *dialog)
gtk_box_pack_start(GTK_BOX(inner_vbox), hbox, FALSE, FALSE, 0);
label = gtk_label_new_with_mnemonic(
- _("Date/_Time format for backup files (for a list of available conversion specifiers see https://docs.gtk.org/glib/method.DateTime.format.html):"));
+ _("Date/_Time format for backup files (see https://docs.gtk.org/glib/method.DateTime.format.html):"));
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
gtk_box_pack_start(GTK_BOX(inner_vbox), label, FALSE, FALSE, 7);
@@ -1528,9 +1528,7 @@ GtkWidget *plugin_configure(GtkDialog *dialog)
gtk_box_pack_start(GTK_BOX(inner_vbox), hbox, FALSE, FALSE, 0);
help_label = gtk_label_new(
- _("<i>If you set the Instant Save directory to a directory "
- "which is not automatically cleared,\nyou will need to cleanup instantly saved files "
- "manually. The Instant Save plugin will not delete the created files.</i>"));
+ _("<i>The plugin will not delete the files created in this directory.</i>"));
gtk_label_set_use_markup(GTK_LABEL(help_label), TRUE);
gtk_misc_set_alignment(GTK_MISC(help_label), 0, 0.5);
gtk_widget_set_margin_left(help_label, 12);
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Azq2 <kirill.zhumarin(a)gmail.com>
Committer: GitHub <noreply(a)github.com>
Date: Tue, 03 Dec 2024 22:29:22 UTC
Commit: 5ed56a09f9bdaf882d33aa37bb8762129175b61d
https://github.com/geany/geany/commit/5ed56a09f9bdaf882d33aa37bb8762129175b…
Log Message:
-----------
update JS keywords and extensions (#3440)
Co-authored-by: Jiří Techet <techet(a)gmail.com>
Modified Paths:
--------------
data/filedefs/filetypes.javascript
data/filetype_extensions.conf
Modified: data/filedefs/filetypes.javascript
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -3,7 +3,7 @@
[keywords]
# all items must be in one line
-primary=break case catch class const continue debugger default delete do else enum export extends false finally for function get if import in Infinity instanceof let NaN new null return set static super switch this throw true try typeof undefined var void while with yield prototype async await
+primary=break case catch class const continue debugger default delete do else enum export extends false finally for function get if import in Infinity instanceof let NaN new null return set static super switch this throw true try typeof undefined var void while with yield prototype async await from as
secondary=Array Boolean Date Function Math Number Object String RegExp EvalError Error RangeError ReferenceError SyntaxError TypeError URIError constructor prototype decodeURI decodeURIComponent encodeURI encodeURIComponent eval isFinite isNaN parseFloat parseInt
[lexer_properties=C]
Modified: data/filetype_extensions.conf
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -43,7 +43,7 @@ Graphviz=*.gv;*.dot;
Groovy=*.groovy;*.gradle;
Haskell=*.hs;*.lhs;*.hs-boot;*.lhs-boot;
Haxe=*.hx;
-HTML=*.htm;*.html;*.shtml;*.hta;*.htd;*.htt;*.cfm;*.tpl;
+HTML=*.htm;*.html;*.shtml;*.hta;*.htd;*.htt;*.cfm;*.tpl;*.tmpl;*.vue;
Java=*.java;*.jsp;
Javascript=*.js;*.cjs;*.mjs;*.jsx;
JSON=*.json;
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).