Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Sun, 28 Apr 2019 16:38:32 UTC
Commit: 9d4aa7f8071da54efce0508dd92c0930703304a0
https://github.com/geany/geany/commit/9d4aa7f8071da54efce0508dd92c093070330…
Log Message:
-----------
Update making-a-release a little
Modified Paths:
--------------
doc/making-a-release
Modified: doc/making-a-release
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -25,15 +25,15 @@ Rename LATEST-IS-... to the new version number in
/srv/www/download.geany.org/ and /srv/www/www.geany.org/files.
Execute (as user geany) /home/geany/md5sums to update
/srv/www/download.geany.org/MD5SUMS.
+You can use the script /home/geany/publish-release.
Make sure the public part of the GPG key used to sign the archives
can be found on the download page.
Windows builds (enrico?).
Create a signed tag for the release in Git with 'git tag -s <version>'.
-Website: update Releases, Documentation links, Release Notes, ChangeLog
-and add a News item.
+Website: update Releases, Release Notes, ChangeLog and add a News item.
Use the /home/geany/update-manual script to update the manual data and links
in the filesystem at /srv/www/www.geany.org/manual, and to update
current/hacking.html.
--------------
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, 31 Mar 2019 13:26:34 UTC
Commit: de097ddf693e26c008d13d0a1f36fb06609bbcad
https://github.com/geany/geany/commit/de097ddf693e26c008d13d0a1f36fb06609bb…
Log Message:
-----------
Restart the shell if VTE restart is requested
This happened in the past until d35e66493c7f80768dc5b8761d62ec74434bfdae
because of https://sourceforge.net/p/geany/bugs/163/ and
https://bugzilla.gnome.org/show_bug.cgi?id=540161.
But since the VTE bug has been fixed for long, we can remove the
workaround.
Closes #352.
Modified Paths:
--------------
src/vte.c
Modified: src/vte.c
1 lines changed, 1 insertions(+), 0 deletions(-)
===================================================================
@@ -526,6 +526,7 @@ static void vte_restart(GtkWidget *widget)
pid = 0;
}
vf->vte_terminal_reset(VTE_TERMINAL(widget), TRUE, TRUE);
+ vte_start(widget);
set_clean(TRUE);
}
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).