Project

General

Profile

FAQ » History » Version 34

Mr. BS, 02/18/2017 03:59 PM

1 1 Ken Spencer
{{>toc}}
2
3
h1. FAQ/FSS
4
5
h5. (Frequently Said Statements)
6
7
8 34 Mr. BS
h2(box). I can't see emoji/some symbols
9 1 Ken Spencer
10
If you ever experience an issue with displaying unicode characters (which is not just an encoding issue), try enable [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] -> [[Messages_Options#Use-alternative-text-rendering|Use alternative text rendering]].
11
12 34 Mr. BS
h2(box). How do I auth/identify before I join?
13 1 Ken Spencer
14 32 Per Amundsen
If you need to be authed with nickserv before joining a channel, you can use the [[/sleep]] (or [[/timer]]) command in your [[Serverlist Dialog|Serverlist]] "Run these commands on connect" field:
15 1 Ken Spencer
16
<pre>
17
/msg nickserv identify <password>
18
/sleep 3 /join #channel1,#channel2
19
</pre>
20
21
/sleep 3, means wait 3 seconds before running the following command.
22
23 32 Per Amundsen
_The new [[Serverlist Dialog|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._
24 1 Ken Spencer
25 34 Mr. BS
h2(box). Why doesn't Ctrl-C work?
26 1 Ken Spencer
27
When you select text from the message buffer, AdiIRC will automatically copy the text to the clipboard when you release the left mouse button.
28
29
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]].
30
31
_These options might be merged into one soon as well as a feature to ask which method to use._
32
33 34 Mr. BS
h2(box). TLS isn't working on a server!
34 1 Ken Spencer
35
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. 
36
37 34 Mr. BS
h2(box). How do I change my version reply?
38 1 Ken Spencer
39
You can disable or change the CTCP VERSION reply using the [[on CTCP|CTCP event]] in a small script.
40
41
This can be used for any CTCP request.
42
43
<pre>
44
; Disable CTCP version reply.
45
CTCP *:VERSION:*:halt
46
47
; Reply with a custom version.
48
CTCP *:VERSION:*:ctcpreply $nick IRC Version 42 | halt
49
</pre>
50
51 34 Mr. BS
h2(box). How do I disable the popups/notifications?
52 1 Ken Spencer
53
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".
54
55 34 Mr. BS
h2(box). How do I disable highlight sounds?
56 1 Ken Spencer
57
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".
58
59 34 Mr. BS
h2(box). How do I use CERTFP, PEM files, etc with AdiIRC.
60 1 Ken Spencer
61
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:
62
63
<pre>
64
openssl pkcs12 -export -out mynick.pfx -in mynick.pem
65
</pre>
66
67
For creating a new certificate, have a look "here":http://help.globalscape.com/help/secureserver3/Generating_a_PKCS_12_private_key_public_certificate.htm
68
69 34 Mr. BS
h2(box). I want to use the beta!
70 1 Ken Spencer
71
To update to a beta release, just type [[/betaup]].
72
73 34 Mr. BS
h2(box). How do I add toolbar items aligned to the right?
74 1 Ken Spencer
75
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.
76
77
!shot_160503_110837.png!
78
79 34 Mr. BS
h2(box). My BNC starts up so slow on AdiIRC!
80 1 Ken Spencer
81
Things you can try:
82
83
* Make sure you are using latest beta.
84 17 Per Amundsen
* Reduce [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] -> Max buffer.
85 18 Per Amundsen
* Disable [[Options_Dialog|Options]] -> [[Monitor_Panels_Options|Monitor Panels]] -> Monitor Channels/Servers.
86 1 Ken Spencer
* Type "/setoption Links CaptureLinks False" to disable capturing links.
87 17 Per Amundsen
* Disable [[Options_Dialog|Options]] -> [[Windows_Options|Windows]] -> Focus newly opened windows.
88 1 Ken Spencer
* Disable/reduce channel backgrounds.
89
* Disable/reduce emoticons.
90
* Disable/reduce highlights.
91
* Disable/reduce nick colors.
92
* Disable/reduce [[on TEXT]] and [[on PARSELINE]] scripts.
93 17 Per Amundsen
* Disable [[Options_Dialog|Options]] -> [[Logging_Options|Logging]] -> Log channels.
94 1 Ken Spencer
* Make sure [[Options_Dialog|Options]] -> [[Messages_Options|Messages]] -> [[Messages_Options#Use-alternative-text-rendering|Use alternative text rendering]] is unchecked.
95
* Make sure channel/main window is as large as possible (or smaller font) to avoid word wrapping.
96
* Use fixed size message font.
97
98 34 Mr. BS
h2(box). How do I make it so /server connects with ...?
99 1 Ken Spencer
100
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]].
101
102 34 Mr. BS
h2(box). Why is 'connecting' slow on some networks?
103 1 Ken Spencer
104
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).
105
106 34 Mr. BS
h2(box). How do I move the monitors to their own window?
107 1 Ken Spencer
108
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.
109
110
The window can be docked inside AdiIRC as a regular channel window by pressing CTRL + D.
111 17 Per Amundsen
112
_See also [[Monitor Panels]]._
113 1 Ken Spencer
114
You can also undock the monitor panel into a window by right-clicking the header or tab and choose "Undock".
115 3 Ken Spencer
116 34 Mr. BS
h2(box). How do I autojoin several channels?
117 3 Ken Spencer
118
Use <code>,</code> inbetween the channels.
119 5 Ken Spencer
120 34 Mr. BS
h2(box). Does AdiIRC have a systray icon?
121 5 Ken Spencer
122 10 Per Amundsen
Yes, check [[Options_Dialog|Options]] -> [[Tray Icon Options|Tray Icon]].
123 5 Ken Spencer
124 34 Mr. BS
h2(box). Can I use AdiIRC without .NET?
125 6 Ken Spencer
126 5 Ken Spencer
No, I use .NET because its fast, easy and it has large libraries which enables me to code much more in less time. On a side note, from Windows Vista, .NET is included in Windows per default. -- kr0n
127
128 34 Mr. BS
h2(box). Does AdiIRC support DCC?
129 7 Ken Spencer
130 5 Ken Spencer
Yes, both chat and file transfers
131
132 34 Mr. BS
h2(box). There is so many other IRC clients, why wasting time writing another?
133 6 Ken Spencer
134 5 Ken Spencer
I mainly do this for fun and learning more about .NET/C# and IRC in general. -- kr0n
135
136 34 Mr. BS
h2(box). I found a bug, what do I do?
137 5 Ken Spencer
138
Check https://dev.adiirc.com/projects/adiirc/issues and see if its been reported. If not, report it!
139
140 34 Mr. BS
h2(box). I got this great idea, can you implement it?
141 5 Ken Spencer
142
Check https://dev.adiirc.com/projects/adiirc/issues and see if someone suggested it. If not, suggest it!
143
144 34 Mr. BS
h2(box). What does "Adi" stands for?
145 5 Ken Spencer
146
Nothing really. It's an old prefix used for some other projects many years ago, and the prefix just carried over to this irc client. Original it was derived from the song A.D.I.D.A.S by the band KoRn. According to some it could stand for All Day I IRC :P -- kr0n
147
148 34 Mr. BS
h2(box). Is AdiIRC open source or can I get the source?
149 5 Ken Spencer
150 27 Per Amundsen
AdiIRC is freeware, but not open source.
151 5 Ken Spencer
152 23 Per Amundsen
There is a system in place in case of "bus factor":https://en.wikipedia.org/wiki/Bus_factor.
153
154 34 Mr. BS
h2(box). Can I use AdiIRC on OSX/Linux?
155 1 Ken Spencer
156 8 Ken Spencer
Follow https://dev.adiirc.com/projects/adiirc/wiki/Wine
157
Using AdiIRC on non-windows isn't as well supported, and using mono isn't supported at all.
158 1 Ken Spencer
159 34 Mr. BS
h2(box). Will you port AdiIRC to my mobile OS?
160 1 Ken Spencer
161
AdiIRC is a desktop IRC client, as such it cannot be ported, a new client would have to be made from scratch and there are already good mobile IRC clients, also I have no interest in mobile IRC. --kr0n
162 10 Per Amundsen
163 34 Mr. BS
h2(box). How do I change message fonts?
164 10 Per Amundsen
165 25 Per Amundsen
Message fonts can be changed in [[Options_Dialog|Options]] -> [[Fonts Options|Fonts]].
166 11 Per Amundsen
167 34 Mr. BS
h2(box). Why does task manager show high memory usage for AdiIRC?
168 11 Per Amundsen
169
The task manager numbers are not the actual memory usage, the .NET framework which runs AdiIRC is like a little OS inside Windows, it allocates memory as needed and free it as needed, just like windows does, there are no such thing as a memory leak in .NET applications, except in very specific cases.
170
171
To show the real memory usage, you can type [[/gcmem]] in the Editbox.
172 12 Per Amundsen
173 34 Mr. BS
h2(box). Does AdiIRC support "OTR":https://en.wikipedia.org/wiki/Off-the-Record_Messaging?
174 12 Per Amundsen
175 14 Per Amundsen
There is no "OTR":https://en.wikipedia.org/wiki/Off-the-Record_Messaging support in AdiIRC and no plans to add it, however it is possible for someone to add OTR support through a [[Plugins|Plugin]] or a [[Scripting_DLL|DLL]]. (As an example, check the [[blowfish]] DLL)
176 15 Per Amundsen
177 34 Mr. BS
h2(box). Why are some windows/channels shown on the desktop?
178 15 Per Amundsen
179
Pressing %(key)CTRL% + %(key)D% toggles "Show on desktop".
180 16 Per Amundsen
181
_"Shown on desktop" status is also saved across sessions._
182 19 Per Amundsen
183 34 Mr. BS
h2(box). How to upgrade/downgrade AdiIRC
184 19 Per Amundsen
185
# Download the (portable) version you want from https://www.adiirc.com/download.php.
186
# Type [[/paths]] -r to open the AdiIRC folder where AdiIRC.exe is.
187
# Close AdiIRC.
188
# Copy the downloaded file into the AdiIRC folder and replace the old AdiIRC.exe with the new one.
189
190
This can be done to go from stable to beta, or from 32 bit to 64 and visa versa, no other steps needed.
191 20 Per Amundsen
192 34 Mr. BS
h2(box). How to backup the config folder
193 20 Per Amundsen
194
Type [[/paths]] -o or go to Menubar -> Tools -> Config Files to open the config folder, copy it anywhere.
195 21 Per Amundsen
196 34 Mr. BS
h2(box). Antivirus flags AdiIRC as having a virus or trojan
197 21 Per Amundsen
198
AdiIRC seems to generate a lot of false positives in some antivirus programs, if possible, please submit the file to your antivirus vendor for false positive analyzes and/or white-list AdiIRC.exe.
199
200
If you are unsure, the false positives seems to be resolved after a few weeks, you can try update again then.
201 26 Per Amundsen
202 34 Mr. BS
h2(box). Log folder using a lot of space
203 26 Per Amundsen
204
If your log folder is using a lot of space and you don't want to delete any logs, you can compress it by right-clicking the log folder, click "Properties", click "Advanced", check "compress contents to save disk space" and press OK.
205 28 Per Amundsen
206 34 Mr. BS
h2(box). How can I temporary disable auto connect when AdiIRC starts?
207 28 Per Amundsen
208 33 Per Amundsen
Press the %(key)SHIFT% key while clicking the AdiIRC icon/shortcut.
209 30 Per Amundsen
210 34 Mr. BS
h2(box). Missing Nicklist on Twitch
211 30 Per Amundsen
212 32 Per Amundsen
Add this line to the [[Serverlist Commands|Commands]] tab to your twitch server in the [[Serverlist Dialog|Serverlist]], it only works for channels with less than 1000 users.
213 30 Per Amundsen
214
<pre>
215
CAP REQ :twitch.tv/membership
216
</pre>
217 31 Per Amundsen
218 34 Mr. BS
h2(box). How to ignore a message containing specific word(s)
219 31 Per Amundsen
220
For now a little scripting is needed, the script editor can be opened from Menubar -> Tools -> [[Edit Scripts]].
221
222
The [[on TEXT]] event can be used to listen for specific messages on specific/all channels:
223
224
*Example*
225
226
<pre>
227
; Ignore all messages containing badword on all channels.
228
on ^*:TEXT:*badword*:*:halt
229
230
; Ignore all messages starting with !badword on a specific channel.
231
on ^*:TEXT:!badword*:#channel:halt
232
</pre>
233
234
You can add as many as you want.