Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/makedocs.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

source common.sh
. ./common.sh

$mx2cc makedocs

2 changes: 1 addition & 1 deletion scripts/rebuildmods.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

source common.sh
. ./common.sh

echo ""
echo "***** Rebuilding modules *****"
Expand Down
2 changes: 1 addition & 1 deletion scripts/rebuildmx2cc.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

source common.sh
. ./common.sh

echo ""
echo "***** Rebuilding mx2cc *****"
Expand Down
5 changes: 4 additions & 1 deletion scripts/rebuildted2go.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

source common.sh
. ./common.sh

echo ""
echo "***** Rebuilding ted2go *****"
Expand Down Expand Up @@ -35,6 +35,9 @@ else

rm -r -f $ted2
cp -R ./ted2go.products/macos/ted2.app $ted2

cp ../src/ted2go/info.plist "$ted2/Contents"
cp ../src/launcher/Monkey2logo.icns "$ted2/Contents/Resources"

rm -r -f "$launcher"
cp -R ./launcher.products/macos/Launcher.app "$launcher"
Expand Down
2 changes: 1 addition & 1 deletion scripts/updatemods.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

source common.sh
. ./common.sh

echo ""
echo "***** Updating modules *****"
Expand Down
2 changes: 1 addition & 1 deletion scripts/updatemx2cc.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

source common.sh
. ./common.sh

echo ""
echo "***** Updating mx2cc *****"
Expand Down
5 changes: 4 additions & 1 deletion scripts/updateted2go-github.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

source common.sh
. ./common.sh

echo ""
echo "***** Updating ted2go *****"
Expand Down Expand Up @@ -35,6 +35,9 @@ else

rm -r -f $ted2
cp -R ./ted2go-github.products/macos/ted2.app $ted2

cp ../src/ted2go/info.plist "$ted2/Contents"
cp ../src/launcher/Monkey2logo.icns "$ted2/Contents/Resources"

rm -r -f "$launcher"
cp -R ./launcher.products/macos/Launcher.app "$launcher"
Expand Down
5 changes: 4 additions & 1 deletion scripts/updateted2go.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

source common.sh
. ./common.sh

echo ""
echo "***** Updating ted2go *****"
Expand Down Expand Up @@ -35,6 +35,9 @@ else

rm -r -f $ted2
cp -R ./ted2go.products/macos/ted2.app $ted2

cp ../src/ted2go/info.plist "$ted2/Contents"
cp ../src/launcher/Monkey2logo.icns "$ted2/Contents/Resources"

rm -r -f "$launcher"
cp -R ./launcher.products/macos/Launcher.app "$launcher"
Expand Down
12 changes: 12 additions & 0 deletions src/ted2go/info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleExecutable</key>
<string>ted2</string>
<key>CFBundleIconFile</key>
<string>Monkey2logo</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
</dict>
</plist>