[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r2063: Start a changelog for 0.0.15. (trunk)



Author: edmanm
Date: 2007-10-22 18:25:39 -0400 (Mon, 22 Oct 2007)
New Revision: 2063

Modified:
   trunk/
   trunk/CHANGELOG
Log:
 r2184@lysithea:  edmanm | 2007-10-22 18:25:34 -0400
 Start a changelog for 0.0.15.



Property changes on: trunk
___________________________________________________________________
 svk:merge ticket from /local/vidalia/trunk [r2184] on dc66be73-d13e-47ba-a267-8dc7cda68c65

Modified: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	2007-10-22 11:05:16 UTC (rev 2062)
+++ trunk/CHANGELOG	2007-10-22 22:25:39 UTC (rev 2063)
@@ -1,3 +1,74 @@
+0.0.15  xx-Oct-2007
+  o Add a new 'Network' settings page to the config dialog that lets users
+    configure an HTTP/HTTPS proxy, specify allowed ports if they are behind a
+    restrictive firewall or proxy, and set up bridges and tunneled dir conns.
+  o Add a 'Help Censored Users Connect to the Tor Network' option to the
+    'Server' settings page to help users set up their Tor as a brigde relay.
+    This option is only available for those running Tor 0.2.0.3-alpha or
+    newer.
+  o Restructure the code that manages GETCONFing values from Tor and then
+    later SETCONFing any changed values to make it easier to add more pages
+    like the 'Network' and 'Server' settings pages in the future.
+  o If we prompt the user to enter a control password and they enter one,
+    don't keep trying to use our randomly generated password.
+  o Stop leaking memory for pretty much every circuit we plotted on the network
+    map. Found by Roger Dingledine and his Valgrind.
+  o Stop leaking memory if TorMapWidget::addRouter() is called for a router
+    that is already on the map. Also found by Roger Dingledine and his
+    Valgrind.
+  o Stop leaking memory used by QTranslator and the configuration dialog on
+    exit.
+  o Default to using an ORPort of 443 when setting up a server on Windows.
+    9001 is still the default everywhere else.
+  o Fix a crash bug that could occur when Vidalia gets disconnected from Tor
+    while waiting for a response to a previous command. Bug reported by Roger
+    Dingledine. (Ticket #295)
+  o Create a single TorProcess object used to start and stop Tor, instead of
+    creating a new one each time and cleaning up after Tor exits. (Ticket
+    #294)
+  o Do the control connection asynchronously so we aren't trying to call
+    waitForConnected() in the control socket thread before it has an event loop
+    running.
+  o Don't start Tor or test for a running Tor with an open control port until
+    the main event loop is running.
+  o Older Tors write their state file even if all we're doing is
+    --hash-password. So if the user has configured a non-default data
+    directory, include that in the list of command line arguments when we run
+    Tor to hash the user's control password.
+  o Support changing Tor's control port and authentication settings without
+    having to restart Tor for the settings to take effect.
+  o Recognize the REMAP stream status in STREAM events.
+  o Allow the control panel window to expand horizontally to fit longer
+    translated text labels.
+  o Make VClickLabel right-to-left aware so the control panel buttons look
+    correct when using the Farsi translation.
+  o Fix our configure.in to produce a Makefile instead of an Xcode project on
+    OS X. This only affected users who got Qt 4.3 from Trolltech's .dmg
+    installers.
+  o Fix our configure.in to tell QMake the fully-expanded path to which our
+    man page should be installed.
+  o Fix our configure.in so we can use it to build under Cygwin or MinGW with
+    Qt >= 4.3.0.
+  o Move to a consistent use of the word "Relay" instead of "Server" or
+    "Router" in the interface.
+  o Convert the path separators in a configured data directory to whatever the
+    platform standard is.
+  o Remove the custom palette used in all Vidalia's windows that had been
+    around since 0.0.1.
+  o Attempt to standardize the GUI fonts to whatever the user's platform
+    thinks is best.
+  o Default to using Qt's Windows Vista style on Windows Vista. On other
+    Windowses or any non-Mac platform, default to the Cleanlooks style if
+    we're building with Qt >= 4.3.
+  o Add some information to the help browser about the new network settings
+    and bridge relay configuration, as well as the new authentication
+    settings in 0.0.14.
+  o Disable enable-edit-actions, enable-remote-toggle, and
+    enable-remote-http-toggle in the bundled Privoxy configuration. Suggested
+    by Greg Fleischer.
+  o Updated Finnish, French, German, Norwegian, Polish, and Russian
+    translations.
+
 0.0.14  26-Aug-2007
   o Add support for Tor's HashedControlPassword and CookieAuthentication
     options. Password authentication is enabled by default.