Patches item #3079466, was opened at 2010-10-01 14:29
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3079466&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: tk 8.5 font fix ought to apply to 8.6 too
Initial Comment:
Index: pd.tk
===================================================================
--- pd.tk (révision 14147)
+++ pd.tk (copie de travail)
@@ -133,10 +134,10 @@
# Pd-0.39.2-extended hacks to make font/box sizes the same across platform
puts stderr "tk scaling is [tk scaling]"
-tk scaling 1
+#tk scaling 1
# for some reason, the fonts are bigger in Tcl/Tk 8.5 than 8.4
-if {$pd_nt != 1 && $::tcl_version eq "8.5"} {
+if {$pd_nt != 1 && [string compare $::tcl_version "8.5"] >= 0} {
set console_font_size 9
} else {
set console_font_size 12
@@ -4020,7 +4023,7 @@
if {$pd_nt == 1} { raise . }
set fontlist ""
- if {$pd_nt != 1 && $::tcl_version eq "8.5"} {
+ if {$pd_nt != 1 && [string compare $::tcl_version "8.5"] >= 0} {
set sizelist "5 6 8 9 10 12 14 16 19 25"
} else {
set sizelist "8 9 10 12 14 16 18 24 30 36"
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478072&aid=3079466&group_…
Bugs item #3079294, was opened at 2010-10-01 11:18
Message generated for change (Tracker Item Submitted) made by rdz
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3079294&group_…
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: externals
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Roman Haefeli (rdz)
Assigned to: IOhannes m zmlnig (zmoelnig)
Summary: iemnet: [tcpclient] opens more than one socket
Initial Comment:
It's currently possible to open more than one socket with [tcpclient], i.e. sending a 'connect' message for the second time without sending a prior 'disconnect' does not trigger an error. Also on the server side, a second socket is opened without the first one being closed. However, only data sent to the last opened socket will be printed by [tcpclient]. Data sent to the older sockets seem to cause traffic, but cannot be printed by [tcpclient].
I think, the way to fix this would be to disallow opening more than one socket. As soon as [tcpclient] is connected to a host, it should print an error, when sending another 'connect' message
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=478070&aid=3079294&group_…