Skip to content

Releases: vic/tintan

Titanium Studio integration, Build for TestFlight

17 Sep 23:18
Compare
Choose a tag to compare

Titanium Studio integration

Tintan will now precompile the JS from Coffee during its build hook triggered in Ti Studio. It will compile without sourcemaps when building for distribution. Studio then handles building and/or launching the app.

distribute:tf-android Build for TestFlight

This new task builds for distribution, but by default without using the Google Closure Compiler, leaving the JS unobfuscated. It then signs with the default Android debug keystore (rather than Ti's default tirocks keystore) to allow use of the TestFlight SDK. It leaves the .apk in project root which can be uploaded to TestFlight.

Now guesses at NODE_PATH

If NODE_PATH environment variable is not defined (a definite possibility on OSX), the bin/tintan 'binary' will look in the usual NODE_PATH places to find the tintan module.

Source Maps

16 Sep 03:13
Compare
Choose a tag to compare

Source Maps in Tintan

Tintan is now compiled with source maps and the source-map-support package.

  • source-map-support enables CLI/V8 .coffee stack traces with correct line/column information and source line text
  • source maps are readable by node-inspector to give coffee sources and traces in the debugger

Source Maps in Android Apps

Coffee/Iced compiler now optionally builds source maps that are readable by node inspector! The compiler embeds the maps as base64 into the compiled JS. Source Maps map to the local file source from the project folder.

To ease this process there are two task changes:

compile:coffee:force

force will touch -m all coffee sources and recompile them.

compile:coffee:watch

watch now compiles with the exact same process as coffee:compile. This enables the embedded/local source mapping even when watching.

iOS's JSCore and ti-inspector do not yet have this same support, but it's a definite possibility going forward.

Upgrade task

14 Sep 00:48
Compare
Choose a tag to compare

tintan upgrade

Tintan locks itself to the currently installed version, to prevent package upgrades from affecting the build system. Therefore, to upgrade tintan on a project, first update it from npm, then let tintan update itself:

$ npm update tintan
$ tintan upgrade

Tintan will then:

  • Update the Sublime Text build system integration in <project>.sublime-project
  • Update the Titanium Studio and CLI python compiler plugin plugin.py
  • Update the plugin version in tiapp.xml
  • Update the Tintan version in the project package.json
  • Add the repository to the project package.json if not yet defined
  • Update the npm modules for the project

Tintan will not:

  • Overwrite the existing package.json or <project>.sublime-project with a template
  • Overwrite a plugin.py that is newer than the one in its package
  • Overwrite the existing non-empty value of repository in package.json

This is to allow for customization. To get Tintan to recreate these files/values from template, delete them before tintan upgrade.

Config system, Sublime Text build system

11 Sep 19:14
Compare
Choose a tag to compare

Jake syntax had minor changes, dependency is now >=0.5.17 jakejs/jake@38698d6 . Also:

Sublime Text build system boot:sublime

  • Closed #5 • Add sublime-project build system to boot

Upgrade task upgrade

  • Closed #6 • Tintan plugin version number should be upgradeable

Config system! config

  • Closed #7 • Support building for debugger
  • Closed #8 • Add Iced CoffeeScript compiler option
  • Closed #9 • AVD name should be configurable...

For details on how to use new Config system, see README.