diff --git a/NEWS b/NEWS index a4ce83ac7..9daff83c5 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,12 @@ Geany 1.38 (unreleased) +Geany 1.37.1 (November 08, 2020) + + Windows + * Fix crash on first startup (Issue#2639, PR#2645). + + Geany 1.37 (October 25, 2020) General diff --git a/doc/geany.1.in b/doc/geany.1.in index 6a94bfc8d..3c1c85621 100644 --- a/doc/geany.1.in +++ b/doc/geany.1.in @@ -1,4 +1,4 @@ -.TH "GEANY" "1" "October 25, 2020" "geany @VERSION@" "" +.TH "GEANY" "1" "November 08, 2020" "geany @VERSION@" "" .SH "NAME" Geany \(em a small and lightweight IDE .SH "SYNOPSIS" diff --git a/doc/geany.txt b/doc/geany.txt index f48b6302a..bdeac023a 100644 --- a/doc/geany.txt +++ b/doc/geany.txt @@ -14,7 +14,7 @@ Frank Lanitz, Colomban Wendling, Matthew Brush -:Date: 2020-10-25 +:Date: 2020-11-08 :Version: |(version)| Copyright © 2005 The Geany contributors diff --git a/src/libmain.c b/src/libmain.c index 57476d754..f1fdb41ef 100644 --- a/src/libmain.c +++ b/src/libmain.c @@ -406,7 +406,7 @@ static gint get_windows_socket_port(void) if (! g_file_test(configfile, G_FILE_TEST_IS_REGULAR)) { geany_debug( - "No user config file found, use default TCP port (%s).", + "No user config file found, use default TCP port (%d).", SOCKET_WINDOWS_REMOTE_CMD_PORT); g_free(configfile); return SOCKET_WINDOWS_REMOTE_CMD_PORT;