DEL: Unneeded patches

This commit is contained in:
Alexander Koblov 2022-09-11 14:50:16 +03:00
commit a09f62e6dd
3 changed files with 0 additions and 43 deletions

View file

@ -1,21 +0,0 @@
Description: Do not display build info in window title
Author: Graham Inggs <graham@nerve.org.za>
Forwarded: not-needed
Last-Update: 2015-02-15
--- a/src/fmain.pas
+++ b/src/fmain.pas
@@ -964,13 +964,7 @@
if Length(UniqueInstance.ServernameByUser) > 0 then
ServernameString := ' [' + UniqueInstance.ServernameByUser + ']';
- Result := Format('%s%s %s build %s; %s',
- ['Double Commander',
- ServernameString,
- dcVersion,
- dcRevision,
- dcBuildDate]
- );
+ Result := 'Double Commander';
end;
var

View file

@ -1 +0,0 @@
x-terminal-emulator.patch

View file

@ -1,21 +0,0 @@
Description: Change default terminal command to 'x-terminal-emulator'
Author: Graham Inggs <ginggs@debian.org>
Forwarded: not-needed
Last-Update: 2016-03-14
--- a/src/platform/uOSUtils.pas
+++ b/src/platform/uOSUtils.pas
@@ -65,11 +65,11 @@
RunInTermCloseParams = '';
MonoSpaceFont = 'Monaco';
{$ELSE}
- RunTermCmd = 'xterm'; // default terminal
+ RunTermCmd = 'x-terminal-emulator'; // default terminal
RunTermParams = '';
- RunInTermStayOpenCmd = 'xterm'; // default run in terminal command AND Stay open after command
+ RunInTermStayOpenCmd = 'x-terminal-emulator'; // default run in terminal command AND Stay open after command
RunInTermStayOpenParams = '-e sh -c ''{command}; echo -n Press ENTER to exit... ; read a''';
- RunInTermCloseCmd = 'xterm'; // default run in terminal command AND Close after command
+ RunInTermCloseCmd = 'x-terminal-emulator'; // default run in terminal command AND Close after command
RunInTermCloseParams = '-e sh -c {command}';
MonoSpaceFont = 'Monospace';
{$ENDIF}