Package: gnome-screenshot / 3.14.0-1+deb8u1

filename-builder-use-dash-for-time-format-separator.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Subject: filename-builder: use dash for time format separator

This patch is a combination of the patch from upstream bug #698740
and upstream commit aa23783 to achieve the behaviour intended by
successive upstream releases.

Bug: https://bugzilla.gnome.org/show_bug.cgi?id=698740
Origin: https://github.com/GNOME/gnome-screenshot/commit/aa23783c39f96dd0b45f70d82557736a5b884c55

--- a/src/screenshot-filename-builder.c
+++ b/src/screenshot-filename-builder.c
@@ -131,7 +131,7 @@ build_path (AsyncExistenceJob *job)
       GDateTime *d;
 
       d = g_date_time_new_now_local ();
-      origin = g_date_time_format (d, "%Y-%m-%d %H:%M:%S");
+      origin = g_date_time_format (d, "%Y-%m-%d %H-%M-%S");
       g_date_time_unref (d);
     }
   else