Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
poezio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Maxime Buquet
poezio
Commits
ea7d86ed
Verified
Commit
ea7d86ed
authored
Dec 17, 2014
by
mathieui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update CHANGELOG and versions
parent
596f2696
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
CHANGELOG
CHANGELOG
+4
-0
launch.sh
launch.sh
+1
-1
src/args.py
src/args.py
+2
-2
No files found.
CHANGELOG
View file @
ea7d86ed
...
...
@@ -8,7 +8,11 @@ http://dev.louiz.org/projects/poezio/roadmap
- Require python 3.4 for the input handling, event loop, xml parser, and ssl API
- Due to the slixmpp move, /reconnect now works (ecf22cb)
- Add a /closeall command with a plugin, to cleanup the open tabs (ed7fe69)
- Add a /set_default command which sets the value of an option back to its default (9caa992)
- The user’s JID is now shown in the roster (a0a00d5)
- Improve the XML tab with coloration, better filters, and filter chaining (1cd0b4d)
- Allow the use of client X.509 certificates for authentication (00396c1)
- Stream errors are now displayed, which is more helpful to the user than 'connection failed' (5cd854f)
- The (system-wide) launch script is now a setuptools entry point that checks dependencies (22f9b7a)
- XHTML-IM base64 embedded images are now extracted by default (a9f642f)
...
...
launch.sh
View file @
ea7d86ed
...
...
@@ -6,7 +6,7 @@ if [ -d "$poezio_dir/.git" ]
then
args
=
$(
git
--git-dir
=
"
$poezio_dir
/.git"
show
--format
=
'%h %ci'
|
head
-n1
)
else
args
=
"0.
8.3
-dev"
args
=
"0.
9
-dev"
fi
if
[
-e
"
$poezio_dir
/
$VENV
"
]
...
...
src/args.py
View file @
ea7d86ed
...
...
@@ -25,7 +25,7 @@ def parse_args(CONFIG_PATH=''):
metavar
=
"DEBUG_FILE"
)
parser
.
add_option
(
"-v"
,
"--version"
,
dest
=
"version"
,
help
=
SUPPRESS
,
metavar
=
"VERSION"
,
default
=
"0.
8.3
-dev"
)
default
=
"0.
9
-dev"
)
(
options
,
__
)
=
parser
.
parse_args
()
else
:
parser
=
ArgumentParser
()
...
...
@@ -38,6 +38,6 @@ def parse_args(CONFIG_PATH=''):
metavar
=
"DEBUG_FILE"
)
parser
.
add_argument
(
"-v"
,
"--version"
,
dest
=
"version"
,
help
=
SUPPRESS
,
metavar
=
"VERSION"
,
default
=
"0.
8.3
-dev"
)
default
=
"0.
9
-dev"
)
options
=
parser
.
parse_args
()
return
options
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment