├── .gitignore ├── LICENSE ├── README.md ├── app ├── css │ ├── console.css │ ├── contextmenu.css │ ├── customComponentToolbar.css │ ├── dialog.css │ ├── mainmenu.css │ ├── popup.css │ ├── style.css │ ├── toolbar.css │ └── tutorial.css ├── fonts │ ├── Inconsolata-Regular.ttf │ ├── LobsterTwo-Regular.ttf │ ├── MaterialIcons-Regular.ttf │ ├── Monospace.ttf │ ├── Righteous-Regular.ttf │ ├── Ubuntu-Regular.ttf │ └── UbuntuMono-Regular.ttf ├── img │ ├── favicon.png │ └── tutorial │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png ├── index.html ├── js │ ├── audio.js │ ├── canvas.js │ ├── chat.js │ ├── clipboard.js │ ├── componentInfo.js │ ├── componentUpdates.js │ ├── components.js │ ├── console.js │ ├── console2.js │ ├── contextmenu.js │ ├── contextmenu2.js │ ├── customComponentToolbar.js │ ├── debug.js │ ├── dialogs.js │ ├── editDialogs.js │ ├── hover.js │ ├── keys.js │ ├── localStorage.js │ ├── localStorage2.js │ ├── mainmenu.js │ ├── notifications.js │ ├── savedCustomComponents.js │ ├── saves.js │ ├── socket.js │ ├── startup.js │ ├── stringifier.js │ ├── tips.js │ ├── toolbar.js │ ├── tutorial.js │ ├── undo.js │ ├── userList.js │ ├── variables.js │ └── waypoints.js └── main.js ├── boolr.desktop ├── data └── customcomponents.json ├── package.json └── saves └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | GNU General Public License v 3.0 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/README.md -------------------------------------------------------------------------------- /app/css/console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/css/console.css -------------------------------------------------------------------------------- /app/css/contextmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/css/contextmenu.css -------------------------------------------------------------------------------- /app/css/customComponentToolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/css/customComponentToolbar.css -------------------------------------------------------------------------------- /app/css/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/css/dialog.css -------------------------------------------------------------------------------- /app/css/mainmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/css/mainmenu.css -------------------------------------------------------------------------------- /app/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/css/popup.css -------------------------------------------------------------------------------- /app/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/css/style.css -------------------------------------------------------------------------------- /app/css/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/css/toolbar.css -------------------------------------------------------------------------------- /app/css/tutorial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/css/tutorial.css -------------------------------------------------------------------------------- /app/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /app/fonts/LobsterTwo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/fonts/LobsterTwo-Regular.ttf -------------------------------------------------------------------------------- /app/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /app/fonts/Monospace.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/fonts/Monospace.ttf -------------------------------------------------------------------------------- /app/fonts/Righteous-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/fonts/Righteous-Regular.ttf -------------------------------------------------------------------------------- /app/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /app/fonts/UbuntuMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/fonts/UbuntuMono-Regular.ttf -------------------------------------------------------------------------------- /app/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/img/favicon.png -------------------------------------------------------------------------------- /app/img/tutorial/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/img/tutorial/0.png -------------------------------------------------------------------------------- /app/img/tutorial/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/img/tutorial/1.png -------------------------------------------------------------------------------- /app/img/tutorial/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/img/tutorial/2.png -------------------------------------------------------------------------------- /app/img/tutorial/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/img/tutorial/3.png -------------------------------------------------------------------------------- /app/img/tutorial/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/img/tutorial/4.png -------------------------------------------------------------------------------- /app/img/tutorial/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/img/tutorial/5.png -------------------------------------------------------------------------------- /app/img/tutorial/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/img/tutorial/6.png -------------------------------------------------------------------------------- /app/img/tutorial/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/img/tutorial/7.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/index.html -------------------------------------------------------------------------------- /app/js/audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/audio.js -------------------------------------------------------------------------------- /app/js/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/canvas.js -------------------------------------------------------------------------------- /app/js/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/chat.js -------------------------------------------------------------------------------- /app/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/clipboard.js -------------------------------------------------------------------------------- /app/js/componentInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/componentInfo.js -------------------------------------------------------------------------------- /app/js/componentUpdates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/componentUpdates.js -------------------------------------------------------------------------------- /app/js/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/components.js -------------------------------------------------------------------------------- /app/js/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/console.js -------------------------------------------------------------------------------- /app/js/console2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/console2.js -------------------------------------------------------------------------------- /app/js/contextmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/contextmenu.js -------------------------------------------------------------------------------- /app/js/contextmenu2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/contextmenu2.js -------------------------------------------------------------------------------- /app/js/customComponentToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/customComponentToolbar.js -------------------------------------------------------------------------------- /app/js/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/debug.js -------------------------------------------------------------------------------- /app/js/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/dialogs.js -------------------------------------------------------------------------------- /app/js/editDialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/editDialogs.js -------------------------------------------------------------------------------- /app/js/hover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/hover.js -------------------------------------------------------------------------------- /app/js/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/keys.js -------------------------------------------------------------------------------- /app/js/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/localStorage.js -------------------------------------------------------------------------------- /app/js/localStorage2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/localStorage2.js -------------------------------------------------------------------------------- /app/js/mainmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/mainmenu.js -------------------------------------------------------------------------------- /app/js/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/notifications.js -------------------------------------------------------------------------------- /app/js/savedCustomComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/savedCustomComponents.js -------------------------------------------------------------------------------- /app/js/saves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/saves.js -------------------------------------------------------------------------------- /app/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/socket.js -------------------------------------------------------------------------------- /app/js/startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/startup.js -------------------------------------------------------------------------------- /app/js/stringifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/stringifier.js -------------------------------------------------------------------------------- /app/js/tips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/tips.js -------------------------------------------------------------------------------- /app/js/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/toolbar.js -------------------------------------------------------------------------------- /app/js/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/tutorial.js -------------------------------------------------------------------------------- /app/js/undo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/undo.js -------------------------------------------------------------------------------- /app/js/userList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/userList.js -------------------------------------------------------------------------------- /app/js/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/variables.js -------------------------------------------------------------------------------- /app/js/waypoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/js/waypoints.js -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/app/main.js -------------------------------------------------------------------------------- /boolr.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/boolr.desktop -------------------------------------------------------------------------------- /data/customcomponents.json: -------------------------------------------------------------------------------- 1 | [[],[]] -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GGBRW/BOOLR/HEAD/package.json -------------------------------------------------------------------------------- /saves/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------