mirror of
https://github.com/samsonjs/mojo.el.git
synced 2026-04-27 15:07:42 +00:00
[CHANGED] cosmetic changes.
This commit is contained in:
parent
d7d2f68339
commit
70659cd306
4 changed files with 24 additions and 22 deletions
39
CHANGELOG
39
CHANGELOG
|
|
@ -4,15 +4,16 @@ CHANGELOG
|
||||||
sjs 2009-11-24
|
sjs 2009-11-24
|
||||||
v 0.9.5 (bug fix)
|
v 0.9.5 (bug fix)
|
||||||
|
|
||||||
- Now that I have a real Palm Pre device I was able to test device support.
|
- Now that I have a real Palm Pre device I was able to test
|
||||||
Turns out I couldn't target the device because mojo-target-device was not
|
device support. Turns out I couldn't (easily) target the
|
||||||
interactive. Whoops.
|
device because mojo-target-device was not interactive.
|
||||||
|
Whoops.
|
||||||
|
|
||||||
sjs 2009-11-22
|
sjs 2009-11-22
|
||||||
v 0.9.4 launch emulator if needed
|
v 0.9.4 launch emulator if needed
|
||||||
|
|
||||||
- Commands that use the emulator launch it if necessary and wait till
|
- Commands that use the emulator launch it if necessary and wait
|
||||||
it is fully booted before running commands.
|
till it is fully booted before running commands.
|
||||||
|
|
||||||
sjs 2009-11-21
|
sjs 2009-11-21
|
||||||
v 0.9.3 (one more bug fix for today)
|
v 0.9.3 (one more bug fix for today)
|
||||||
|
|
@ -31,39 +32,39 @@ v 0.9.1
|
||||||
|
|
||||||
- Added mojo-package-install-and-launch.
|
- Added mojo-package-install-and-launch.
|
||||||
|
|
||||||
- New variable for specifying whether commands target the
|
- New variable for specifying whether commands target the device
|
||||||
device or emulator, *mojo-target*. Set it to 'usb' for a
|
or emulator, *mojo-target*. Set it to 'usb' for a real device
|
||||||
real device and 'tcp' for the emulator. Defaults to 'tcp'.
|
and 'tcp' for the emulator. Defaults to 'tcp'. To set the
|
||||||
To set the default target you can use the convenience
|
default target you can use the convenience functions
|
||||||
functions mojo-target-device and mojo-target-emulator.
|
mojo-target-device and mojo-target-emulator.
|
||||||
|
|
||||||
sjs 2009-11-20
|
sjs 2009-11-20
|
||||||
v 0.9
|
v 0.9
|
||||||
|
|
||||||
- Automatically find Mojo project root by searching upwards
|
- Automatically find Mojo project root by searching upwards for
|
||||||
for appinfo.json.
|
appinfo.json.
|
||||||
|
|
||||||
- Added command for generating new scenes,
|
- Added command for generating new scenes, mojo-generate-scene.
|
||||||
mojo-generate-scene.
|
|
||||||
|
|
||||||
- mojo-package now operates only on the current project.
|
- mojo-package now operates only on the current project.
|
||||||
|
|
||||||
- Parse appinfo.json to get version, used for installing &
|
- Parse appinfo.json to get version, used for installing &
|
||||||
launching with less interaction.
|
launching with less interaction.
|
||||||
|
|
||||||
- mojo-install, mojo-launch, mojo-inspect, and mojo-delete
|
- mojo-install, mojo-launch, mojo-inspect, and mojo-delete still
|
||||||
still read in arguments but have the current project/app as
|
read in arguments but have the current project/app as the
|
||||||
the default values.
|
default values.
|
||||||
|
|
||||||
- New convenience method: mojo-package-install-and-inspect
|
- New convenience method: mojo-package-install-and-inspect
|
||||||
|
|
||||||
This function only operates on the active app and does not
|
This function only operates on the active app and does not
|
||||||
read in any input.
|
read in any input.
|
||||||
|
|
||||||
- Remembered filenames and app ids are cleared when the Mojo
|
- Remembered filenames and app ids are cleared when the Mojo
|
||||||
project root changes. (DWIM)
|
project root changes. (DWIM)
|
||||||
|
|
||||||
- Parse output of `palm-install --list` for app id
|
- Parse output of `palm-install --list` for app id completion.
|
||||||
completion. App id completion was ported from cheat.el.
|
App id completion was ported from cheat.el.
|
||||||
|
|
||||||
v 0.2 - Fixed some minor bugs
|
v 0.2 - Fixed some minor bugs
|
||||||
v 0.1 - Initial release
|
v 0.1 - Initial release
|
||||||
|
|
|
||||||
4
mojo.el
4
mojo.el
|
|
@ -1,5 +1,5 @@
|
||||||
;;; ../mojo.el --- Interactive functions to aid the development of webOS apps
|
;;; mojo.el --- Interactive functions to aid the development of webOS apps
|
||||||
;; 2009-11-24 12:06:06
|
;; 2009-11-25 18:27:51
|
||||||
(defconst mojo-version "0.9.5")
|
(defconst mojo-version "0.9.5")
|
||||||
|
|
||||||
(require 'json)
|
(require 'json)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"title": "mojo.el",
|
"title": "mojo.el",
|
||||||
"filename": "../mojo.el",
|
"filename": "../mojo.el",
|
||||||
|
"basename": "mojo.el",
|
||||||
"version": "0.9.5",
|
"version": "0.9.5",
|
||||||
"template": "template.el"
|
"template": "template.el"
|
||||||
}
|
}
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
;;; #{app['filename']} --- Interactive functions to aid the development of webOS apps
|
;;; #{app['basename']} --- Interactive functions to aid the development of webOS apps
|
||||||
;; #{timestamp}
|
;; #{timestamp}
|
||||||
(defconst mojo-version "#{app['version']}")
|
(defconst mojo-version "#{app['version']}")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue