diff --git a/README b/README index 38aa50c..d47f76f 100644 --- a/README +++ b/README @@ -76,7 +76,7 @@ not get compromised. a) Start at bootup Set NO_START in /etc/default/cryptobox-server to "0". The CryptoBox webserver will get started by its runlevel control script - after during booting. + after bootup. b) Define managed devices You may restrict which blockdevices should be accessible to the CryptoBox. diff --git a/README.ssl b/README.ssl index d5ac3cf..341560e 100644 --- a/README.ssl +++ b/README.ssl @@ -28,13 +28,13 @@ There are two ways for setting up a SSL connection: 2) CryptoBox behind stunnel - You may want to tunnenl the traffic between the cryptobox-server + You may want to tunnel the traffic between the cryptobox-server and your browser. "stunnel" is an excellent candidate for this job. If you do not have an ssl certificate yet, then you should create one first. On Debian: "apt-get install ssl-cert" and run the following - command (replace the ; a default CERT_CONF is shipped with the cryptobox-server - package): + command (replace the ; a default CERT_CONF is shipped with the + cryptobox-server package): make-ssl-cert diff --git a/changelog b/changelog index b7e0306..f57e3f5 100644 --- a/changelog +++ b/changelog @@ -1,5 +1,5 @@ Version 0.3 - 02/15/02007 - * completely new interface + * new interface * manage multiple disks * support custom partitioning * support plaintext partitions @@ -7,11 +7,7 @@ Version 0.3 - 02/15/02007 * allow to set time and date * change of encryption passphrase without data losses * support for pluggable features - * new kernel: 2.6.18 - * bugfix: add /dev/hdd to device scan - * support for usb, scsi and firewire cdrom drive - * seperated cryptobox-server package available - * french translation added (thanks to 'rike') + * seperated cryptobox-server package Version 0.2.1 - 10/22/02005 * fixed a critical bug in the initialisation process diff --git a/conf-examples/cryptobox.conf b/conf-examples/cryptobox.conf index 14b7855..778773b 100644 --- a/conf-examples/cryptobox.conf +++ b/conf-examples/cryptobox.conf @@ -12,8 +12,8 @@ UseConfigPartition = 0 DefaultVolumePrefix = "Disk " # which cipher should cryptsetup-luks use? -#TODO: uml does not support this module - DefaultCipher = aes-cbc-essiv:sha256 -DefaultCipher = aes-plain +# if you lack the appropriate kernel modules, then you could try "aes-plain" - but it is less secure +DefaultCipher = aes-cbc-essiv:sha256 # label of the configuration partition (you should never change this) ConfigVolumeLabel = cbox_config diff --git a/debian/README.Debian b/debian/README.Debian index 72b8ef0..93cec3d 100644 --- a/debian/README.Debian +++ b/debian/README.Debian @@ -9,8 +9,8 @@ Set 'NO_START' to "0" if the CryptoBox should start at every bootup. Set the port on which the cryptobox-server should listen. 2) Define [Main]->AllowedDevices according to the devices that you want to -publish via the cryptobox webinterface. Be careful this drives may be -overwritten by front-end users! +publish via the cryptobox webinterface. Be careful: the data on these drives +can be overwritten by front-end users! 3) Choose a list of plugins to disable in [Main]->DisabledPlugins. diff --git a/debian/changelog b/debian/changelog index 59c518f..f80b8e6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +cryptobox (0.3.0-1) unstable; urgency=low + + * first release of the CryptoBox as a seperate package + + -- Lars Kruse Fri, 15 Dec 2006 14:37:07 +0100 + +cryptobox (0.2.59-1) unstable; urgency=low + + * remove leading white lines to improve standard complicance of html + + -- Lars Kruse Thu, 14 Dec 2006 14:19:12 +0100 + cryptobox (0.2.58-1) unstable; urgency=low * fixed small layout bug diff --git a/src/cryptobox/__init__.py b/src/cryptobox/__init__.py index 54a6643..e3b7cf2 100644 --- a/src/cryptobox/__init__.py +++ b/src/cryptobox/__init__.py @@ -10,5 +10,5 @@ __all__ = ['core', 'web', 'plugins', 'tests'] __revision__ = "$Id$" -__version__ = "0.2.58" +__version__ = "0.3.0" diff --git a/templates/language.hdf b/templates/language.hdf index fc06db4..6635146 100644 --- a/templates/language.hdf +++ b/templates/language.hdf @@ -12,7 +12,7 @@ Text { EnterSamePassword = Repeat new password RedirectNote = Click here if your browser does not support automatic redirection. ProjectHomePage = Website of project - ProjectNote = The CryptoBox is a project by + ProjectNote = The CryptoBox is a project of ContainerName = Volume's name } diff --git a/www-data/screenshots/v0.3/activate_volume.png b/www-data/screenshots/v0.3/activate_volume.png new file mode 100644 index 0000000..d18fe90 Binary files /dev/null and b/www-data/screenshots/v0.3/activate_volume.png differ diff --git a/www-data/screenshots/v0.3/system_preferences.png b/www-data/screenshots/v0.3/system_preferences.png new file mode 100644 index 0000000..60fbbb9 Binary files /dev/null and b/www-data/screenshots/v0.3/system_preferences.png differ