docs: Atom Shell => Electron

This commit is contained in:
Cheng Zhao 2015-04-16 11:31:12 +08:00
parent d878bd33d7
commit d2682233fd
29 changed files with 132 additions and 130 deletions

View file

@ -13,8 +13,8 @@ If you don't have a Windows installation at the moment,
[modern.ie](https://www.modern.ie/en-us/virtualization-tools#downloads) has
timebombed versions of Windows that you can use to build Electron.
The building of atom-shell is done entirely with command-line scripts, so you
can use any editor you like to develop atom-shell, but it also means you can
The building of Electron is done entirely with command-line scripts, so you
can use any editor you like to develop Electron, but it also means you can
not use Visual Studio for the development. Support of building with Visual
Studio will come in the future.
@ -24,17 +24,17 @@ Studio will come in the future.
## Getting the code
```powershell
git clone https://github.com/atom/atom-shell.git
git clone https://github.com/atom/electron.git
```
## Bootstrapping
The bootstrap script will download all necessary build dependencies and create
build project files. Notice that we're using `ninja` to build atom-shell so
build project files. Notice that we're using `ninja` to build Electron so
there is no Visual Studio project generated.
```powershell
cd atom-shell
cd electron
python script\bootstrap.py -v
```
@ -56,7 +56,7 @@ After building is done, you can find `atom.exe` under `out\D`.
## 64bit support
Currently atom-shell can only be built for 32bit target on Windows, support for
Currently Electron can only be built for 32bit target on Windows, support for
64bit will come in future.
## Tests