tiapp.xml
author Mahlon E. Smith <mahlon@martini.nu>
Mon, 23 Sep 2013 09:10:55 -0700
changeset 1 b3419d05eabb
parent 0 80c32ef237c6
permissions -rw-r--r--
Checkpoint. * Got fonts working cross platform by only using SVG. This will change with the new webkit engine when Tide 1.4 is released. * Use the Tide API accessors for cross-window data. * Make the ThingFish server object an observable, so models and their URI bases can be changed easily. * Add options for saving window state and position. * Contextual menu updates/tests for later.

<?xml version='1.0' encoding='UTF-8'?>
<!-- tidebuilder.py -d ~/Desktop/ -n . -->
<ti:app xmlns:ti='http://ti.appcelerator.org'>
	<id>nu.martini.dascyllus</id>
	<name>Dascyllus</name>
	<version>0.0.1</version>
	<publisher>Mahlon E. Smith</publisher>
	<url>http//projects.martini.nu/dascyllus/</url>
	<icon>img/icon.png</icon>
	<copyright>2013 Mahlon E. Smith</copyright>
	<analytics>false</analytics>

	<window>
		<id>main</id>
		<title>Dascyllus</title>
		<url>app://window/main.html</url>
		<width>800</width>
		<min-width>600</min-width>
		<height>450</height>
		<min-height>450</min-height>
		<fullscreen>false</fullscreen>
		<resizable>true</resizable>
		<chrome scrollbars="true">true</chrome>
		<maximizable>true</maximizable>
		<minimizable>true</minimizable>
		<closeable>true</closeable>
	</window>

	<window>
		<id>splash</id>
		<title>Dascyllus</title>
		<url>app://window/splash.html</url>
		<width>800</width>
		<height>450</height>
		<fullscreen>false</fullscreen>
		<resizable>false</resizable>
		<chrome scrollbars="false">false</chrome>
		<maximizable>false</maximizable>
		<minimizable>false</minimizable>
		<closeable>false</closeable>
	</window>

	<window>
		<id>about</id>
		<title>Dascyllus</title>
		<url>app://window/about.html</url>
		<width>600</width>
		<height>432</height>
		<fullscreen>false</fullscreen>
		<resizable>false</resizable>
		<chrome scrollbars="false">false</chrome>
		<maximizable>false</maximizable>
		<minimizable>false</minimizable>
		<closeable>false</closeable>
		<transparent-background>true</transparent-background>
	</window>

	<window>
		<id>prefs</id>
		<title>Preferences</title>
		<url-regex>app://window/prefs\...*</url-regex>
		<width>500</width>
		<height>500</height>
		<fullscreen>false</fullscreen>
		<resizable>false</resizable>
		<chrome scrollbars="true">true</chrome>
		<maximizable>false</maximizable>
		<minimizable>false</minimizable>
		<closeable>true</closeable>
	</window>
</ti:app>