Skip to content
Snippets Groups Projects
Commit 234670c3 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

up mobile

parent b00952a2
Branches dev_mm_pf
No related tags found
No related merge requests found
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.geuz.onelab" package="org.geuz.onelab"
android:versionName="2.0.0" android:versionName="2.0.0"
android:versionCode="36" android:versionCode="37"
android:installLocation="auto" > android:installLocation="auto" >
<uses-sdk android:minSdkVersion="14" <uses-sdk android:minSdkVersion="14"
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>2.0.0.0</string> <string>2.0.0.3</string>
<key>LSRequiresIPhoneOS</key> <key>LSRequiresIPhoneOS</key>
<true/> <true/>
<key>UIFileSharingEnabled</key> <key>UIFileSharingEnabled</key>
......
...@@ -5,24 +5,26 @@ if [ $# -lt 1 ]; then ...@@ -5,24 +5,26 @@ if [ $# -lt 1 ]; then
exit 1; exit 1;
fi fi
name=demos_boolean
files=$* files=$*
rm -rf Archive rm -rf ${name}
mkdir Archive mkdir ${name}
cp *.step Archive/ cp *.step ${name}/
cat <<EOT >> Archive/infos.xml cat <<EOT >> ${name}/infos.xml
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<models> <models>
EOT EOT
for file in $files ; do for file in $files ; do
cp $file Archive/ cp $file ${name}/
echo "<model>" >> Archive/infos.xml echo "<model>" >> ${name}/infos.xml
echo "<title>$file</title>" >> Archive/infos.xml echo "<title>$file</title>" >> ${name}/infos.xml
echo "<summary>$file</summary>" >> Archive/infos.xml echo "<summary>$file</summary>" >> ${name}/infos.xml
echo "<file type=\"geo\">$file</file>" >> Archive/infos.xml echo "<file type=\"geo\">$file</file>" >> ${name}/infos.xml
echo "</model>" >> Archive/infos.xml echo "</model>" >> ${name}/infos.xml
cat <<EOT > Archive/${file%.geo}.pro cat <<EOT > ${name}/${file%.geo}.pro
DefineConstant[ DefineConstant[
R_ = {"", Name "GetDP/1ResolutionChoices", Visible 0}, R_ = {"", Name "GetDP/1ResolutionChoices", Visible 0},
C_ = {"", Name "GetDP/9ComputeCommand", Visible 0}, C_ = {"", Name "GetDP/9ComputeCommand", Visible 0},
...@@ -31,8 +33,8 @@ DefineConstant[ ...@@ -31,8 +33,8 @@ DefineConstant[
EOT EOT
done done
cat <<EOT >> Archive/infos.xml cat <<EOT >> ${name}/infos.xml
</models> </models>
EOT EOT
zip -r Archive.zip Archive zip -r ${name}.zip ${name}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment