Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Fri, 13 Oct 2023 14:26:58 UTC
Commit: f2847ecec34eae45f964eca3db6faaf07f1557d5
https://github.com/geany/geany-plugins/commit/f2847ecec34eae45f964eca3db6fa…
Log Message:
-----------
GitChangebar: disable Scintilla's Change History in diff tooltip
If the "Change history" feature is enabled in Geany, it might
lead to styling issues in the tooltip displaying the diff
of the current hunk. So always disable this feature for
the tooltip where it is not needed.
Modified Paths:
--------------
git-changebar/src/gcb-plugin.c
Modified: git-changebar/src/gcb-plugin.c
1 lines changed, 1 insertions(+), 0 deletions(-)
===================================================================
@@ -837,6 +837,7 @@ get_widget_for_buf_range (GeanyDocument *doc,
/* hide stuff we don't wanna see */
scintilla_send_message (sci, SCI_SETHSCROLLBAR, 0, 0);
scintilla_send_message (sci, SCI_SETVSCROLLBAR, 0, 0);
+ scintilla_send_message (sci, SCI_SETCHANGEHISTORY, SC_CHANGE_HISTORY_DISABLED, 0);
for (i = 0; i < SC_MAX_MARGIN; i++) {
scintilla_send_message (sci, SCI_SETMARGINWIDTHN, i, 0);
}
--------------
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: Thu, 12 Oct 2023 21:07:42 UTC
Commit: 8fdd8c91805dc6a9d0325fb5ec521ee27fd87d02
https://github.com/geany/geany-plugins/commit/8fdd8c91805dc6a9d0325fb5ec521…
Log Message:
-----------
CI: Fix version parsing and calculating for 2.0
The previous logic failed on 2.0 to make the new version number 1.99.99.
This is fixed now even though the code is not perfect or good at all but
should work well enough for its purposes.
Modified Paths:
--------------
build/ci_mingw64_geany_plugins.sh
Modified: build/ci_mingw64_geany_plugins.sh
9 lines changed, 7 insertions(+), 2 deletions(-)
===================================================================
@@ -144,8 +144,13 @@ patch_version_information() {
MINOR="${BASH_REMATCH[2]}"
PATCH="${BASH_REMATCH[4]}"
if [ -z "${PATCH}" ] || [ "${PATCH}" = "0" ]; then
- MINOR="$((MINOR-1))"
- PATCH="90"
+ if [ "${MINOR}" = "0" ]; then
+ MAJOR="$((MAJOR-1))"
+ MINOR="99"
+ else
+ MINOR="$((MINOR-1))"
+ fi
+ PATCH="99"
else
PATCH="$((PATCH-1))"
fi
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).