* Move orig_argc and orig_argv to sakura global struct
* Add keyword field to desktop file
* Don't give Gdk-CRITICAL error for non-set keyboard shortcuts
* feature: allow adjusting VTE line height from configuration
* sakura_key_press_cb(): do not return early if switch_tab_accelerator is
detected
* Add keybinding to open a new window (by spawning a new instance of Sakura)
OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/sakura?expand=0&rev=54
40 lines
1.4 KiB
Diff
40 lines
1.4 KiB
Diff
Index: sakura-3.8.9/CMakeLists.txt
|
|
===================================================================
|
|
--- sakura-3.8.9.orig/CMakeLists.txt
|
|
+++ sakura-3.8.9/CMakeLists.txt
|
|
@@ -58,7 +58,7 @@ ADD_SUBDIRECTORY (po)
|
|
|
|
INSTALL (TARGETS sakura RUNTIME DESTINATION bin)
|
|
INSTALL (FILES sakura.desktop DESTINATION share/applications)
|
|
-INSTALL (FILES terminal-tango.svg DESTINATION share/pixmaps)
|
|
+INSTALL (FILES sakura.png DESTINATION share/pixmaps)
|
|
IF (POD2MAN)
|
|
INSTALL (FILES ${sakura_BINARY_DIR}/sakura.1 DESTINATION share/man/man1)
|
|
ENDIF (POD2MAN)
|
|
Index: sakura-3.8.9/sakura.desktop
|
|
===================================================================
|
|
--- sakura-3.8.9.orig/sakura.desktop
|
|
+++ sakura-3.8.9/sakura.desktop
|
|
@@ -92,7 +92,7 @@ Comment[zh_CN]=使用命令行
|
|
Comment[zh_TW]=使用指令列
|
|
TryExec=sakura
|
|
Exec=sakura
|
|
-Icon=terminal-tango
|
|
+Icon=sakura.png
|
|
Type=Application
|
|
Categories=GTK;Utility;TerminalEmulator;System;
|
|
Keywords=terminal;
|
|
Index: sakura-3.8.9/src/sakura.c
|
|
===================================================================
|
|
--- sakura-3.8.9.orig/src/sakura.c
|
|
+++ sakura-3.8.9/src/sakura.c
|
|
@@ -361,7 +361,7 @@ struct sakura_tab {
|
|
};
|
|
|
|
|
|
-#define ICON_FILE "terminal-tango.svg"
|
|
+#define ICON_FILE "sakura.svg"
|
|
#define SCROLL_LINES 4096
|
|
#define DEFAULT_SCROLL_LINES 4096
|
|
#define HTTP_REGEXP "(ftp|http)s?://[^ \t\n\b]+[^.,!? \t\n\b()<>{}«»„“”‚‘’\\[\\]\'\"]"
|