├── .gitignore ├── BracketsPortable.exe ├── App └── AppInfo │ ├── appicon.ico │ ├── appicon1.ico │ ├── appicon2.ico │ ├── appicon1_16.png │ ├── appicon1_32.png │ ├── appicon2_16.png │ ├── appicon2_32.png │ ├── appicon_16.png │ ├── appicon_32.png │ ├── Launcher │ └── BracketsPortable.ini │ └── appinfo.ini ├── Other └── vcruntime140.dll ├── LICENSE ├── README.md └── help.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | App/Brackets/* 3 | Data/* 4 | -------------------------------------------------------------------------------- /BracketsPortable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/brackets-portable/master/BracketsPortable.exe -------------------------------------------------------------------------------- /App/AppInfo/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/brackets-portable/master/App/AppInfo/appicon.ico -------------------------------------------------------------------------------- /Other/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/brackets-portable/master/Other/vcruntime140.dll -------------------------------------------------------------------------------- /App/AppInfo/appicon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/brackets-portable/master/App/AppInfo/appicon1.ico -------------------------------------------------------------------------------- /App/AppInfo/appicon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/brackets-portable/master/App/AppInfo/appicon2.ico -------------------------------------------------------------------------------- /App/AppInfo/appicon1_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/brackets-portable/master/App/AppInfo/appicon1_16.png -------------------------------------------------------------------------------- /App/AppInfo/appicon1_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/brackets-portable/master/App/AppInfo/appicon1_32.png -------------------------------------------------------------------------------- /App/AppInfo/appicon2_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/brackets-portable/master/App/AppInfo/appicon2_16.png -------------------------------------------------------------------------------- /App/AppInfo/appicon2_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/brackets-portable/master/App/AppInfo/appicon2_32.png -------------------------------------------------------------------------------- /App/AppInfo/appicon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/brackets-portable/master/App/AppInfo/appicon_16.png -------------------------------------------------------------------------------- /App/AppInfo/appicon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagiegurari/brackets-portable/master/App/AppInfo/appicon_32.png -------------------------------------------------------------------------------- /App/AppInfo/Launcher/BracketsPortable.ini: -------------------------------------------------------------------------------- 1 | [Launch] 2 | ProgramExecutable=Brackets\Brackets.exe 3 | SinglePortableAppInstance=true 4 | SingleAppInstance=true 5 | WaitForProgram=true 6 | DirectoryMoveOK=yes 7 | SupportsUNC=yes 8 | 9 | [Environment] 10 | APPDATA=%PAL:DataDir%\home\AppData\Roaming 11 | USERPROFILE=%PAL:DataDir%\home 12 | 13 | [FilesMove] 14 | ../help.html=%PAL:DataDir%\home\AppData\Roaming 15 | 16 | [Activate] 17 | Registry=true 18 | 19 | [RegistryKeys] 20 | BracketsPortable=HKCU\Software\Brackets 21 | 22 | [RegistryCleanupForce] 23 | 1=HKCU\Software\Brackets 24 | -------------------------------------------------------------------------------- /App/AppInfo/appinfo.ini: -------------------------------------------------------------------------------- 1 | [Format] 2 | Type=PortableApps.comFormat 3 | Version=3.0 4 | 5 | [Details] 6 | Name=Brackets Portable 7 | AppID=BracketsPortable 8 | Publisher=brackets.io & Sagie Gur-Ari 9 | Homepage=http://brackets.io/ 10 | Category=Development 11 | Description=Brackets is an open source code editor for web designers and front-end developers. 12 | Language=English 13 | Trademarks=brackets.io 14 | InstallType= 15 | 16 | [License] 17 | Shareable=true 18 | OpenSource=true 19 | Freeware=true 20 | CommercialUse=true 21 | EULAVersion=1 22 | 23 | [Version] 24 | PackageVersion=1.13.0.2 25 | DisplayVersion=Release 1.13 26 | 27 | [Control] 28 | Icons=1 29 | Start=BracketsPortable.exe 30 | Start1=BracketsPortable.exe 31 | Name1=Brackets Portable 32 | 33 | [Associations] 34 | FileTypes=js 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # brackets portable 2 | 3 | [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/sagiegurari/brackets-portable/blob/master/LICENSE) [![Downloads](https://img.shields.io/github/downloads/sagiegurari/brackets-portable/total.svg)](https://github.com/sagiegurari/brackets-portable/releases/latest) 4 | 5 | > Windows portable version of adobe brackets web development editor. 6 | 7 | ## Overview 8 | 9 | [Brackets](http://brackets.io/) is an open source code editor for web designers and front-end developers. 10 | 11 | With brackets portable you can now 'install' it on a USB and have it with you at all times. 12 | 13 | This portable launcher (with brackets embedded) will not leave any file/registry leftovers in your PC and will store all information in the portable folder. 14 | 15 | All custom extensions you install will also be stored in the portable folder and will carried with you in your USB. 16 | 17 | You can also replace the brackets installation inside this portable version with any version you like. 18 | 19 | The portable launcher uses the [portableapps.com](http://portableapps.com/) installer which also allows you to better integrate with your [portableapps.com](http://portableapps.com/) installation (this is of course optional). 20 | 21 | ## Download 22 | 23 | In order to download please look at the releases tab at: https://github.com/sagiegurari/brackets-portable/releases/latest and download the exe file. 24 | 25 | ## License 26 | 27 | Developed by Sagie Gur-Ari and licensed under the MIT open source license. 28 | 29 | ## Building From Source 30 | 31 | In order to build from source there are few steps to be taken: 32 | * Build BracketsPortable.exe - This one actually needs to be handled only once, even if upgrading the brackets.io installation
To generate the exe files, you must use the portableapps.com launcher generator and point it to the main directory (git root).
The generator uses the files in the AppInfo directory to generate the exe files.
You can later on modify the launcher ini files without any need of regenerating the exe files. 33 | * Build BracketsPortable_Release_[version]_English.paf.exe - This step needs to be taken for any change (including upgrade of the brackets.io installation) 34 | * Update the brackets.io files in the Brackets folder 35 | * Copy vcruntime140.dll from the 'other' folder to the brackets folder 36 | * Update the version in the appinfo.ini 37 | * Use the portableapps.com installer to generate the new installer 38 | -------------------------------------------------------------------------------- /help.html: -------------------------------------------------------------------------------- 1 | 2 | Brackets Portable Help 3 | 4 | 149 | 150 | 151 | 152 |
153 |

Brackets Portable Help

154 |

Code the Web

155 |

Brackets is an open source code editor for web designers and front-end developers.

156 | 157 |

Go to the portable brackets launcher Homepage >>

158 |

Go to the brackets Homepage >>

159 | 160 |
161 | 162 | 163 | --------------------------------------------------------------------------------