Skip to content

Commit

Permalink
Upgrade to Architect 3.0 build 1337
Browse files Browse the repository at this point in the history
  • Loading branch information
lojjic committed Nov 14, 2013
1 parent d3f24c4 commit 29535e1
Show file tree
Hide file tree
Showing 12 changed files with 1,276 additions and 35 deletions.
Binary file modified PlacesApp.xda
Binary file not shown.
7 changes: 6 additions & 1 deletion PlacesApp/.gitignore
Original file line number Original file line Diff line number Diff line change
@@ -1 +1,6 @@
.architect .architect
.sencha
touch
build
build.xml
.idea
14 changes: 10 additions & 4 deletions PlacesApp/PlacesApp.xds
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,11 @@
{ {
"name": "PlacesApp", "name": "PlacesApp",
"settings": { "settings": {
"cmd": {}, "cmd": {
"license": "commercial",
"cmdVersion": "4.0.1.45",
"frameworkVersion": "2.1.1.594"
},
"spacesToIndent": 4, "spacesToIndent": 4,
"lineEnding": "LF", "lineEnding": "LF",
"genTimestamps": false, "genTimestamps": false,
Expand All @@ -17,12 +21,14 @@
"width": 320 "width": 320
}, },
"viewportOrientation": "portrait" "viewportOrientation": "portrait"
} },
"sdkPath": "",
"generateArchitectVersion": true
}, },
"xdsVersion": "3.0.0", "xdsVersion": "3.0.0",
"xdsBuild": 0, "xdsBuild": 1337,
"schemaVersion": 1, "schemaVersion": 1,
"upgradeVersion": 300000000001, "upgradeVersion": 300000000003,
"framework": "touch21", "framework": "touch21",
"viewOrderMap": { "viewOrderMap": {
"view": [ "view": [
Expand Down
62 changes: 62 additions & 0 deletions PlacesApp/app.json
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"name": "PlacesApp",
"indexHtmlPath": "index.html",
"url": null,
"js": [
{
"path": "touch/sencha-touch.js",
"x-bootstrap": true
},
{
"path": "bootstrap.js",
"x-bootstrap": true
},
{
"path": "app.js",
"bundle": true,
"update": "delta"
}
],
"css": [
{
"path": "resources/css/app.css",
"update": "delta"
},
{
"path": "styles.css"
}
],
"appCache": {
"cache": [
"index.html"
],
"network": [
"*"
],
"fallback": []
},
"resources": [
"resources/images",
"resources/icons",
"resources/startup",
"getJson.php"
],
"ignore": [
".svn$"
],
"archivePath": "archive",
"requires": [],
"id": "8e64710f-114b-4666-b823-643e231ad0db",
"_architect": {
"_comment": "Please don't edit. This is Architect data.",
"name": "PlacesApp",
"css": [
{
"path": "styles.css"
}
],
"js": [],
"resources": [],
"requires": []
}
}
4 changes: 2 additions & 2 deletions PlacesApp/app/store/PlacesStore.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Ext.define('PlacesApp.store.PlacesStore', {
extend: 'Ext.data.Store', extend: 'Ext.data.Store',


requires: [ requires: [
'PlacesApp.model.PlacesModel',
'Ext.data.proxy.Ajax', 'Ext.data.proxy.Ajax',
'Ext.data.reader.Json', 'Ext.data.reader.Json'
'PlacesApp.model.PlacesModel'
], ],


config: { config: {
Expand Down
2 changes: 1 addition & 1 deletion PlacesApp/app/view/PlacesContainer.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Ext.define('PlacesApp.view.PlacesContainer', {
items: [ items: [
{ {
xtype: 'searchfield', xtype: 'searchfield',
label: 'Field' label: 'Search'
}, },
{ {
xtype: 'list', xtype: 'list',
Expand Down
Loading

0 comments on commit 29535e1

Please sign in to comment.