1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-19 12:28:08 +01:00

Prepare files for the release of 1.7.1

This commit is contained in:
David Paleino
2012-02-02 20:15:03 +01:00
parent 6391ba3b3a
commit 493c073293
3 changed files with 1114 additions and 6 deletions

1085
CHANGES

File diff suppressed because it is too large Load Diff

27
NEWS
View File

@@ -1,7 +1,7 @@
Wicd 1.7 Series Wicd 1.7 Series
--------------- ---------------
1.7.1b2: 1.7.1:
Changes for Packagers: Changes for Packagers:
- You will now want to use the --python option to setup.py configure to - You will now want to use the --python option to setup.py configure to
make sure the right Python (python2.x) is used. With the Python 3 make sure the right Python (python2.x) is used. With the Python 3
@@ -10,6 +10,21 @@ Wicd 1.7 Series
python executable path can be set (for subprocesses launched by Wicd) python executable path can be set (for subprocesses launched by Wicd)
with the --python option to setup.py configure, and patching of the with the --python option to setup.py configure, and patching of the
shebang lines may be required if `which python` is not python2.x. shebang lines may be required if `which python` is not python2.x.
- If you handle translations in your packaging process, setup.py now
needs 'pybabel' and 'xgettext' binaries. Please provide them during
the build process.
- setup.py now accepts three more parameters: --dbus-service=, --systemd=
and --logrotate=. Please set them accordingly to the paths of your
distribution.
Major Changes:
- (New) upstream author: David Paleino :)
- The translations are now handled by Rosetta, in Launchpad.
- Implemented support for wired connections needing authentication with
wpa_supplicant (thanks Joe MacMahon!)
- Support 'Never show networks' (thanks Robin Becker!)
- Mask out sensitive information in the logfile (CVE-2012-0813)
Minor Changes: Minor Changes:
- Now uses gtkbuilder instead of libglade - Now uses gtkbuilder instead of libglade
- Fixed bug in script macro expansion - Fixed bug in script macro expansion
@@ -24,6 +39,16 @@ Wicd 1.7 Series
- Fixed resolv.conf permissions - Fixed resolv.conf permissions
- Ignore configparser errors - Ignore configparser errors
- Several others, please see CHANGES for more details - Several others, please see CHANGES for more details
- Proper localization of all the code has been put in place -- every part
of the UIs and the daemon should be translated/translatable now!
- Fixed various bugs with 'unicode in ESSID' handling
- Implemented rfkill-support
- Generalized libc linking using ctypes' find_library()
- Fixed wireless connecting status message, now shows the correct ESSID
- Support wifi-channels with more than 2 digits
- Implemented in-GUI password hiding
- Implemented -t/--tray to only run the wicd-gtk tray icon
- Support alternative ifconfig output style
1.7.0: 1.7.0:
Changes for Packagers: Changes for Packagers:

View File

@@ -27,7 +27,7 @@ from glob import glob
# Be sure to keep this updated! # Be sure to keep this updated!
# VERSIONNUMBER # VERSIONNUMBER
VERSION_NUM = '1.7.1~b3' VERSION_NUM = '1.7.1'
# REVISION_NUM is automatically updated # REVISION_NUM is automatically updated
REVISION_NUM = 'unknown' REVISION_NUM = 'unknown'
CURSES_REVNO = 'uimod' CURSES_REVNO = 'uimod'
@@ -640,9 +640,9 @@ to easily add encryption methods used. It ships with some common
encryption types, such as WPA and WEP. Wicd will automatically encryption types, such as WPA and WEP. Wicd will automatically
connect at startup to any preferred network within range. connect at startup to any preferred network within range.
""", """,
author = "Adam Blackburn, Dan O'Reilly, Andrew Psaltis", author = "Adam Blackburn, Dan O'Reilly, Andrew Psaltis, David Paleino",
author_email = "compwiz18@gmail.com, oreilldf@gmail.com, ampsaltis@gmail.com", author_email = "compwiz18@gmail.com, oreilldf@gmail.com, ampsaltis@gmail.com, d.paleino@gmail.com",
url = "http://wicd.net", url = "https://launchpad.net/wicd",
license = "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html", license = "http://www.gnu.org/licenses/old-licenses/gpl-2.0.html",
py_modules = py_modules, py_modules = py_modules,
data_files = data, data_files = data,