Skip to content
This repository was archived by the owner on Oct 4, 2023. It is now read-only.

Commit 94e2282

Browse files
Merge branch 'master' into patch-1
2 parents 02601c8 + 26b55ea commit 94e2282

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,8 @@ Take a look at some of the amazing projects built with electron-vue. Want to hav
103103
* [**Netsix**](https://github.com/pulsardev/netsix): Share videos with your friends in a real peer-to-peer manner using WebRTC.
104104
* [**code-notes**](https://github.com/lauthieb/code-notes): A simple code snippet manager for developers built with Electron & Vue.js.
105105
* [**Pomotroid**](https://github.com/Splode/pomotroid): A simple and visually-pleasing Pomodoro timer
106+
* [**MarkText**](https://github.com/marktext/marktext): Mark Text is a realtime Markdown Editor.
107+
* [**vue-design**](https://github.com/L-Chris/vue-design): the best website visualization builder with Vue and Electron
108+
* [**ImapSync Client**](https://github.com/ridaamirini/ImapSyncClient): It's only an Internet Message Access Protocol Synchronization Client
109+
* [**Hve**](https://github.com/hellohve/hve): A static blog client tool you may like.
110+
* [**MarkdownFox**](https://github.com/lx4r/markdownfox): A simple Markdown viewer with auto update and PDF export.

docs/cn/end-to-end_testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ my-project
4040

4141
### 关于 Spectron
4242

43-
Spectron 是使用 [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/)[WebDriverIO](http://webdriver.io/) 来操作 DOM 元素的 [electron]http://electron.atom.io官方测试框架。
43+
Spectron 是使用 [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/)[WebDriverIO](http://webdriver.io/) 来操作 DOM 元素的 [electron](http://electron.atom.io) 官方测试框架。
4444

4545
#### WebDriverIO 的使用
4646

docs/cn/npm_scripts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NPM 脚本
22

3-
为了帮助n你消除开发过程中的冗余任务,请注意一些可用的 NPM 脚本。以下命令应该运行在项目的根目录下。当然,你可以使用 `yarn run <command>` 的方式运行下列任何命令。
3+
为了帮助你消除开发过程中的冗余任务,请注意一些可用的 NPM 脚本。以下命令应该运行在项目的根目录下。当然,你可以使用 `yarn run <command>` 的方式运行下列任何命令。
44

55
### `npm run build`
66

docs/en/project_structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Project Structure
22

3-
When it comes to making electron apps, project structure is a little different. If you have used the official [`vuejs-templates/webpack`](https://github.com/vuejs-templates/webpack) setup before, then the structure should feel quite familiar. The documentation in this section attempts to explain a general overview of how the boilerplate works and the differences when your application in built.
3+
When it comes to making electron apps, project structure is a little different. If you have used the official [`vuejs-templates/webpack`](https://github.com/vuejs-templates/webpack) setup before, then the structure should feel quite familiar. The documentation in this section attempts to explain a general overview of how the boilerplate works and the differences when your application is built.
44

55
### Single `package.json` Setup
66

docs/en/renderer-process.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,3 @@ Describing `vuex` is not the easiest thing to do, so please read [this](http://v
5151
electron-vue takes advantage of `vuex`'s module structure to create multiple data stores, which are saved in `src/renderer/store/modules`.
5252

5353
Having multiple data stores can be great for organization, but it can also be annoying to have to import each and every one. But don't fret, as `src/renderer/store/modules/index.js` does the dirty work for us! This little script lets `src/renderer/store/index.js` import all of our modules in a one-shot manner. If all that didn't make sense, just know you can easily duplicate the given `Counter.js` module and it will be loaded in "magically".
54-

template/.electron-vue/dev-runner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function startMain () {
114114
}
115115

116116
function startElectron () {
117-
electronProcess = spawn(electron, ['--inspect=5858', path.join(__dirname, '../dist/electron/main.js')])
117+
electronProcess = spawn(electron, ['--inspect=5858', '.'])
118118

119119
electronProcess.stdout.on('data', data => {
120120
electronLog(data, 'blue')

template/appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ init:
2323

2424
install:
2525
- ps: Install-Product node 8 x64
26-
- choco install yarn --ignore-dependencies
2726
- git reset --hard HEAD
2827
- yarn
2928
- node --version

0 commit comments

Comments
 (0)