Project

General

Profile

Tips Tricks » History » Version 56

Per Amundsen, 08/26/2016 08:18 PM

1 4 Per Amundsen
{{>toc}}
2
3 1 Per Amundsen
h1. Tips
4
5 49 Per Amundsen
h2. Unicode/Font fallback
6 1 Per Amundsen
7 8 Per Amundsen
If you ever experience an issue with displaying unicode characters (which is not just an encoding issue), try type:
8 1 Per Amundsen
9 30 Mr. BS
<pre>/setoption Messages UseDrawText True</pre>
10 1 Per Amundsen
11 50 Per Amundsen
This will enable a different (but slower) method for drawing messages.
12 1 Per Amundsen
13
To disable, type:
14
15 31 Mr. BS
<pre>/setoption Messages UseDrawText False</pre>
16 5 Per Amundsen
17 56 Per Amundsen
Can now be set in [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] -> [[Messages_Options#Use-alternative-text-rendering|Use alternative text rendering]].
18
19 7 Per Amundsen
h2. Auth before joining a channel
20 5 Per Amundsen
21
If you need to be authed with nickserv before joining a channel, you can use the [[/sleep]] (or [[/timer]]) command in your serverlist "Run these commands on connect" field:
22
23
<pre>
24
/msg nickserv identify <password>
25
/sleep 3 /join #channel1,#channel2
26
</pre>
27
28 6 Per Amundsen
/sleep 3, means wait 3 seconds before running the following command.
29 16 Per Amundsen
30 29 Per Amundsen
_The new serverlist has this feature built-in as well as "SASL":http://ircv3.net/specs/extensions/sasl-3.1.html support which makes this a non issue._
31 11 Per Amundsen
32
h2. Copy text from message buffer
33
34
When you select text from the message buffer, AdiIRC will automatically copy the text to the clipboard when you release the left mouse button.
35
36 52 Per Amundsen
If you prefer to manually press %(key)CTRL% + %(key)C%, you can go to [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] and disable [[Messages_Options#AutoCopy-selected-text-to-Clipboard|AutoCopy selected text to Clipboard]]  and [[Messages_Options#AutoFocus-Editbox|AutoFocus Editbox]].
37 11 Per Amundsen
38
_These options might be merged into one soon as well as a feature to ask which method to use._
39 20 Per Amundsen
40
h2. Problem connecting to TLS servers
41
42
If you experience problems connecting to a TLS only server, you can try the ".NET 4.5":http://adiirc.com/download.php version which has support for TLS 1.1 and TLS 1.2. 
43 21 Per Amundsen
44
h2. Disable or changing CTCP VERSION reply
45
46 52 Per Amundsen
You can disable or change the CTCP VERSION reply using the [[on CTCP|CTCP event]] in a small script.
47 21 Per Amundsen
48 23 Per Amundsen
This can be used for any CTCP request.
49
50 21 Per Amundsen
<pre>
51
; Disable CTCP version reply.
52
CTCP *:VERSION:*:halt
53
54
; Reply with a custom version.
55
CTCP *:VERSION:*:ctcpreply $nick IRC Version 42 | halt
56
</pre>
57 24 Per Amundsen
58 33 Per Amundsen
h2. Disable notification popups/tips
59 24 Per Amundsen
60 45 Per Amundsen
Tips for various events can be disabled in [[Options_Dialog|Options]] -> [[Tips_Options|Tips]], to disable highlight tips, go to [[Options_Dialog|Options]] -> [[Highlights_Options|Highlights]], in the listbox area select "$me", then click the "Edit" button, uncheck "Tip message" and click "Save".
61 33 Per Amundsen
62
h2. Disable highlight sound/beep
63
64 45 Per Amundsen
Go to [[Options_Dialog|Options]] -> [[Highlights_Options|Highlights]], in the listbox area select "$me", then click the "Edit" button, set the sound dropdown to "No sound" and click "Save".
65 26 Per Amundsen
66
h2. Client certificates
67
68 27 Per Amundsen
AdiIRC supports only "PFX":https://en.wikipedia.org/wiki/PKCS_12 certificates, you can convert a "PEM":https://en.wikipedia.org/wiki/Privacy-enhanced_Electronic_Mail certificate to "PFX":https://en.wikipedia.org/wiki/PKCSusing using this "openssl":https://www.openssl.org/ format:
69 26 Per Amundsen
70
<pre>
71
openssl pkcs12 -export -out mynick.pfx -in mynick.pem
72
</pre>
73 28 Per Amundsen
74
For creating a new certificate, have a look "here":http://help.globalscape.com/help/secureserver3/Generating_a_PKCS_12_private_key_public_certificate.htm
75 36 Per Amundsen
76 46 Per Amundsen
h2. Update to a beta release
77
78
To update to a beta release, just type [[/betaup]].
79
80 47 Per Amundsen
h2. Align a Toolbar item to the right
81
82
There is a tiny "|" separator to the right, if you right click the Toolbar and choose "Customize", you are able to drag the item to the right of that border.
83
84
!shot_160503_110837.png!
85
86 36 Per Amundsen
h2. Speed up bnc buffer
87
88
Things you can try:
89
90
* Make sure you are using latest beta.
91
* Reduce Options -> Messages -> Max buffer.
92
* Disable Options -> Monitor -> Monitor Channels/Servers.
93
* Type "/setoption Links CaptureLinks False" to disable capturing links.
94
* Disable Options -> Windows -> Focus newly opened windows.
95 38 Per Amundsen
* Disable/reduce channel backgrounds.
96
* Disable/reduce emoticons.
97 44 Per Amundsen
* Disable/reduce highlights.
98
* Disable/reduce nick colors.
99 48 Per Amundsen
* Disable/reduce [[on TEXT]] and [[on PARSELINE]] scripts.
100 41 Per Amundsen
* Disable Options -> Logging-> Log channels.
101 39 Per Amundsen
* Make sure UseDrawText is set to false: type "/setoption Messages UseDrawText False"
102 42 Per Amundsen
* Make sure channel/main window is as large as possible (or smaller font) to avoid word wrapping.
103 43 Per Amundsen
* Use fixed size message font.
104 51 Per Amundsen
105
h2. How to change the default options used when connecting with /server
106
107
The default options used when connecting with [[/server]] or from Menubar -> File -> New window can be changed in [[Options_Dialog|Options]] -> [[Quick Connect Options|Quick Connect]].
108 53 Per Amundsen
109
h2. Slow logon
110
111
Some networks tries to scan your port 113 to see if you have a [[Identd]] server running, if the port is closed or the identd server is not running, it can take a while for the scan to timeout, make sure [[Identd]] server is enabled in [[Options_Dialog|Options]] -> [[Server_Options|Server]] and that port 113 is open in your firewall and router. (AdiIRC does not yet support "UPNP":https://en.wikipedia.org/wiki/Universal_Plug_and_Play).
112 54 Per Amundsen
113 55 Per Amundsen
h2. Undocking monitor panels into a window
114 54 Per Amundsen
115
When "Lock Bars" is disabled (right click any menubar/toolbar/switchbar/statusbar/treebar to enable/disable) you can left-click the header of the monitor panel or a tab and move it with the mouse, if you release the mouse in the middle of the AdiIRC main window, the monitor will become a standalone window.
116
117
The window can be docked inside AdiIRC as a regular channel window by pressing CTRL + D.
118
119
You can also undock the monitor panel into a window by right-clicking the header or tab and choose "Undock".