[etoys-dev] [SVN][661] Mac 4.1.1 installer

commits at etoys.squeak.org commits at etoys.squeak.org
Thu Oct 14 23:13:06 EDT 2010


Repository: http://etoys.squeak.org/svn

Revision: 661
Author:   bf
Date:     2010-10-15 03:13:04 +0000 (Fri, 15 Oct 2010)
Log Message:
-----------
Mac 4.1.1 installer

Modified Paths:
--------------
    trunk/Etoys/NEWS
    trunk/installers/os-x/EtoysInstaller.pmdoc/01etoys.xml
    trunk/installers/os-x/EtoysInstaller.pmdoc/index.xml
    trunk/installers/os-x/assets/ReadMe.rtf
    trunk/installers/os-x/makeEtoysMac

-------------- next part --------------
Modified: trunk/Etoys/NEWS
===================================================================
--- trunk/Etoys/NEWS	2010-10-14 07:19:46 UTC (rev 660)
+++ trunk/Etoys/NEWS	2010-10-15 03:13:04 UTC (rev 661)
@@ -7,6 +7,7 @@
 * fix error when switching to Vietnamese
 * fix double click to launch project on windows
 * added README for Etoys-To-Go
+* on Linux, prefer PulseAudio driver over OSS
 
 4.1.2388 (27 Sep 2010)
 * final 4.1 release

Modified: trunk/installers/os-x/EtoysInstaller.pmdoc/01etoys.xml
===================================================================
--- trunk/installers/os-x/EtoysInstaller.pmdoc/01etoys.xml	2010-10-14 07:19:46 UTC (rev 660)
+++ trunk/installers/os-x/EtoysInstaller.pmdoc/01etoys.xml	2010-10-15 03:13:04 UTC (rev 661)
@@ -2,7 +2,7 @@
 <pkgref spec="1.12" uuid="F9C91BFF-EC24-4187-A051-7BC7C3E7C614">
 	<config>
 		<identifier>org.squeakland.Etoys41</identifier>
-		<version>4</version>
+		<version>5</version>
 		<description/>
 		<post-install type="none"/>
 		<requireAuthorization/>

Modified: trunk/installers/os-x/EtoysInstaller.pmdoc/index.xml
===================================================================
--- trunk/installers/os-x/EtoysInstaller.pmdoc/index.xml	2010-10-14 07:19:46 UTC (rev 660)
+++ trunk/installers/os-x/EtoysInstaller.pmdoc/index.xml	2010-10-15 03:13:04 UTC (rev 661)
@@ -1,8 +1,8 @@
 <?xml version="1.0"?>
 <pkmkdoc spec="1.12">
 	<properties>
-		<title>Etoys 4.1</title>
-		<build>/Users/bert/Downloads/Etoys 4.1.mpkg</build>
+		<title>Etoys 4.1.1</title>
+		<build>/Users/bert/Downloads/Etoys 4.1.1.mpkg</build>
 		<organization>org.squeakland</organization>
 		<userSees ui="both"/>
 		<min-target os="1"/>

Modified: trunk/installers/os-x/assets/ReadMe.rtf
===================================================================
(Binary files differ)

Modified: trunk/installers/os-x/makeEtoysMac
===================================================================
--- trunk/installers/os-x/makeEtoysMac	2010-10-14 07:19:46 UTC (rev 660)
+++ trunk/installers/os-x/makeEtoysMac	2010-10-15 03:13:04 UTC (rev 661)
@@ -28,20 +28,25 @@
  | sed 's/.*<string>//;s|</.*||'
 }
 
+get_name () {
+ awk '/CFBundleName/{V=1};/string/{if(V==1){print;exit}}' "$1/Contents/Info.plist" \
+ | sed 's/.*<string>//;s|</.*||'
+}
+
 VER=`get_version "$vm/os-x/app"`
 FIL=`echo $VER|sed 's/ /-/'`
-NUM=`echo $VER|sed 's/ .*//'`
+NAM=`get_name "$vm/os-x/app"`
 echo Version ${VER}
 
 MPKG="Etoys-${FIL}.mpkg"
 ZIP="Etoys-${FIL}-Mac.zip"
-APP="Etoys $NUM.app"
+APP="$NAM.app"
 
 BLD="BUILD"
 rm -rf "$BLD"
 mkdir "$BLD"
 
-echo "Building $APP"
+echo "Building \"$APP\""
 
 /bin/echo -n "Adding VM ... "
 svn export "$vm/os-x/app" "$BLD/$APP"


More information about the etoys-dev mailing list