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

[vidalia-svn] r2398: Rename the 'AUTHORS' file to the more accurate 'CREDITS', an (in vidalia/trunk: . pkg pkg/osx pkg/win32)



Author: edmanm
Date: 2008-03-12 20:33:30 -0400 (Wed, 12 Mar 2008)
New Revision: 2398

Added:
   vidalia/trunk/CREDITS
Removed:
   vidalia/trunk/AUTHORS
Modified:
   vidalia/trunk/
   vidalia/trunk/pkg/osx/buildmpkg.sh.in
   vidalia/trunk/pkg/package.sh
   vidalia/trunk/pkg/win32/vidalia-bundle.nsi.in
   vidalia/trunk/pkg/win32/vidalia.nsi.in
Log:
 r191@lysithea:  edmanm | 2008-03-12 20:33:24 -0400
 Rename the 'AUTHORS' file to the more accurate 'CREDITS', and bring it
 up to date.



Property changes on: vidalia/trunk
___________________________________________________________________
 svk:merge ticket from /local/vidalia/trunk [r191] on 90112fd6-a33b-4cea-8d39-48ff1d78625c

Deleted: vidalia/trunk/AUTHORS

Added: vidalia/trunk/CREDITS
===================================================================
--- vidalia/trunk/CREDITS	                        (rev 0)
+++ vidalia/trunk/CREDITS	2008-03-13 00:33:30 UTC (rev 2398)
@@ -0,0 +1,80 @@
+Vidalia is currently developed by:
+  Matt Edman <edmanm@xxxxxxxxxxxxxxxxxxx>
+
+
+Contributors: 
+  Ren Bucholz <http://homes.eff.org/~renbucholz/tor/> created some of the
+  onion images off of which Corinna's icons and some of our own images are
+  based. 
+  
+  Dan Christensen <http://opello.org/> added additional image formats to 
+  the .ico files to support more Windowses. He also created the graph style
+  icons in the bandwidth graph settings.
+
+  Geoff Goodell <http://afs.eecs.harvard.edu/~goodell/> supplied us with
+  nearly all of the flag icons that we use in the Appearance configuration
+  page and network map. He also created the router status icons we use in 
+  the network map.
+
+  Corinna Habets <corinna@xxxxxxxxx> created the images off which
+  our application icons are based.
+  
+  Matt Hanson <http://www.zuerchertech.com/> tweaked Corinna's images a bit
+  and created some .icos based off of them. 
+ 
+  Justin Hipple <hipplej@xxxxxxxxxxxxxxxxxxx> co-founded the Vidalia project
+  and helped with lots of the initial development.
+
+  Andrew Lewman wrote the original Mac OS X bundle installer off which
+  Vidalia's is based, and also added Torbutton to the bundle.
+
+  This product includes GeoLite data created by MaxMind, available from
+  http://maxmind.com/
+
+  Steven J. Murdoch <http://www.cl.cam.ac.uk/users/sjm217/> wrote the code
+  to launch a web browser when Tor has built a circuit and close Vidalia when
+  the browser has exited.
+
+  Brandon Nase <http://www.students.dsu.edu/naseb/> designed and built 
+  the Vidalia-Project website.
+
+  Christoph Sieghart (sigi) <http://www.0x2a.at/blog/> gave us some code that
+  converts world space coordinates (latitude,longitude) into image space
+  coordinates (x,y) which we used in the Net Viewer.
+
+  The Tango Desktop Project <http://tango-project.org> created many of the
+  icons used in Vidalia. See LICENSE for details.
+
+  Michael Zuercher and Adam Tomjack of Zuerchertech LLC
+  <http://www.zuerchertech.com> gave us the ZImageView class which handles
+  drawing, scrolling and zooming the map image in the Network Viewer.
+
+  
+Translators:
+  Albanian    Frederik Nosi
+  Arabic      Ahmad Gharbeia
+  Bulgarian   kutia0001
+  Czech       el Mar <http://airdump.net>
+  Dutch       Ater Atrocitas
+  Farsi       persepolis
+              Hossein
+  Finnish     DJ Hasis
+  French      Michel Burkhardt
+              eight118
+  German      Christoph Sieghart
+              Steffen Dabbert
+  Hebrew      Anonymous
+  Hungarian   Tibor Fekete
+  Italian     Alex Mazzariol
+  Norwegian   xiando
+              Micromus
+  Polish      ZeeWolf
+  Portuguese  Mabat Haram
+  Russian     ygrek
+  Spanish     desolator
+  Simplified Chinese    Wu Xiaoguang
+                        LinHongJun
+  Swedish     Amin Amini
+              DJHasis
+  Traditional Chinese   LinHongJun
+


