-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #207 from entrylabs/develop
version up
- Loading branch information
Showing
5 changed files
with
154 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,153 @@ | ||
<!DOCTYPE html> | ||
<html lang=""> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="stylesheet" href="../../renderer/resources/modal/app.css" /> | ||
<link | ||
rel="stylesheet" | ||
href="../../renderer/resources/vendor/codemirror/addon/hint/show-hint.css" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="../../renderer/resources/vendor/codemirror/addon/lint/lint.css" | ||
/> | ||
<link rel="stylesheet" href="../../../node_modules/entry-js/dist/entry.css" /> | ||
<link | ||
rel="stylesheet" | ||
href="../../../node_modules/literallycanvas-mobile/lib/css/literallycanvas.css" | ||
/> | ||
<link rel="stylesheet" href="../../../node_modules/entry-tool/dist/entry-tool.css" /> | ||
<link rel="stylesheet" href="../../renderer_build/bundle.css" /> | ||
</head> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<link rel='stylesheet' href='../../renderer/resources/modal/app.css'/> | ||
<link rel='stylesheet' href='../../renderer/resources/vendor/codemirror/addon/hint/show-hint.css'/> | ||
<link rel='stylesheet' href='../../renderer/resources/vendor/codemirror/addon/lint/lint.css'/> | ||
<link rel='stylesheet' href='../../../node_modules/entry-js/dist/entry.css'/> | ||
<link rel='stylesheet' href='../../../node_modules/literallycanvas-mobile/lib/css/literallycanvas.css'/> | ||
<link rel='stylesheet' href='../../../node_modules/entry-tool/dist/entry-tool.css'/> | ||
<link rel="stylesheet" href='../../renderer_build/bundle.css'/> | ||
</head> | ||
<body> | ||
<div id="__next"></div> | ||
|
||
<body> | ||
<div id='__next'></div> | ||
<script type="text/javascript" src="../../../node_modules/lodash/lodash.min.js"></script> | ||
<script | ||
type="text/javascript" | ||
src="../../../node_modules/jquery/dist/jquery.min.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../../node_modules/entry-tool/dist/entry-tool.js" | ||
></script> | ||
<script src="../../renderer_build/init.bundle.js"></script> | ||
|
||
<script type="text/javascript" src='../../../node_modules/lodash/lodash.min.js'></script> | ||
<script type="text/javascript" src='../../../node_modules/jquery/dist/jquery.min.js'></script> | ||
<script type="text/javascript" src='../../../node_modules/entry-tool/dist/entry-tool.js'></script> | ||
<script src='../../renderer_build/init.bundle.js'></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/jquery-ui.min.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/socket.io.min.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/preloadjs-0.6.0.min.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/easeljs-0.8.0.min.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/soundjs-0.6.0.combined.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/flashaudioplugin-0.6.0.combined.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/velocity.min.js" | ||
></script> | ||
|
||
<script type='text/javascript' src='../../renderer/resources/vendor/jquery-ui.min.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/socket.io.min.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/preloadjs-0.6.0.min.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/easeljs-0.8.0.min.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/soundjs-0.6.0.combined.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/flashaudioplugin-0.6.0.combined.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/velocity.min.js'></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/codemirror/lib/codemirror.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/codemirror/addon/hint/show-hint.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/codemirror/addon/hint/javascript-hint.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/codemirror/addon/lint/lint.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/codemirror/addon/lint/javascript-lint.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/codemirror/addon/selection/active-line.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/codemirror/mode/javascript/javascript.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/codemirror/mode/python/python.js" | ||
></script> | ||
<script type="text/javascript" src="../../renderer/resources/vendor/fuzzy.js"></script> | ||
|
||
<script type='text/javascript' src='../../renderer/resources/vendor/codemirror/lib/codemirror.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/codemirror/addon/hint/show-hint.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/codemirror/addon/hint/javascript-hint.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/codemirror/addon/lint/lint.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/codemirror/addon/lint/javascript-lint.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/codemirror/addon/selection/active-line.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/codemirror/mode/javascript/javascript.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/codemirror/mode/python/python.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/vendor/fuzzy.js'></script> | ||
<script | ||
type="text/javascript" | ||
src="../../../node_modules/entry-js/extern/blockly/blockly_compressed.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../../node_modules/entry-js/extern/util/bignumber.min.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../../node_modules/entry-js/extern/util/CanvasInput.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../../node_modules/entry-js/extern/util/handle.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../../node_modules/entry-js/extern/util/filbert.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../../node_modules/entry-js/extern/util/ndgmr.Collision.js" | ||
></script> | ||
|
||
<script type='text/javascript' src='../../../node_modules/entry-js/extern/blockly/blockly_compressed.js'></script> | ||
<script type='text/javascript' src='../../../node_modules/entry-js/extern/util/bignumber.min.js'></script> | ||
<script type='text/javascript' src='../../../node_modules/entry-js/extern/util/CanvasInput.js'></script> | ||
<script type='text/javascript' src='../../../node_modules/entry-js/extern/util/handle.js'></script> | ||
<script type='text/javascript' src='../../../node_modules/entry-js/extern/util/filbert.js'></script> | ||
<script type='text/javascript' src='../../../node_modules/entry-js/extern/util/ndgmr.Collision.js'></script> | ||
|
||
<script type='text/javascript' src='../../../node_modules/literallycanvas-mobile/lib/js/literallycanvas.js'></script> | ||
<script type='text/javascript' src="../../renderer/resources/vendor/react18/react.production.min.js"></script> | ||
<script type='text/javascript' src="../../renderer/resources/vendor/react18/react-dom.production.min.js"></script> | ||
<script type="text/javascript" src="../../renderer/resources/vendor/sound-editor.js"></script> | ||
<script type='text/javascript' src='../../../node_modules/entry-js/dist/entry.js'></script> | ||
<script type='text/javascript' src='../../renderer/resources/paint/static/js/entry-paint.js'></script> | ||
|
||
<script src='../../renderer_build/render.bundle.js'></script> | ||
</body> | ||
<script | ||
type="text/javascript" | ||
src="../../../node_modules/literallycanvas-mobile/lib/js/literallycanvas.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/react18/react.production.min.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/react18/react-dom.production.min.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/vendor/sound-editor.js" | ||
></script> | ||
<script | ||
type="text/javascript" | ||
src="../../../node_modules/@entrylabs/legacy-video/dist/index.js" | ||
></script> | ||
<script type="text/javascript" src="../../../node_modules/entry-js/dist/entry.js"></script> | ||
<script | ||
type="text/javascript" | ||
src="../../renderer/resources/paint/static/js/entry-paint.js" | ||
></script> | ||
|
||
<script src="../../renderer_build/render.bundle.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters