Skip to content

Commit

Permalink
Add load_error.html for Windows. It's not hooked up yet.
Browse files Browse the repository at this point in the history
  • Loading branch information
gruehle committed Jun 20, 2012
1 parent 426b138 commit 675aae1
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/win/cefclient/cefclient.rc
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ IDS_MODALDIALOG BINARY "res\\modaldialog.html"
IDS_EXTENSIONPERF BINARY "res\\extensionperf.html"
IDS_TRANSPARENCY BINARY "res\\transparency.html"
IDS_BRACKETS_EXTENSIONS BINARY "res\\brackets_extensions.js"
IDS_BRACKETS_LOAD_ERROR BINARY "res\\load_error.html"

/////////////////////////////////////////////////////////////////////////////
//
Expand Down
35 changes: 35 additions & 0 deletions src/win/cefclient/res/load_error.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">

<html>
<head>
<style>
body {
font-family: helvetica, sans-serif;
}
li {
margin-top: 5px;
}
.small {
font-size: small;
}
</style>
</head>
<body>
<h2>Oops! I can't find the brackets index.html file</h2>
<p>The "brackets" folder that contains the HTML/CSS/JS source code for Brackets might be missing. Here are some tips for troubleshooting:</p>
<ul>
<li>If you downloaded Brackets from GitHub, you might have clicked the "Download as ZIP" button, which doesn't work. Instead, go to https://github.com/adobe/brackets/downloads and choose the newest ZIP file link under "Download Packages".</li>
<li>If you cloned the brackets-app repo from GitHub, make sure your submodules are updated by running <br/><code>git submodule update --init --recursive</code> inside the brackets-app folder.</li>
<li>Don't move the Brackets.exe file out of the bin/win directory. (We'll make a real installer eventually.)</li>
<li>If all else fails, contact us at:
<ul>
<li>Twitter: @brackets</li>
<li>IRC: #brackets on freenode</li>
<li>Developer mailing list: http://groups.google.com/group/brackets-dev</li>
</ul>
</li>
</ul>
<p class="small">Sorry about the inconvenience. We're still really early in development and haven't had time to build an installer.</p>
</body>
</html>

0 comments on commit 675aae1

Please sign in to comment.