File: hide-build-info.patch

package info (click to toggle)
doublecmd 1.1.28-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,872 kB
  • sloc: pascal: 373,936; sh: 1,180; ansic: 724; makefile: 132; python: 52; xml: 16
file content (21 lines) | stat: -rw-r--r-- 456 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: Do not display build info in window title
Author: Graham Inggs <ginggs@debian.org>
Forwarded: not-needed
Last-Update: 2022-10-10

--- a/src/fmain.pas
+++ b/src/fmain.pas
@@ -1088,11 +1088,9 @@
       ARevision:= EmptyStr;
     end;
 
-    Result := Format('%s%s %s%s',
+    Result := Format('%s%s',
         ['Double Commander',
-        AServerName,
-        Copy2Space(dcVersion),
-        ARevision]
+        AServerName]
     );
   end;