Commit Graph

30 Commits

Author SHA1 Message Date
Peter Secor
01a9fd7d3d native client - update version and binaries to fix unicode handling 2008-06-04 12:03:02 -07:00
Peter Secor
bc0a453330 windows installer - changing version number for latest release 3.0.3 2008-06-02 15:18:16 -07:00
Peter Secor
472133ea18 windows installer - fix quoting on start/stop of Allmydata Manager and update version # 2008-05-19 12:47:31 -07:00
Peter Secor
808c5d6466 windows installer - added startup line for AllmydataManager, removal of the service at uninstall 2008-05-19 12:08:05 -07:00
Peter Secor
0636a85765 windows installer - trying to get the new Allmydata Manager service to start automatically 2008-05-16 18:57:31 -07:00
Peter Secor
494f197f7e windows installer - changed to update for Mikes recent changes to add AllmydataManager which uses a named pipe to avoid some permissions issues on Vista and fixes some netowkr problems 2008-05-16 18:12:57 -07:00
Peter Secor
c1b8122330 windows installer - removing uninstall tests, trying to get to a clean build that works as it's not clear that this latest build can update the virtual drive properly 2008-04-21 17:38:04 -07:00
Peter Secor
48d11c4bb7 windows installer - added -Q option to installer as well as to uninstaller, added back the SMB service stop 2008-04-21 16:41:43 -07:00
Peter Secor
0a78eac55f windows installer - added line to quit the system tray executable which automatically stops the SMB service, removed lnow redundant line to stop SMB service 2008-04-21 16:18:29 -07:00
Peter Secor
6cdc0e39af windows installer - added commands to stop the services if the user is installing over a running instance of Allmydata 2008-04-16 10:52:21 -07:00
Peter Secor
080b5fbc84 windows installer - changed display name to Allmydata 3.0 for presentation purposes 2008-04-09 10:01:51 -07:00
Peter Secor
48a847609a native installer - updated installer to have a better formatted string in the install screen and in the Add/Remove Programs screen 2008-04-08 17:22:39 -07:00
Peter Secor
3d9c4bcb2f native client - removed unused file (used to be for elevating privileges) and changed installer to start up the AllmydataTray executable directly 2008-03-28 12:25:08 -07:00
robk-tahoe
d0526ef2f9 resolve conflict in windows installer conf 2008-03-18 17:38:44 -07:00
robk-tahoe
00751fac29 windows installer: use an allmydata logo in setup wizard 2008-03-18 16:18:07 -07:00
Peter Secor
5e4a0c7212 windows installer - changed to reflect the new StartAllmydata.exe executable that is used to launch the various pieces of the native client. Also verified that the SMB service was stopped when uninstalling. 2008-03-18 10:44:43 -07:00
Zooko O'Whielacronx
ec3f140824 setup: use "-rNN" with NN the "revision number" instead of "-NN" with NN the "build number" in the Windows builds 2008-03-10 20:15:04 -07:00
Peter Secor
9722f0547e native client - changed Windows default group name as it conflicted with the previous version 2008-02-28 18:38:38 -07:00
Peter Secor
923c3e5fb5 installer and config - name changes 2008-02-26 19:34:39 -07:00
Peter Secor
06f6c15333 native client - renaming a few more instances to be consistent with Allmydata naming scheme for the release, maybe should parameterize this 2008-02-21 20:46:57 -07:00
Peter Secor
a3a4203c58 native client - updated system tray name, missed it at first 2008-02-21 20:38:11 -07:00
Peter Secor
d7a8130199 native client - updated to match naming for service and tray executable 2008-02-21 20:24:31 -07:00
Peter Secor
61edecd137 updating installer for beta release 2008-02-13 21:36:09 -07:00
robk-tahoe
4f4d355310 windows installer: remove uninstall tracking, add welcome page
in justin's testing, the uninstall tracking was hanging the uninstall 
process (on vista) for now, until we see enough need for it to warrant
more detailed testing/debugging/tweaks, I'm simply disabling the call
to confwiz --uninstall

also this adds a 'welcome page' to the install process. once the user
has installed the windows build, then the installer will open a web
browser to the 'welcome page' on the website ('/welcome_install')
2008-02-13 18:17:16 -07:00
robk-tahoe
b027fb5b9b windows: track uninstalls
the confwiz and the native_client backend both gained hooks to track 
uninstall events.  however that somehow didn't make it to the uninstaller :-)
2008-02-06 14:12:49 -07:00
robk-tahoe
f4cbd5ca34 windows: include latest windown build, winfuse and tray.exe 2008-02-04 18:12:50 -07:00
robk-tahoe
869cf44f68 fix windows build's packaging of web templates
the recent changes to webish's template lookup (to use nevow.util hence
pkg_resources) to support the mac build, needs these changes to the windows
build in match the new lookup path
2008-01-23 18:23:37 -07:00
robk-tahoe
6e8fe30859 add winfuse plugin to installer
this adds the latest build of mike's winfuse plugins, now also running as
a windows service (and using the node.url, private/root_dir.cap files from
the noderoot specified by the registry) into the install process.
2008-01-16 19:15:35 -07:00
robk-tahoe
146b290597 more minor build tweaks for windows
tweaking version number display, and fixing a couple of small bugs
2008-01-15 17:38:06 -07:00
robk-tahoe
3cb08209d2 windows installer build refinements
this resolves problems of py2exe's modulefinder collection of sources from
.zipped egg files, not by using easy_install to reach the --always-unzip
option, but rather with a small tool which unpacks any zipped egg files found
in misc/dependencies.  this fixes the py2exe build given rollback of the 
easy_install stuff which had broken the unix builds.  misc/hatch-eggs.py
performs the honours.

this also includes a misc/sub-ver.py tool which substitutes elements of the
verion number for the current code base (by importing allmydata.__version__
hence make-version should be run first, and the python path carefully managed)
into template files using python's string interpolation of named args from a
dict as the templating syntax.  i.e. %(major)d %(minor)d %(point)d %(nano)d
each expand to the individual components of the version number as codified
by the pyutil.version_class.Version class.  there is also a %(build)s tag
which expands to the string form of the whole version number.  This tool is
used to interpolate the automatically generated version information into the
innosetup source file in a form consistent with innosetup/windows' restrictions
2008-01-14 17:53:54 -07:00