summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2008-02-26 12:35:48 +0100
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:31:06 +0100
commitcc8532df0a706a167cfd423bc13a69b7be9ffef9 (patch)
treeab1ab999c209b3c5c705a965130f5410844c8bea
parentcafc3175ce0d72a3f78160194d293be85f7c1d56 (diff)
downloadlive-boot-cc8532df0a706a167cfd423bc13a69b7be9ffef9.tar.gz
live-boot-cc8532df0a706a167cfd423bc13a69b7be9ffef9.zip
Merging casper 1.117.
-rw-r--r--docs/ChangeLog.casper9
-rwxr-xr-xscripts/live-bottom/30accessibility4
2 files changed, 11 insertions, 2 deletions
diff --git a/docs/ChangeLog.casper b/docs/ChangeLog.casper
index b440737..ea43f07 100644
--- a/docs/ChangeLog.casper
+++ b/docs/ChangeLog.casper
@@ -1,3 +1,12 @@
+casper (1.117) hardy; urgency=low
+
+ * Disable speech for magnifier and braille profiles again. Thanks
+ Luke Yelavich.
+ * esd is enabled by default, so the comment in 30accessibility is no
+ longer relevant.
+
+ -- Evan Dandrea <evand@ubuntu.com> Wed, 13 Feb 2008 01:20:22 -0500
+
casper (1.116) hardy; urgency=low
* Fix setting orca options in 30accessibility.
diff --git a/scripts/live-bottom/30accessibility b/scripts/live-bottom/30accessibility
index 314496d..eaf3a50 100755
--- a/scripts/live-bottom/30accessibility
+++ b/scripts/live-bottom/30accessibility
@@ -67,7 +67,7 @@ case ${ACCESS} in
if type orca > /dev/null 2>&1
then
mkdir -p /root/home/${USERNAME}/.orca
- echo "orca.settings.enableSpeech = True" >> /root/home/${USERNAME}/.orca/orca-customizations.py
+ echo "orca.settings.enableSpeech = False" >> /root/home/${USERNAME}/.orca/orca-customizations.py
echo "orca.settings.enableMagnifier = True" >> /root/home/${USERNAME}/.orca/orca-customizations.py
fi
;;
@@ -90,7 +90,7 @@ case ${ACCESS} in
if type orca > /dev/null 2>&1
then
mkdir -p /root/home/${USERNAME}/.orca
- echo "orca.settings.enableSpeech = True" >> /root/home/${USERNAME}/.orca/orca-customizations.py
+ echo "orca.settings.enableSpeech = False" >> /root/home/${USERNAME}/.orca/orca-customizations.py
echo "orca.settings.enableBraille = True" >> /root/home/${USERNAME}/.orca/orca-customizations.py
fi
;;