Update CHANGELOG and s/codingteam.net/dev.louiz.org/
This commit is contained in:
parent
7a9b9edee8
commit
b10fd0d229
4 changed files with 9 additions and 4 deletions
|
@ -1,17 +1,21 @@
|
||||||
This file describes the new features in each poezio release.
|
This file describes the new features in each poezio release.
|
||||||
For more detailed changelog, see the roadmap:
|
For more detailed changelog, see the roadmap:
|
||||||
http://codingteam.net/project/poezio/roadmap
|
http://dev.louiz.org/project/poezio/roadmap
|
||||||
|
|
||||||
* Poezio 0.7 - dev
|
* Poezio 0.7 - dev
|
||||||
Codename ”Koshie & Mathieui”
|
Codename ”Koshie & Mathieui”
|
||||||
- Library changed from xmpppy to SleekXMPP
|
- Library changed from xmpppy to SleekXMPP
|
||||||
|
- Python 3 only
|
||||||
- Introduce the roster
|
- Introduce the roster
|
||||||
- One to one conversations
|
- One to one conversations
|
||||||
- Roster search
|
- Roster search
|
||||||
- Add/remove/accept/deny contact in the roster
|
- Add/remove/accept/deny contact in the roster
|
||||||
- Resizable mini-buffer displaying various informations
|
- Resizable mini-buffer displaying various informations
|
||||||
- All colors can be changed with a theme file
|
- All colors can be changed with a theme file
|
||||||
|
- Command auto-completion
|
||||||
- /say and // commands
|
- /say and // commands
|
||||||
|
- /recolor command, changing the nick's colors in a MUC
|
||||||
|
- /list command lets the user browse the MUCs on a server
|
||||||
- Warn user about publicly logged rooms
|
- Warn user about publicly logged rooms
|
||||||
- Possibility to limit the number of history messages received from MUC
|
- Possibility to limit the number of history messages received from MUC
|
||||||
- auto-rejoin when kicked from a MUC
|
- auto-rejoin when kicked from a MUC
|
||||||
|
@ -19,6 +23,7 @@ Codename ”Koshie & Mathieui”
|
||||||
- Possibility to use a modified nickname automatically when a nick is reserved
|
- Possibility to use a modified nickname automatically when a nick is reserved
|
||||||
- A line separates the alread-read messages from the new messages
|
- A line separates the alread-read messages from the new messages
|
||||||
- Information messages are more colored
|
- Information messages are more colored
|
||||||
|
- Man page added
|
||||||
- bugfixes
|
- bugfixes
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# A dark theme file.
|
# A dark theme file.
|
||||||
# For more informations, see http://codingteam.net/project/poezio/doc/TheThemes
|
# For more informations, see http://dev.louiz.org/project/poezio/doc/TheThemes
|
||||||
|
|
||||||
# Message text color
|
# Message text color
|
||||||
COLOR_NORMAL_TEXT = 0
|
COLOR_NORMAL_TEXT = 0
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# A theme file. (the Default one)
|
# A theme file. (the Default one)
|
||||||
# For more informations, see http://codingteam.net/project/poezio/doc/TheThemes
|
# For more informations, see http://dev.louiz.org/project/poezio/doc/TheThemes
|
||||||
|
|
||||||
# Message text color
|
# Message text color
|
||||||
COLOR_NORMAL_TEXT = 0
|
COLOR_NORMAL_TEXT = 0
|
||||||
|
|
|
@ -170,7 +170,7 @@ class Core(object):
|
||||||
make a bug report.
|
make a bug report.
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
tb_tab = tabs.SimpleTextTab(self, "/!\ Oups, an error occured (this may not be fatal). /!\\\nPlease report this bug (by copying the present error message and explaining what you were doing) on the page http://codingteam.net/project/poezio/bugs/add\n\n%s\n\nIf Poezio does not respond anymore, kill it with Ctrl+\\, and sorry about that :(" % ''.join(traceback.format_exception(typ, value, trace)))
|
tb_tab = tabs.SimpleTextTab(self, "/!\ Oups, an error occured (this may not be fatal). /!\\\nPlease report this bug (by copying the present error message and explaining what you were doing) on the page http://dev.louiz.org/project/poezio/bugs/add\n\n%s\n\nIf Poezio does not respond anymore, kill it with Ctrl+\\, and sorry about that :(" % ''.join(traceback.format_exception(typ, value, trace)))
|
||||||
self.add_tab(tb_tab, focus=True)
|
self.add_tab(tb_tab, focus=True)
|
||||||
except Exception: # If an exception is raised in this code,
|
except Exception: # If an exception is raised in this code,
|
||||||
# this is fatal, so we exit cleanly and display the traceback
|
# this is fatal, so we exit cleanly and display the traceback
|
||||||
|
|
Loading…
Reference in a new issue