Rename src/resource to src/assets

- `dist/resources` was not included in linux packages.
- There were two "resources" directories.

Close #360
This commit is contained in:
Yuya Ochiai
2016-11-09 23:03:49 +09:00
parent 4267214a25
commit ee06c09237
26 changed files with 32 additions and 28 deletions

View File

@@ -78,18 +78,18 @@ Format the source codes to pass `npm test`.
```
Mattermost Desktop
├── docs/ - Documentations.
├── resources/ - Resources which are used outside of the application codes.
├── resources/ - Resources which are used outside of the application codes, and original images of assets.
├── scripts/ - Helper scripts.
├── src/ - Application source code.
│   ├── assets/ - Assets which are loaded from the application codes.
│   ├── browser/ - Implementation of Electron's renderer process.
│   │   ├── components/ - React.js components.
│   │   ├── css/ - Stylesheets.
│   │   ├── js/ - Helper JavaScript modules.
│   │   └── webview/ - Injection code for Electron's <webview> tag.
│   ├── common/ - Common JavaScript modules for both Electron's processes.
│   ── main/ - Implementation of Electron's main process.
│      └── menus/ - Application menu.
│   └── resources/ - Resources which are loaded from the application codes.
│   ── main/ - Implementation of Electron's main process.
│      └── menus/ - Application menu.
└── test/ - Automated tests.
   ├── modules/ - Scripts which are commonly used in tests.
   └── specs/ - Test scripts.