Project

General

Profile

General Options » History » Version 28

Per Amundsen, 02/25/2020 05:22 PM

1 2 Per Amundsen
{{>toc}}
2
3 1 Per Amundsen
h1. General Options
4
5
h2. Start with windows
6
7 14 Per Amundsen
Makes AdiIRC auto start when windows is started.
8 1 Per Amundsen
9
h2. Start minimized
10
11
Makes AdiIRC start in a minimized state, due to various reasons, the main window is shown briefly before it minimizes.
12
13
h2. Allow only one copy of AdiIRC running.
14
15
If enabled, only one copy of AdiIRC.exe in the current folder is allowed to run.
16
17
_AdiIRC.exe in other folders is ignored._
18
19
h2. AdiIRC is always on top of other windows.
20
21
Puts AdiIRC on top of all other windows on your desktop. 
22
23 20 Per Amundsen
_See also [[/showadiirc]]._
24 1 Per Amundsen
25
h2. Disable CTCP reply
26
27 5 Per Amundsen
Disable's all [[CTCP]] reply's, such as CTCP VERSION/PING/TIME
28 1 Per Amundsen
29
Can also be disabled by a script (or modify the reply):
30
31
<pre>
32
; halt all ctcp reply's.
33
ctcp *:*:*:halt
34
35
; halt only VERSION reply's
36
ctcp *:VERSION:*:halt
37
</pre>
38 3 Per Amundsen
39
h2. Keep channels open on part
40
41
Keeps the channel windows open whenever you part or are parted from a channel.
42
43
h2. Keep channels open on kick
44
45 7 Per Amundsen
Keeps the channel windows open whenever you are kicked from a channel.
46 3 Per Amundsen
47
h2. Rejoin channels on kick
48
49
Automatically rejoins a channel if you are kicked.
50
51 16 Per Amundsen
h2. Rejoin channels on reconnect
52
53
Automatically rejoins all opens channels when reconnecting a server.
54
55 3 Per Amundsen
h2. Confirm closing while connected to server
56 1 Per Amundsen
57
When enabled, a popup dialog to confirm is shown to confirm closing AdiIRC is one or more servers is connected.
58
59
h2. Confirm disconnecting when clicking connect icon
60
61
When enabled, a popup dialog to confirm is shown when clicking the (dis)connect icon in the toolbar, if the current server is connected.
62
63 18 Per Amundsen
h2. Confirm closing server windows
64 1 Per Amundsen
65 18 Per Amundsen
When enabled, a popup dialog to confirm is shown when closing a server window.
66
67
h2. Confirm closing channel windows
68
69
When enabled, a popup dialog to confirm is shown when closing a channel window.
70
71
h2. Confirm closing private windows
72
73
When enabled, a popup dialog to confirm is shown when closing a private window.
74 1 Per Amundsen
75 14 Per Amundsen
h2. Associate AdiIRC with irc:// links
76
77 15 Per Amundsen
Set's AdiIRC as the default irc client when clicking irc:// ircs:// irc6:// ircs6:// xdcc:// links.
78 14 Per Amundsen
79
h2. Check association on startup
80
81 1 Per Amundsen
Checks if AdiIRC is the default irc client on startup and set's it default if it's not.
82 15 Per Amundsen
83
h2. Hide channel key
84
85
Hides the channel key from the Titlebar and Statusbar.
86 14 Per Amundsen
87 28 Per Amundsen
h2. Lock bars
88
89
If enabled, locks all Toolbars and Monitor Panels preventing them from being moved. It also hides the Monitor Panel headers.
90
91 27 Per Amundsen
h2. When opening irc:// links, always
92
93
If set to *Ask*, AdiIRC will ask you every time you click a irc:// url whether you want to open the connection in the current connection or a new connection.
94
If set to *Open in current Connection*, AdiIRC will always open the connection in current connection.
95
If set to *Open in new connection*, AdiIRC will always open the connection in a new connection.
96
97 14 Per Amundsen
h2. Check for updates
98
99
Allows AdiIRC to check for new versions Never/Daily/Weekly/Monthly.
100
101 21 Per Amundsen
_See also [[/update]]._
102
103 14 Per Amundsen
h2. Include beta versions
104
105
Allows AdiIRC to check for beta versions as well as regular versions.
106
107
_Beta versions is usually safe to install._
108 21 Per Amundsen
109
_See also [[/betaup]]._
110 14 Per Amundsen
111 1 Per Amundsen
h2. Global shortcut to hide/show main window
112
113
Also called bosskey.
114
115
Sets a keybind to hide/show main AdiIRC regardles if it has focus or not.
116
117
h2. Choose Language
118
119
Sets the language of AdiIRC, see http://adiirc.com/translations/ for more info.
120
121
h2. Border size
122
123 26 Per Amundsen
Sets the border size around the text area, [[Topicbox Control|Topicbox]], [[Editbox Control|Editbox]] and nicklist.
124 17 Per Amundsen
125
h2. Join channels when invited
126
127
Automatically joins a channel when invited by another user.
128
129
A safer approach using a script:
130
131
<pre>
132
on *:INVITE:#:{
133
  if ($input($nick want's to invite you into $chan Accept?, y, Invite) {
134
    /join $chan
135
  }
136
}
137
</pre>
138
139
h2. Ignore channels
140
141 22 Per Amundsen
List of channels to ignore when *Join channel when invited* is enabled.
142 23 Per Amundsen
143 25 Per Amundsen
_Can be a [[Scripting_Wildcards|wildcard]]._