From: Pekka Riikonen Date: Wed, 4 Dec 2002 20:30:48 +0000 (+0000) Subject: updates. X-Git-Tag: silc.client.0.9.10~7 X-Git-Url: http://git.silcnet.org/gitweb/?a=commitdiff_plain;h=fe6df02a68087253223ca705b5229fc9dd80eca9;p=silc.git updates. --- diff --git a/TODO b/TODO index c972651c..a286ba07 100644 --- a/TODO +++ b/TODO @@ -1,8 +1,6 @@ TODO for Irssi SILC Client 1.0 ============================== - o Signed message payload handling on UI - o Check make install with static/shared libs o Testing - See test plan: diff --git a/apps/irssi/default.theme b/apps/irssi/default.theme index 4c97c6d9..b3c7ba3b 100644 --- a/apps/irssi/default.theme +++ b/apps/irssi/default.theme @@ -304,10 +304,10 @@ abstracts = { # ownmsgnick_signed = "{msgnick {flag_signed} $1-}"; # ownprivmsgnick_signed = "{msgnick {flag_signed} $*}"; # - flag_signed = "%GS%n"; - flag_unknown = "%Y?%n"; - flag_failed = "%RF%n"; - + flag_signed = "[%GS%n]"; + flag_unknown = "[%Y?%n]"; + flag_failed = "[%RF%n]"; + pubmsghinick_signed = "{msgnick {flag_signed} $0$2-%n}"; pubmsghinick_unknown = "{msgnick {flag_unknown} $0$2-%n}"; pubmsghinick_failed = "{msgnick {flag_failed} $0$2-%n}"; @@ -316,9 +316,9 @@ abstracts = { pubmsgmenick_unknown = "%g<{flag_unknown}$1->%n %|"; pubmsgmenick_failed = "%g<{flag_failed}$1->%n %|"; - pubmsgnick_signed = "{msgnick {flag_signed} $1-}"; - pubmsgnick_unknown = "{msgnick {flag_unknown} $1-}"; - pubmsgnick_failed = "{msgnick {flag_failed} $1-}"; + pubmsgnick_signed = "{msgnick {flag_signed}$0 $1-}"; + pubmsgnick_unknown = "{msgnick {flag_unknown}$0 $1-}"; + pubmsgnick_failed = "{msgnick {flag_failed}$0 $1-}"; privmsg_signed = "{privmsg {flag_signed}$0 $1}"; privmsg_unknown = "{privmsg {flag_unknown}$0 $1}"; diff --git a/apps/irssi/docs/help/in/smsg.in b/apps/irssi/docs/help/in/smsg.in index 1bdad4eb..659de86d 100644 --- a/apps/irssi/docs/help/in/smsg.in +++ b/apps/irssi/docs/help/in/smsg.in @@ -11,8 +11,17 @@ IS NOT private message, it is normal channel message. Also this message will be signed and can be verified by using your public key. -Example: +The default theme of Irssi SILC Client shows the digital signed +messages with [S] at start of the nickname who sent the message, when +the message was successfully verified, [?] if the message could not +be verified since the public key of the sender isn't cached locally, +or [F] if the signature verificationn failed. If you do not have +the sender's public key you can fetch it with GETKEY command. + +Examples: /SMSG Foobar Very authenticated message +/SMSG -channel silc Another signed message +/SMSG * I truly said this -See also: MSG QUERY +See also: MSG QUERY GETKEY diff --git a/lib/silccrypt/Makefile.am b/lib/silccrypt/Makefile.am index ec36004d..e2522d88 100644 --- a/lib/silccrypt/Makefile.am +++ b/lib/silccrypt/Makefile.am @@ -20,8 +20,7 @@ AUTOMAKE_OPTIONS = 1.0 no-dependencies foreign noinst_LTLIBRARIES = libsilccrypt.la -# Compile silccrypt always also as shared library since the SIMs will -# need it. +# Compile silccrypt always as shared library since silcsim will need it. LIBTOOL_ENABLE_SHARED=yes libsilccrypt_la_SOURCES = \ diff --git a/libtoolfix b/libtoolfix index 4f2a01ff..e7955faa 100755 --- a/libtoolfix +++ b/libtoolfix @@ -40,8 +40,7 @@ EOF # Do a trick with the ltmain.sh to make these settings valid ltmain=`pwd`/ltmain.sh echo ". $ltmain" >> ./libtool.tmp -mv ./libtool ./libtool.orig -mv ./libtool.tmp ./libtool +mv -f ./libtool.tmp ./libtool chmod +x ./libtool exit 1