Tips Tricks » History » Version 49
Per Amundsen, 05/30/2016 05:24 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 | 3 | Per Amundsen | This will enable a different 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 | 7 | Per Amundsen | h2. Auth before joining a channel |
| 18 | 5 | Per Amundsen | |
| 19 | 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: |
||
| 20 | |||
| 21 | <pre> |
||
| 22 | /msg nickserv identify <password> |
||
| 23 | /sleep 3 /join #channel1,#channel2 |
||
| 24 | </pre> |
||
| 25 | |||
| 26 | 6 | Per Amundsen | /sleep 3, means wait 3 seconds before running the following command. |
| 27 | 16 | Per Amundsen | |
| 28 | 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._ |
| 29 | 11 | Per Amundsen | |
| 30 | h2. Copy text from message buffer |
||
| 31 | |||
| 32 | When you select text from the message buffer, AdiIRC will automatically copy the text to the clipboard when you release the left mouse button. |
||
| 33 | |||
| 34 | 18 | Per Amundsen | If you prefer to manually press %(key)CTRL% + %(key)C%, you can go to [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] and disable [[Message_Options#AutoCopy-selected-text-to-clipboard|AutoCopy selected text to clipboard]] and [[Message_Options#AutoFocus-editbox|AutoFocus editbox]]. |
| 35 | 11 | Per Amundsen | |
| 36 | _These options might be merged into one soon as well as a feature to ask which method to use._ |
||
| 37 | 20 | Per Amundsen | |
| 38 | h2. Problem connecting to TLS servers |
||
| 39 | |||
| 40 | 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. |
||
| 41 | 21 | Per Amundsen | |
| 42 | h2. Disable or changing CTCP VERSION reply |
||
| 43 | |||
| 44 | 22 | Per Amundsen | You can disable or change the CTCP VERSION reply using the [[CTCP event]] in a small script. |
| 45 | 21 | Per Amundsen | |
| 46 | 23 | Per Amundsen | This can be used for any CTCP request. |
| 47 | |||
| 48 | 21 | Per Amundsen | <pre> |
| 49 | ; Disable CTCP version reply. |
||
| 50 | CTCP *:VERSION:*:halt |
||
| 51 | |||
| 52 | ; Reply with a custom version. |
||
| 53 | CTCP *:VERSION:*:ctcpreply $nick IRC Version 42 | halt |
||
| 54 | </pre> |
||
| 55 | 24 | Per Amundsen | |
| 56 | 33 | Per Amundsen | h2. Disable notification popups/tips |
| 57 | 24 | Per Amundsen | |
| 58 | 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". |
| 59 | 33 | Per Amundsen | |
| 60 | h2. Disable highlight sound/beep |
||
| 61 | |||
| 62 | 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". |
| 63 | 26 | Per Amundsen | |
| 64 | h2. Client certificates |
||
| 65 | |||
| 66 | 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: |
| 67 | 26 | Per Amundsen | |
| 68 | <pre> |
||
| 69 | openssl pkcs12 -export -out mynick.pfx -in mynick.pem |
||
| 70 | </pre> |
||
| 71 | 28 | Per Amundsen | |
| 72 | For creating a new certificate, have a look "here":http://help.globalscape.com/help/secureserver3/Generating_a_PKCS_12_private_key_public_certificate.htm |
||
| 73 | 36 | Per Amundsen | |
| 74 | 46 | Per Amundsen | h2. Update to a beta release |
| 75 | |||
| 76 | To update to a beta release, just type [[/betaup]]. |
||
| 77 | |||
| 78 | 47 | Per Amundsen | h2. Align a Toolbar item to the right |
| 79 | |||
| 80 | 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. |
||
| 81 | |||
| 82 | !shot_160503_110837.png! |
||
| 83 | |||
| 84 | 36 | Per Amundsen | h2. Speed up bnc buffer |
| 85 | |||
| 86 | Things you can try: |
||
| 87 | |||
| 88 | * Make sure you are using latest beta. |
||
| 89 | * Reduce Options -> Messages -> Max buffer. |
||
| 90 | * Disable Options -> Monitor -> Monitor Channels/Servers. |
||
| 91 | * Type "/setoption Links CaptureLinks False" to disable capturing links. |
||
| 92 | * Disable Options -> Windows -> Focus newly opened windows. |
||
| 93 | 38 | Per Amundsen | * Disable/reduce channel backgrounds. |
| 94 | * Disable/reduce emoticons. |
||
| 95 | 44 | Per Amundsen | * Disable/reduce highlights. |
| 96 | * Disable/reduce nick colors. |
||
| 97 | 48 | Per Amundsen | * Disable/reduce [[on TEXT]] and [[on PARSELINE]] scripts. |
| 98 | 41 | Per Amundsen | * Disable Options -> Logging-> Log channels. |
| 99 | 39 | Per Amundsen | * Make sure UseDrawText is set to false: type "/setoption Messages UseDrawText False" |
| 100 | 42 | Per Amundsen | * Make sure channel/main window is as large as possible (or smaller font) to avoid word wrapping. |
| 101 | 43 | Per Amundsen | * Use fixed size message font. |