Skip to content

Commit

Permalink
Merge 364b7ac into 62148bc
Browse files Browse the repository at this point in the history
  • Loading branch information
peuter committed Jun 25, 2019
2 parents 62148bc + 364b7ac commit 22bdd2c
Show file tree
Hide file tree
Showing 103 changed files with 27,041 additions and 1,630 deletions.
12 changes: 12 additions & 0 deletions .gitmodules
Expand Up @@ -5,3 +5,15 @@
path = external/qooxdoo
url = https://github.com/CometVisu/qooxdoo.git
branch = cometvisu
[submodule "external/qx-osparc-theme"]
path = external/qx-osparc-theme
url = https://github.com/peuter/qx-osparc-theme.git
[submodule "external/qx-iconfont-material"]
path = external/qx-iconfont-material
url = https://github.com/peuter/qx-iconfont-material.git
[submodule "external/qx-contrib-dialog"]
path = external/qx-contrib-dialog
url = https://github.com/cboulanger/qx-contrib-Dialog.git
[submodule "external/qx-upload-manager"]
path = external/qx-upload-manager
url = https://github.com/johnspackman/UploadMgr.git
1 change: 1 addition & 0 deletions .jshintignore
@@ -0,0 +1 @@
source/rest
9 changes: 8 additions & 1 deletion .jshintrc
Expand Up @@ -16,6 +16,7 @@
"smarttabs": true,
"multistr": true,
"jasmine": true,
"worker": true,
"globals": {
"browser": false,
"describe": false,
Expand Down Expand Up @@ -47,6 +48,12 @@
"EVENT_RECORDER": true,
"DOMWindow": false,
"Favico": false,
"Sentry": true
"Sentry": true,
"osparc": true,
"monaco": true,
"CRC32": true,
"xmllint": true,
"dialog": true,
"com": true
}
}
55 changes: 51 additions & 4 deletions config.json
Expand Up @@ -36,7 +36,8 @@
"validate-config",
"validate-manifest",
"watch",
"profile"
"profile",
"make-font-map"
],

"default-job" : "source-hybrid",
Expand Down Expand Up @@ -100,7 +101,8 @@
"svg4everybody",
"EVENT_RECORDER",
"Favico",
"Sentry"
"Sentry",
"Promise"
]
},

Expand Down Expand Up @@ -172,7 +174,23 @@
{
"library" :
[
{ "manifest" : "client/Manifest.json" }
{ "manifest" : "client/Manifest.json" },
{
"manifest" : "external/qx-iconfont-material/Manifest.json",
"uri" : "../external/qx-iconfont-material"
},
{
"manifest" : "external/qx-osparc-theme/Manifest.json",
"uri" : "../external/qx-osparc-theme"
},
{
"manifest" : "external/qx-contrib-dialog/Manifest.json",
"uri" : "../external/qx-contrib-dialog"
},
{
"manifest" : "external/qx-upload-manager/Manifest.json",
"uri" : "../external/qx-upload-manager"
}
]
},

Expand All @@ -198,6 +216,7 @@
{
// "verifier-bombs-on-error" : false,
// "separate-loader" : true,
"i18n-as-parts": true,
"parts" :
{
"boot" :
Expand All @@ -213,6 +232,10 @@
"include": [ "${APPLICATION}.ui.structure.pure.*" ]
},

"manager": {
"include": [ "${APPLICATION}.ui.manager.Main" ]
},

"plugin-diagram" :
{
"include" : [ "${APPLICATION}.plugins.diagram.*" ]
Expand Down Expand Up @@ -283,7 +306,7 @@
},
"plugin-openhab" :
{
"include" : [ "${APPLICATION}.plugins.openhab.*", "${QXTHEME}" ]
"include" : [ "${APPLICATION}.plugins.openhab.*" ]
}
}
}
Expand Down Expand Up @@ -520,6 +543,30 @@
{
"qx.aspects" : true
}
},

"make-font-map" :
{
"desc" : "Build a font mapping from glyphname to unicode id",

"let" :
{
"RESPATH" : "./external/qx-iconfont-material/source/resource",
"QXRESPATH" : "${QOOXDOO_PATH}/framework/source/resource"
},

"font-map" :
{
"fonts" :
{
"${RESPATH}/iconfont/material/MaterialIcons-Regular.ttf" :
{
"prefix": [ "${RESPATH}" ],
"alias" : "MaterialIcons",
"size" : 32
}
}
}
}
}
}
1 change: 1 addition & 0 deletions external/qx-contrib-dialog
Submodule qx-contrib-dialog added at d9f9c4
1 change: 1 addition & 0 deletions external/qx-iconfont-material
Submodule qx-iconfont-material added at de2cd9
1 change: 1 addition & 0 deletions external/qx-osparc-theme
Submodule qx-osparc-theme added at 8154f0
1 change: 1 addition & 0 deletions external/qx-upload-manager
Submodule qx-upload-manager added at 66dfe2

0 comments on commit 22bdd2c

Please sign in to comment.