Project

General

Profile

Errata-20160307 » History » Version 3

David Demelier, 03/07/2016 08:05 PM

1 1 David Demelier
h1. Errata 20160307
2
3
*Topic*: Invalid responses in *plugin info* command
4
*Category*: Plugins
5 2 David Demelier
*Corrected*: pending
6 1 David Demelier
*Affected versions*: 2.0.0
7
*Task*: #430
8
9
h1. Background
10
11
The plugin *plugin* can inspect and show loaded plugins from IRC commands. It understands *info* and *list*.
12
13
h1. Problem
14
15
The *plugin info* command always gives the output of the current plugin and not the target one. This is because of a conditional error in the @Irccd.Plugin@ API.
16
17
h1. Solution
18
19
Upgrade to a newer version if applicable.
20
21
h2. Using Mercurial
22
23
If you don't have a local copy:
24
25
<pre>
26
hg clone -u https://hg.malikania.fr/
27
</pre>
28
29
If you already have a local copy:
30
31
<pre>
32
cd /path/to/irccd
33
hg pull
34
hg up release-2.0
35
</pre>
36
37
And install new version of irccd.
38
39
h2. Using patch
40
41
Download the following patch:
42 3 David Demelier
43
* http://releases.malikania.fr/irccd/errata/20160307.patch
44
* http://releases.malikania.fr/irccd/errata/20160307.patch.asc
45
46
Apply it:
47
48
<pre>
49
cd /path/to/irccd/
50
patch -p1 < /path/to/20160307.patch
51
</pre>