forked from pool/putty
Compare commits
3 Commits
Author | SHA256 | Date | |
---|---|---|---|
840b663bd2 | |||
|
d55c8e28af | ||
e7a0ea1fd5 |
4
_scmsync.obsinfo
Normal file
4
_scmsync.obsinfo
Normal file
@@ -0,0 +1,4 @@
|
||||
mtime: 1733992936
|
||||
commit: b0b1f66358d0ac64a3eb71e1833373f7d5d64aee7880dfc9a24cfffbe3a38667
|
||||
url: https://src.opensuse.org/jengelh/putty
|
||||
revision: master
|
3
build.specials.obscpio
Normal file
3
build.specials.obscpio
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:799cd602814448890dcad7a8c7c28b363e40e2247a1ae8b9fd02dc29a855044c
|
||||
size 256
|
BIN
putty-0.82.tar.gz
(Stored with Git LFS)
Normal file
BIN
putty-0.82.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
putty-0.82.tar.gz.gpg
Normal file
BIN
putty-0.82.tar.gz.gpg
Normal file
Binary file not shown.
BIN
putty-0.83.tar.gz
(Stored with Git LFS)
BIN
putty-0.83.tar.gz
(Stored with Git LFS)
Binary file not shown.
Binary file not shown.
@@ -7,14 +7,14 @@
|
||||
---
|
||||
conf.h | 20 ++++++++++----------
|
||||
settings.c | 29 +++++++++++++++++++++++------
|
||||
unix/platform.h | 2 +-
|
||||
unix/platform.h | 6 +-----
|
||||
windows/utils/defaults.c | 2 +-
|
||||
4 files changed, 35 insertions(+), 18 deletions(-)
|
||||
4 files changed, 35 insertions(+), 22 deletions(-)
|
||||
|
||||
Index: putty-0.83/conf.h
|
||||
Index: putty-0.82/conf.h
|
||||
===================================================================
|
||||
--- putty-0.83.orig/conf.h
|
||||
+++ putty-0.83/conf.h
|
||||
--- putty-0.82.orig/conf.h
|
||||
+++ putty-0.82/conf.h
|
||||
@@ -408,7 +408,7 @@ CONF_OPTION(ssh_nc_port, /* port to conn
|
||||
/* Telnet options */
|
||||
CONF_OPTION(termtype,
|
||||
@@ -105,10 +105,10 @@ Index: putty-0.83/conf.h
|
||||
SAVE_KEYWORD("LineCodePage"),
|
||||
)
|
||||
CONF_OPTION(cjk_ambig_wide,
|
||||
Index: putty-0.83/settings.c
|
||||
Index: putty-0.82/settings.c
|
||||
===================================================================
|
||||
--- putty-0.83.orig/settings.c
|
||||
+++ putty-0.83/settings.c
|
||||
--- putty-0.82.orig/settings.c
|
||||
+++ putty-0.82/settings.c
|
||||
@@ -18,8 +18,8 @@ static const struct keyvalwhere cipherna
|
||||
{ "aes", CIPHER_AES, -1, -1 },
|
||||
{ "chacha20", CIPHER_CHACHA20, CIPHER_AES, +1 },
|
||||
@@ -119,7 +119,7 @@ Index: putty-0.83/settings.c
|
||||
{ "des", CIPHER_DES, -1, -1 },
|
||||
{ "blowfish", CIPHER_BLOWFISH, -1, -1 },
|
||||
{ "arcfour", CIPHER_ARCFOUR, -1, -1 },
|
||||
@@ -984,11 +984,28 @@ void load_open_settings(settings_r *sess
|
||||
@@ -982,11 +982,28 @@ void load_open_settings(settings_r *sess
|
||||
|
||||
for (i = 0; i < 22; i++) {
|
||||
static const char *const defaults[] = {
|
||||
@@ -153,23 +153,27 @@ Index: putty-0.83/settings.c
|
||||
};
|
||||
char buf[20], *buf2;
|
||||
int c0, c1, c2;
|
||||
Index: putty-0.83/unix/platform.h
|
||||
Index: putty-0.82/unix/platform.h
|
||||
===================================================================
|
||||
--- putty-0.83.orig/unix/platform.h
|
||||
+++ putty-0.83/unix/platform.h
|
||||
@@ -408,7 +408,7 @@ void fd_socket_set_psb_prefix(Socket *s,
|
||||
* handle server-side fonts, is legacy. So the default font is
|
||||
* unconditionally the client-side one.
|
||||
--- putty-0.82.orig/unix/platform.h
|
||||
+++ putty-0.82/unix/platform.h
|
||||
@@ -400,11 +400,7 @@ void fd_socket_set_psb_prefix(Socket *s,
|
||||
/*
|
||||
* Default font setting, which can vary depending on NOT_X_WINDOWS.
|
||||
*/
|
||||
-#define DEFAULT_GTK_CLIENT_FONT "client:Monospace 12"
|
||||
+#define DEFAULT_GTK_CLIENT_FONT "client:Monospace 16"
|
||||
#define DEFAULT_GTK_SERVER_FONT "server:fixed"
|
||||
#define DEFAULT_GTK_FONT DEFAULT_GTK_CLIENT_FONT
|
||||
-#ifdef NOT_X_WINDOWS
|
||||
-#define DEFAULT_GTK_FONT "client:Monospace 12"
|
||||
-#else
|
||||
-#define DEFAULT_GTK_FONT "server:fixed"
|
||||
-#endif
|
||||
+#define DEFAULT_GTK_FONT "client:Monospace 16"
|
||||
|
||||
Index: putty-0.83/windows/utils/defaults.c
|
||||
/*
|
||||
* pty.c.
|
||||
Index: putty-0.82/windows/utils/defaults.c
|
||||
===================================================================
|
||||
--- putty-0.83.orig/windows/utils/defaults.c
|
||||
+++ putty-0.83/windows/utils/defaults.c
|
||||
--- putty-0.82.orig/windows/utils/defaults.c
|
||||
+++ putty-0.82/windows/utils/defaults.c
|
||||
@@ -9,7 +9,7 @@
|
||||
FontSpec *platform_default_fontspec(const char *name)
|
||||
{
|
||||
|
@@ -1,19 +1,3 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 18 15:48:36 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release 0.83
|
||||
* Support for ML-KEM, a NIST-standardised post-quantum key
|
||||
exchange mechanism.
|
||||
* Bug fix: psftp -b works again.
|
||||
* Fixed bug which crashed Pageant if an SSH connection is
|
||||
abandoned while waiting for a deferred decryption passphrase.
|
||||
* Fix a tight loop bug occurring if PuTTY tried to send an
|
||||
empty answerback string.
|
||||
* Fixed a bug where some configuration edit boxes' contents
|
||||
were accidentally truncated to 127 characters.
|
||||
* Bug fix: the small keypad keys did not reliably work in the
|
||||
terminal on Unix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 5 01:22:12 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package putty
|
||||
#
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: putty
|
||||
Version: 0.83
|
||||
Version: 0.82
|
||||
Release: 0
|
||||
Summary: SSH client with optional GTK-based terminal emulator frontend
|
||||
License: MIT
|
||||
|
Reference in New Issue
Block a user