Skip to content

Commit

Permalink
renamed executable from "dyalogjs" to "ride"
Browse files Browse the repository at this point in the history
  • Loading branch information
ngn committed Feb 13, 2015
1 parent a054bae commit d6aece4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ As a desktop application
It is capable of containing both the proxy and the browser component in the same process, so communication between them can be short-circuited.
To package apps for the various platforms, run
./dist.sh
and find them under `./build/dyalogjs/`.
and find them under `./build/ride/`.

The desktop app can

Expand Down
2 changes: 1 addition & 1 deletion TODO
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ Not yet prioritised
About dialogue should be accessible somehow from Connect page
Context menu ("Copy", "Paste", etc) on right mouse click
On startup, make sure the window fits in the screen (to avoid trouble with multiple screens)
Change name of executable from "dyalogjs" to "ride"
Add meta-information to Windows executable: author, version, etc, accessible through Right click > Properties

Formatting / Rendering Issues
Expand Down Expand Up @@ -119,3 +118,4 @@ Done:
Connections box should be wide enough for "typical" entries; ideally resizable
About: "Copy" should always copy all the text
Pasting multiple lines in the session should be impossible (or pressing Enter should be emulated at every '\n')
Change name of executable from "dyalogjs" to "ride"
4 changes: 2 additions & 2 deletions dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ for platform in ${@:-win osx linux}; do desktop_app $platform; done

# workaround for https://github.com/mllrsohn/grunt-node-webkit-builder/issues/125
for bits in 32 64; do
d=build/dyalogjs/osx$bits/dyalogjs.app/Contents/Resources
d=build/ride/osx$bits/ride.app/Contents/Resources
if [ -d $d ]; then cp -uv style/DyalogUnicode.icns $d/nw.icns; fi
done

Expand All @@ -53,4 +53,4 @@ echo 'removing libffmpegsumo from build'
find build -name '*ffmpegsumo*' -delete

echo 'fixing file permissions'
chmod -R g+w build/dyalogjs
chmod -R g+w build/ride
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "dyalogjs",
"name": "ride",
"version": "14.1.0",
"main": "index.html",
"repository": ".",
Expand Down
2 changes: 1 addition & 1 deletion publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mountpoint /devt; echo good # make sure it's mounted
r=/devt/ride/jsride
d=`date +%Y-%m-%d--%H-%M` # append a letter to $d if such a directory already exists
for suffix in '' {a..z}; do if [ ! -e $r/$d$suffix ]; then d=$d$suffix; break; fi; done
echo "copying to $r/$d"; cp -r build/dyalogjs $r/$d
echo "copying to $r/$d"; cp -r build/ride $r/$d
echo 'updating "latest" symlink'; l=$r/latest; [ -L $l ]; rm $l; ln -s $d $l
echo 'cleaning up old releases'
for x in $(ls $r | grep -P '^\d{4}-\d{2}-\d{2}--\d{2}-\d{2}[a-z]?$' | sort | head -n-10); do
Expand Down
10 changes: 5 additions & 5 deletions vagrantbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ case `uname` in
Linux)
case `uname -m` in
x86_64)
RIDEBIN=linux64/dyalogjs
RIDEBIN=linux64/ride
;;
x86)
RIDEBIN=linux32/dyalogjs
RIDEBIN=linux32/ride
;;
esac
;;
Darwin)
RIDEBIN=osx64/dyalogjs.app/Contents/MacOS/node-webkit
RIDEBIN=osx64/ride.app/Contents/MacOS/node-webkit
;;
MINGW*)
RIDEBIN=win32/dyalogjs.exe
RIDEBIN=win32/ride.exe
;;
esac

echo Running RideJS for `uname`
./build/dyalogjs/${RIDEBIN}
./build/ride/${RIDEBIN}

0 comments on commit d6aece4

Please sign in to comment.