├── .debug ├── .gitignore ├── CSXS └── manifest.xml ├── LICENSE ├── README.md ├── _builds ├── Scribe1.00.zxp ├── Scribe1.01.zxp └── test.md ├── assets ├── fonts │ ├── Swap-Font.svg │ ├── Swap-Font.ttf │ └── Swap-Font.woff ├── iconLight.png ├── iconLightRollover.png └── icons │ ├── artboard.svg │ ├── both.svg │ ├── doc.svg │ ├── fill.svg │ ├── layers.svg │ ├── selection.svg │ ├── stroke.svg │ ├── swapH.svg │ └── swapV.svg ├── client ├── index.html ├── libs │ ├── CSInterface.js │ ├── events.js │ ├── menus.js │ ├── preStyle.css │ ├── reference.js │ ├── reset.css │ └── v-outside-events.min.js ├── main.js └── style.css ├── host ├── ILST │ ├── host.jsx │ ├── host.ts │ └── tsconfig.json ├── PHXS │ ├── host.jsx │ ├── host.ts │ └── tsconfig.json └── universal │ ├── Console.jsx │ └── json2.jsx └── notes.md /.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/.debug -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /CSXS/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/CSXS/manifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/README.md -------------------------------------------------------------------------------- /_builds/Scribe1.00.zxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/_builds/Scribe1.00.zxp -------------------------------------------------------------------------------- /_builds/Scribe1.01.zxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/_builds/Scribe1.01.zxp -------------------------------------------------------------------------------- /_builds/test.md: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /assets/fonts/Swap-Font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/fonts/Swap-Font.svg -------------------------------------------------------------------------------- /assets/fonts/Swap-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/fonts/Swap-Font.ttf -------------------------------------------------------------------------------- /assets/fonts/Swap-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/fonts/Swap-Font.woff -------------------------------------------------------------------------------- /assets/iconLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/iconLight.png -------------------------------------------------------------------------------- /assets/iconLightRollover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/iconLightRollover.png -------------------------------------------------------------------------------- /assets/icons/artboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/icons/artboard.svg -------------------------------------------------------------------------------- /assets/icons/both.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/icons/both.svg -------------------------------------------------------------------------------- /assets/icons/doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/icons/doc.svg -------------------------------------------------------------------------------- /assets/icons/fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/icons/fill.svg -------------------------------------------------------------------------------- /assets/icons/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/icons/layers.svg -------------------------------------------------------------------------------- /assets/icons/selection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/icons/selection.svg -------------------------------------------------------------------------------- /assets/icons/stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/icons/stroke.svg -------------------------------------------------------------------------------- /assets/icons/swapH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/icons/swapH.svg -------------------------------------------------------------------------------- /assets/icons/swapV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/assets/icons/swapV.svg -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/client/index.html -------------------------------------------------------------------------------- /client/libs/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/client/libs/CSInterface.js -------------------------------------------------------------------------------- /client/libs/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/client/libs/events.js -------------------------------------------------------------------------------- /client/libs/menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/client/libs/menus.js -------------------------------------------------------------------------------- /client/libs/preStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/client/libs/preStyle.css -------------------------------------------------------------------------------- /client/libs/reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/client/libs/reference.js -------------------------------------------------------------------------------- /client/libs/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/client/libs/reset.css -------------------------------------------------------------------------------- /client/libs/v-outside-events.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/client/libs/v-outside-events.min.js -------------------------------------------------------------------------------- /client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/client/main.js -------------------------------------------------------------------------------- /client/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/client/style.css -------------------------------------------------------------------------------- /host/ILST/host.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/host/ILST/host.jsx -------------------------------------------------------------------------------- /host/ILST/host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/host/ILST/host.ts -------------------------------------------------------------------------------- /host/ILST/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/host/ILST/tsconfig.json -------------------------------------------------------------------------------- /host/PHXS/host.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/host/PHXS/host.jsx -------------------------------------------------------------------------------- /host/PHXS/host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/host/PHXS/host.ts -------------------------------------------------------------------------------- /host/PHXS/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/host/PHXS/tsconfig.json -------------------------------------------------------------------------------- /host/universal/Console.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/host/universal/Console.jsx -------------------------------------------------------------------------------- /host/universal/json2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inventsable/scribe/HEAD/host/universal/json2.jsx -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------