Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sun, 16 Jun 2024 09:27:19 UTC Commit: 4e93f0bfbd62b08666b6d2d7e2675b841e9943a4 https://github.com/geany/geany-plugins/commit/4e93f0bfbd62b08666b6d2d7e2675b...
Log Message: ----------- geniuspaste: Fix replace configurations with GLib 2.79+
We used the invalid single-backslash in pastebin configurations, which used to work fine for our case until GLib 2.79. Fix this by using proper double-backslashes which work with all versions.
Modified Paths: -------------- geniuspaste/data/dpaste.org.conf geniuspaste/data/fpaste.org.conf geniuspaste/data/pastebin.geany.org.conf geniuspaste/data/sprunge.us.conf
Modified: geniuspaste/data/dpaste.org.conf 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -10,7 +10,7 @@ lexer=%language%
[parse] search=^"(.+)"$ -replace=\1 +replace=\1
[defaults] language=_code
Modified: geniuspaste/data/fpaste.org.conf 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -17,7 +17,7 @@ title=%title%
[parse] search="url" *: *"([^"]+)" -replace=\1 +replace=\1
# map GeanyFileType=PastebinFileType [languages]
Modified: geniuspaste/data/pastebin.geany.org.conf 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -11,7 +11,7 @@ lexer=%language%
[parse] search=^.+$ -replace=\0 +replace=\0
[defaults] language=text
Modified: geniuspaste/data/sprunge.us.conf 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -7,7 +7,7 @@ sprunge=%contents%
[parse] search=^[[:space:]]*(.+?)[[:space:]]*$ -replace=\1?%language% +replace=\1?%language%
# map GeanyFileType=PastebinFileType [languages]
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org