From 91a48e19060d94267c183ee2c1a271dbfe2945f6 Mon Sep 17 00:00:00 2001 From: Renato Pereira Date: Sun, 14 Aug 2016 12:15:09 -0300 Subject: [PATCH 1/3] Ignoring files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 7ae56c23..a5eefc5d 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,4 @@ src/vendor cache teste.py +ignore-* From 20c2202c7ca9616dbbd5146f87f3f8df3d3567f5 Mon Sep 17 00:00:00 2001 From: Renato de Pontes Pereira Date: Sun, 21 Oct 2018 10:58:34 -0300 Subject: [PATCH 2/3] Update README.md --- README.md | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 44b24924..b3f3bfd4 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,6 @@ **Behavior3 Editor** is the official visual editor for the **Behavior3** libraries. It can be accessed online or you can download it to have handle local projects. -- Info: http://behavior3.com -- Editor: http://editor.behavior3.com - ## Why Behavior3 Editor? @@ -46,13 +43,6 @@ Nothing is perfect =( . Behavior3 Editor focus on Chrome (thus, working pretty w ## Looking for Behavior Tree Libraries? -See http://behavior3.com for a complete list of libraries. - -*If you have implemented an library compatible with Behavior3 schematics, tell me and I link it there*. - - -## Want to Contribute? - -Take a look at the issue list, suggest new features, report bugs, send me pull requests, write documentation and tutorials. There are many ways to contribute, do what you know and you can make Behavior3 Editor better! +- https://github.com/behavior3/behavior3js +- https://github.com/behavior3/behavior3py -- More info: http://behavior3.com/donation \ No newline at end of file From 3772691eb0022af58c0671b69f438a684dcd75b0 Mon Sep 17 00:00:00 2001 From: taozw Date: Fri, 23 Nov 2018 14:54:45 +0800 Subject: [PATCH 3/3] fixbug stay in preload page in Desktop --- src/app/app.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/app.js b/src/app/app.js index d00742dc..8fc64e0e 100644 --- a/src/app/app.js +++ b/src/app/app.js @@ -53,7 +53,10 @@ angular.module('app', [ .openProject(projects[0].path) .then(function() { closePreload(); - }); + }, function() { + //if rename or delete the exist project file may cause stay in Preload page(Desktop) + closePreload(); + }); } else { closePreload(); }