From cc6ff35a6ffb39b07cef6726214a0c1b9b16566b Mon Sep 17 00:00:00 2001 From: Bert Freudenberg Date: Thu, 14 Oct 2010 07:20:42 +0000 Subject: 4.1.2390 bugfix release --- diff --git a/ChangeLog b/ChangeLog index 9a186d5..3950540 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,48 @@ +=== 2390repo1347-bf.cs === +Change Set: repo1347-bf +Date: 13 October 2010 +Author: Bert Freudenberg + +Update packages to repository version 1347 (update-bf.16). + +Changes from v1345 of 13 October 2010 to v1347 of 13 October 2010: +-------------------- +Multilingual-kks.16 +Initialize language environment on startup to pickup appropriate interpreters for UTF-8 charset locales. +-------------------- +ReleaseBuilder-bf.9 +Generate POT files only after setting the new version + + +=== 2389repo1345-bf.cs === +Change Set: repo1345-bf +Date: 13 October 2010 +Author: Bert Freudenberg + +Update packages to repository version 1345 (update-bf.15). + +Changes from v1339 of 25 September 2010 to v1345 of 13 October 2010: +-------------------- +System-bf.43 +Default to soundReverb off (SQ-853) + +System-bf.44 +Do not translate the systemInformationString included in error logs, only the one in the UI. +-------------------- +Etoys-bf.50 +Only keep actual sounds as property (SQ-845) +-------------------- +Multilingual-kks.15 +added multilingual Unicode environments (SQ-850) +-------------------- +Sound-bf.9 +Fix soundReverb preference not being honored when loading project (SQ-852) +-------------------- +TrueType-bf.7 +Make TTFontDescription>>size compatible with TTFontDescription>>at:. This fixes the error when switching to Vietnamese (as reported by Serge Stinckwich) + + === 2388repo1339-bf.cs === Change Set: repo1339-bf Date: 25 September 2010 diff --git a/Content.revision b/Content.revision index 30ce115..fc2f3d0 100644 --- a/Content.revision +++ b/Content.revision @@ -1 +1 @@ -559 +659 diff --git a/etoys.in b/etoys.in index b593975..ef59ec9 100644 --- a/etoys.in +++ b/etoys.in @@ -85,14 +85,29 @@ export DBUS_FATAL_WARNINGS=0 # make Compose input methods work [ -z "$LC_ALL" ] && export LC_ALL="$LANG" -# if pulseaudio is running, fall back to OSS +# if pulseaudio is running, use it if VM has the driver, or fall back to OSS if pulseaudio --check 2>/dev/null ; then - VMOPTIONS="$VMOPTIONS -vm-sound-oss" - if padsp true 2>/dev/null ; then - WRAPPER=padsp + if "$VM" -help 2> /dev/null | grep -q vm-sound-pulse ; then + VMOPTIONS="$VMOPTIONS -vm-sound-pulse" + else + VMOPTIONS="$VMOPTIONS -vm-sound-oss" + if padsp true 2>/dev/null ; then + WRAPPER=padsp + fi fi fi +# enable compositioninput +case "$LANG" in + bn* | gu* | hi* | kn* | ml* | mr* | ta* | te* | sa* ) + case "$LANG" in + *.[uU][tT][fF]-8 | *.[uU][tT][fF]8) + VMOPTIONS="$VMOPTIONS -compositioninput" + ;; + esac + ;; +esac + # VM, Image, and Document are non-optional # Document has to be present even if empty for IMOPTIONS to work $DEBUG $WRAPPER "$VM" $VMOPTIONS "$IMAGE" "$DOCUMENT" $IMOPTIONS diff --git a/etoys.spec b/etoys.spec index dc6842f..c3b5ff4 100644 --- a/etoys.spec +++ b/etoys.spec @@ -1,5 +1,5 @@ %define name etoys -%define version 4.1.2388 +%define version 4.1.2390 %define release 1 %define source %{name}-%{version} @@ -55,6 +55,16 @@ make install-etoys ROOT=%{buildroot} %changelog +* Wed Oct 13 2010 Bert Freudenberg +- 4.1.2390-1 +- Content v. 659: +- updated translations: de, ta, es, kn +- fix soundReverb (SQ-852, SQ-853) +- correct problem stopping sounds (SQ-845) +- use composition input for bn, gu, hi, kn, ml, mr, ta, te, sa (SQ-850) +- fix error when switching to Vietnamese +- use pulseaudio driver if available + * Sun Sep 19 2010 Bert Freudenberg - 4.1.2388-1 - Content v. 559: -- cgit v0.9.1