Property changes on: vidalia/trunk/CREDITS
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native

Modified: vidalia/trunk/pkg/osx/buildmpkg.sh.in
===================================================================
--- vidalia/trunk/pkg/osx/buildmpkg.sh.in	2008-03-11 16:33:37 UTC (rev 2397)
+++ vidalia/trunk/pkg/osx/buildmpkg.sh.in	2008-03-13 00:33:30 UTC (rev 2398)
@@ -129,7 +129,7 @@
 mkdir -p $BUILD_DIR/vidalia_packageroot/Applications/Vidalia.app
 mkdir -p $BUILD_DIR/vidalia_packageroot/Library/Vidalia
 cp -R $VID_DIR/src/vidalia/Vidalia.app $BUILD_DIR/vidalia_packageroot/Applications/
-cp $VID_DIR/AUTHORS $VID_DIR/CHANGELOG $VID_DIR/README $BUILD_DIR/vidalia_packageroot/Library/Vidalia
+cp $VID_DIR/CREDITS $VID_DIR/CHANGELOG $VID_DIR/README $BUILD_DIR/vidalia_packageroot/Library/Vidalia
 
 find $BUILD_DIR/vidalia_packageroot \( -type d -or -perm +111 \) -print0 | sudo xargs -0 chmod 775
 find $BUILD_DIR/vidalia_packageroot -type f \! \( -perm +111 \) -print0 | sudo xargs -0 chmod 664

Modified: vidalia/trunk/pkg/package.sh
===================================================================
--- vidalia/trunk/pkg/package.sh	2008-03-11 16:33:37 UTC (rev 2397)
+++ vidalia/trunk/pkg/package.sh	2008-03-13 00:33:30 UTC (rev 2398)
@@ -50,7 +50,7 @@
 "osx")
   cp -R ../src/vidalia/Vidalia.app ../
   srcdir="../"
-  srcfiles="Vidalia.app README AUTHORS CHANGELOG"
+  srcfiles="Vidalia.app README CREDITS CHANGELOG"
   srcfiles="$srcfiles LICENSE LICENSE-GPLV2 LICENSE-GPLV3 LICENSE-OPENSSL"
   osx/builddmg.sh "$srcdir" "$srcfiles"
   ;;

Modified: vidalia/trunk/pkg/win32/vidalia-bundle.nsi.in
===================================================================
--- vidalia/trunk/pkg/win32/vidalia-bundle.nsi.in	2008-03-11 16:33:37 UTC (rev 2397)
+++ vidalia/trunk/pkg/win32/vidalia-bundle.nsi.in	2008-03-13 00:33:30 UTC (rev 2398)
@@ -164,7 +164,7 @@
       File "Vidalia\${VIDALIA_APPVERSION}\LICENSE-GPLV2"
       File "Vidalia\${VIDALIA_APPVERSION}\LICENSE-GPLV3"
       File "Vidalia\${VIDALIA_APPVERSION}\LICENSE-OPENSSL"
-      File "Vidalia\${VIDALIA_APPVERSION}\AUTHORS"
+      File "Vidalia\${VIDALIA_APPVERSION}\CREDITS"
       
       ; Include a prebuilt GeoIP cache
       SetShellVarContext current

Modified: vidalia/trunk/pkg/win32/vidalia.nsi.in
===================================================================
--- vidalia/trunk/pkg/win32/vidalia.nsi.in	2008-03-11 16:33:37 UTC (rev 2397)
+++ vidalia/trunk/pkg/win32/vidalia.nsi.in	2008-03-13 00:33:30 UTC (rev 2398)
@@ -140,7 +140,7 @@
   File "..\..\bin\QtGui4.dll"
   File "..\..\bin\QtNetwork4.dll"
   File "..\..\bin\QtXml4.dll"
-  File "@Vidalia_SOURCE_DIR@\AUTHORS"
+  File "@Vidalia_SOURCE_DIR@\CREDITS"
   File "@Vidalia_SOURCE_DIR@\CHANGELOG"
   File "@Vidalia_SOURCE_DIR@\LICENSE"
   File "@Vidalia_SOURCE_DIR@\LICENSE-GPLV2"