3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-11 20:52:42 +01:00

Merge branch 'master' into devel

Conflicts:
	VERSION
This commit is contained in:
James Lu 2016-07-25 11:15:11 -07:00
commit 7d0cd1d454
3 changed files with 40 additions and 3 deletions

View File

@ -1,5 +1,37 @@
# PyLink 0.9-beta1
Tagged as **0.9-beta1** by [GLolol](https://github.com/GLolol)
# PyLink 0.9.0
Tagged as **0.9.0** by [GLolol](https://github.com/GLolol)
### *Important*, backwards incompatible changes for those upgrading from 0.8.x!
- The configuration file is now **pylink.yml** by default, instead of **config.yml**.
- PyLink now requires installing itself as a module, instead of simply running from source. Do this via `python3 setup.py install --user`.
- The `use_experimental_whois` option for InspIRCd servers and the `spawn_servers` option in Relay have been removed, as they are now implied.
----
### Changes from 0.9-beta1
##### Added / changed / removed features
- PyLink is now slightly more descriptive if you try to start it with missing dependencies or a missing conf file.
- The PyLink API reference is now at https://pylink.github.io/ instead of in `docs/technical`.
- The `exec` and `eval` commands now have access to the `pylinkirc` and `importlib` imports by default.
- `jupe` from the `opercmds` plugin now requires the admin login instead of just oper.
- opercmds: `kick` now treat channels case insensitively.
- Documentation update: there are now guides to Automode and PyLink's Services API.
##### Bug fixes
- Fixed the `reload` command (again).
- Fixed compatibility with ircmatch 1.2: PyLink previously used features that were only available in the unreleased Git version.
- The `identify` command now responds with NOTICE instead of PM, behaving like any other command. Thanks to @Techman- for pointing this out.
- The `identify` command must be called in private again.
- Relay now shows secret channels in `linked` to those inside the channel, regardless of whether they're opered.
- `$channel:#channel:prefixmode` exttarget matching no longer raises errors if the target isn't in the specified channel.
##### Internal improvements
- Redone version handling so `__init__.py` isn't committed anymore.
- `update.sh` now passes arguments to the `pylink` launcher.
# [PyLink 0.9-beta1](https://github.com/GLolol/PyLink/releases/tag/0.9-beta1)
Tagged as **0.9-beta1** by [GLolol](https://github.com/GLolol) on 2016-07-14T02:11:07Z
### *Important*, backwards incompatible changes for those upgrading from 0.8.x
- The configuration file is now **pylink.yml** by default, instead of **config.yml**.

View File

@ -5,7 +5,7 @@ handlers.py - Implements miscellaneous IRC command handlers (WHOIS, services log
from pylinkirc import utils, conf
from pylinkirc.log import log
def handle_whois(irc, source, command, args):
"""Handle WHOIS queries, for IRCds that send them across servers (charybdis, UnrealIRCd; NOT InspIRCd)."""
"""Handle WHOIS queries."""
target = args['target']
user = irc.users.get(target)

View File

@ -283,6 +283,11 @@ plugins:
# to a template string, as they connect. This requires the changehost: block
# to be configured correctly below.
#- changehost
# Automode plugin: allows assigning channel access to specific hostmasks or
# exttargets. See https://github.com/GLolol/PyLink/blob/master/docs/automode.md
# for a usage guide.
#- automode
logging:
# This configuration block defines targets that PyLink should log commands,