Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Tue, 12 Dec 2023 21:58:25 UTC
Commit: c090698fafaf238e8a9b450c2cc4f2aaaaca3780
https://github.com/geany/geany/commit/c090698fafaf238e8a9b450c2cc4f2aaaaca3…
Log Message:
-----------
Remove deprecated Doxygen settings
This removes the followings warnings when generating the docs:
warning: Tag 'LATEX_SOURCE_CODE' at line 1758 of file 'Doxyfile.tmp' has become obsolete.
To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u"
warning: Tag 'CLASS_DIAGRAMS' at line 2113 of file 'Doxyfile.tmp' has become obsolete.
To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u"
warning: Changing CLASS_GRAPH option to TEXT because obsolete option CLASS_DIAGRAM was found and set to NO.
Modified Paths:
--------------
doc/Doxyfile.in
Modified: doc/Doxyfile.in
19 lines changed, 0 insertions(+), 19 deletions(-)
===================================================================
@@ -1747,16 +1747,6 @@ LATEX_BATCHMODE = NO
LATEX_HIDE_INDICES = NO
-# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
-# code with syntax highlighting in the LaTeX output.
-#
-# Note that which sources are shown also depends on other settings such as
-# SOURCE_BROWSER.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_SOURCE_CODE = NO
-
# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
# bibliography, e.g. plainnat, or ieeetr. See
# http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
@@ -2103,15 +2093,6 @@ EXTERNAL_PAGES = YES
# Configuration options related to the dot tool
#---------------------------------------------------------------------------
-# If the CLASS_DIAGRAMS tag is set to YES doxygen will generate a class diagram
-# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
-# NO turns the diagrams off. Note that this option also works with HAVE_DOT
-# disabled, but it is recommended to install and use dot, since it yields more
-# powerful graphs.
-# The default value is: YES.
-
-CLASS_DIAGRAMS = NO
-
# You can include diagrams made with dia in doxygen documentation. Doxygen will
# then run dia to produce the diagram and insert it in the documentation. The
# DIA_PATH tag allows you to specify the directory where the dia binary resides.
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Wed, 20 Dec 2023 11:02:05 UTC
Commit: 06b8e6b1c9c73636906d23d2c272d85dabc0ff56
https://github.com/geany/geany/commit/06b8e6b1c9c73636906d23d2c272d85dabc0f…
Log Message:
-----------
Merge pull request #3719 from eht16/remove_deprecated_doxygen_settings
Remove deprecated Doxygen settings
Modified Paths:
--------------
doc/Doxyfile.in
Modified: doc/Doxyfile.in
19 lines changed, 0 insertions(+), 19 deletions(-)
===================================================================
@@ -1747,16 +1747,6 @@ LATEX_BATCHMODE = NO
LATEX_HIDE_INDICES = NO
-# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
-# code with syntax highlighting in the LaTeX output.
-#
-# Note that which sources are shown also depends on other settings such as
-# SOURCE_BROWSER.
-# The default value is: NO.
-# This tag requires that the tag GENERATE_LATEX is set to YES.
-
-LATEX_SOURCE_CODE = NO
-
# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
# bibliography, e.g. plainnat, or ieeetr. See
# http://en.wikipedia.org/wiki/BibTeX and \cite for more info.
@@ -2103,15 +2093,6 @@ EXTERNAL_PAGES = YES
# Configuration options related to the dot tool
#---------------------------------------------------------------------------
-# If the CLASS_DIAGRAMS tag is set to YES doxygen will generate a class diagram
-# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
-# NO turns the diagrams off. Note that this option also works with HAVE_DOT
-# disabled, but it is recommended to install and use dot, since it yields more
-# powerful graphs.
-# The default value is: YES.
-
-CLASS_DIAGRAMS = NO
-
# You can include diagrams made with dia in doxygen documentation. Doxygen will
# then run dia to produce the diagram and insert it in the documentation. The
# DIA_PATH tag allows you to specify the directory where the dia binary resides.
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Sun, 22 Oct 2023 11:31:44 UTC
Commit: 17523e5f8ba6ac0c93290fac4ad64f23d005b3b1
https://github.com/geany/geany/commit/17523e5f8ba6ac0c93290fac4ad64f23d005b…
Log Message:
-----------
Do not show charset "None" in the list of encodings
The charset "None" would be shown for the encoding
name "Without encoding" and so it would be rather
redundant and the special value "None" should be
translatable but isn't.
Closes #3624.
Modified Paths:
--------------
src/encodings.c
Modified: src/encodings.c
5 lines changed, 4 insertions(+), 1 deletions(-)
===================================================================
@@ -278,7 +278,10 @@ gchar *encodings_to_string(const GeanyEncoding* enc)
g_return_val_if_fail(enc->name != NULL, NULL);
g_return_val_if_fail(enc->charset != NULL, NULL);
- return g_strdup_printf("%s (%s)", enc->name, enc->charset);
+ if (enc->idx == GEANY_ENCODING_NONE)
+ return g_strdup(enc->name); // enc->charset is "None" and would be useless to display
+ else
+ return g_strdup_printf("%s (%s)", enc->name, enc->charset);
}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Damon Harris <TheDcoder(a)protonmail.com>
Committer: GitHub <noreply(a)github.com>
Date: Wed, 22 Nov 2023 12:08:16 UTC
Commit: 0629be7ac2b97dc254fc51f1beda8dfe83c952a8
https://github.com/geany/geany/commit/0629be7ac2b97dc254fc51f1beda8dfe83c95…
Log Message:
-----------
Add `.mjs` extension for JavaScript
The `.mjs` extension is used by Node.js and others to denote JavaScript module files, unlike normal `.js` files these files are treated like ES6 modules by default.
Modified Paths:
--------------
data/filetype_extensions.conf
Modified: data/filetype_extensions.conf
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -42,7 +42,7 @@ Haskell=*.hs;*.lhs;*.hs-boot;*.lhs-boot;
Haxe=*.hx;
HTML=*.htm;*.html;*.shtml;*.hta;*.htd;*.htt;*.cfm;*.tpl;
Java=*.java;*.jsp;
-Javascript=*.js;
+Javascript=*.js;*.mjs;
JSON=*.json;
Julia=*.jl;
Kotlin=*.kt;*.kts;
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).