├── .gitignore ├── Anatomy-Of-A-Log.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── html └── console.html ├── images ├── br-ps-console.jpg └── br-ps-icon.jpg ├── jsx ├── Console.jsx └── Helpers.jsx ├── lib ├── AdobeVersions.json ├── DomainManager.js ├── FileModule.js ├── FileSystemModule.js └── OsascriptModule.js ├── main.js ├── package.json ├── styles ├── icons │ └── br-ps.svg └── styles.css └── tmp ├── log.txt └── tmp.txt /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Anatomy-Of-A-Log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/Anatomy-Of-A-Log.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/README.md -------------------------------------------------------------------------------- /html/console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/html/console.html -------------------------------------------------------------------------------- /images/br-ps-console.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/images/br-ps-console.jpg -------------------------------------------------------------------------------- /images/br-ps-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/images/br-ps-icon.jpg -------------------------------------------------------------------------------- /jsx/Console.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/jsx/Console.jsx -------------------------------------------------------------------------------- /jsx/Helpers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/jsx/Helpers.jsx -------------------------------------------------------------------------------- /lib/AdobeVersions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/lib/AdobeVersions.json -------------------------------------------------------------------------------- /lib/DomainManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/lib/DomainManager.js -------------------------------------------------------------------------------- /lib/FileModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/lib/FileModule.js -------------------------------------------------------------------------------- /lib/FileSystemModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/lib/FileSystemModule.js -------------------------------------------------------------------------------- /lib/OsascriptModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/lib/OsascriptModule.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/package.json -------------------------------------------------------------------------------- /styles/icons/br-ps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/styles/icons/br-ps.svg -------------------------------------------------------------------------------- /styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavierAroche/brackets-to-photoshop/HEAD/styles/styles.css -------------------------------------------------------------------------------- /tmp/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/tmp.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------