Skip to content

Commit

Permalink
Add Mark Text to README
Browse files Browse the repository at this point in the history
  • Loading branch information
Jocs committed Mar 12, 2018
2 parents baec4d6 + 7c4e3e9 commit 6cb3054
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ Make sure to take a look at the [documentation](https://simulatedgreg.gitbooks.i
## Made with electron-vue
Take a look at some of the amazing projects built with electron-vue. Want to have your own project listed? Feel free add your project to the bottom of the list below then submit a pull request.

* [**MarkText**](https://github.com/marktext/marktext): A realtime preview Markdown editor
* [**Surfbird**](https://github.com/surfbirdapp/surfbird): A Twitter client built on Electron and Vue
* [**Lulumi-browser**](https://github.com/qazbnm456/lulumi-browser): Lulumi-browser is a light weight browser coded with Vue.js 2 and Electron
* [**Space-Snake**](https://github.com/ilyagru/Space-Snake): A Desktop game built with Electron and Vue.js.
Expand All @@ -99,3 +98,9 @@ Take a look at some of the amazing projects built with electron-vue. Want to hav
* [**Opshell**](https://github.com/ricktbaker/opshell): Ops tool to make life easier working with AWS instances.
* [**GitHoard**](https://github.com/jojobyte/githoard): Hoard git repositories with ease.
* [**Data-curator**](https://github.com/ODIQueensland/data-curator): Share usable open data.
* [**Bookmark**](https://github.com/mrgodhani/bookmark): Desktop app to manage bookmarked links using Atom Electron and Vue.js
* [**Uber Run**](https://github.com/break-enter/uberrun): Simple automation desktop app to download and organize your tax invoices from Uber.
* [**Netsix**](https://github.com/pulsardev/netsix): Share videos with your friends in a real peer-to-peer manner using WebRTC.
* [**code-notes**](https://github.com/lauthieb/code-notes): A simple code snippet manager for developers built with Electron & Vue.js.
* [**Pomotroid**](https://github.com/Splode/pomotroid): A simple and visually-pleasing Pomodoro timer
* [**MarkText**](https://github.com/marktext/marktext): Mark Text is a realtime Markdown Editor.
2 changes: 1 addition & 1 deletion docs/en/vue_accessories.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ electron-vue comes packed with the following `vue` plugins that can be installed

> Promise based HTTP client for the browser and node.js
If you are familiar with `vue-resource`, then `axios` will feel very familiar as most of the API is nearly identical. You can easily import `axios` in your `main` process scripts or use with `this.$http` & `Vue.http` in the `renderer` process.
If you are familiar with `vue-resource`, then `axios` will feel very familiar as most of the API is nearly identical. You can easily import `axios` in your `main` process scripts or use with `this.$http` & `Vue.http` in the `renderer` process. Please note that during development you may run into issues with CORS since requests are passed through `webpack-dev-server`. As a small workaround, you can disable [`webSecurity`](https://electronjs.org/docs/api/browser-window#new-browserwindowoptions) within the BrowserWindow configuration, but please do remember to only disable this during development. Disabling this in production is highly not recommended and can create a serious security risk for your final application!

### [`vue-electron`](https://github.com/SimulatedGREG/vue-electron)

Expand Down
10 changes: 5 additions & 5 deletions meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,17 @@ module.exports = {
eslintConfig: {
when: 'eslint',
type: 'list',
message: 'Which eslint config would you like to use?',
message: 'Which ESLint config would you like to use?',
choices: [
{
name: 'Standard (https://github.com/feross/standard)',
value: 'standard',
short: 'Standard'
},
{
name: 'AirBNB (https://github.com/airbnb/javascript)',
name: 'Airbnb (https://github.com/airbnb/javascript)',
value: 'airbnb',
short: 'AirBNB'
short: 'Airbnb'
},
{
name: 'none (configure it yourself)',
Expand All @@ -94,12 +94,12 @@ module.exports = {
},
unit: {
type: 'confirm',
message: 'Setup unit testing with Karma + Mocha?',
message: 'Set up unit testing with Karma + Mocha?',
required: true
},
e2e: {
type: 'confirm',
message: 'Setup end-to-end testing with Spectron + Mocha?',
message: 'Set up end-to-end testing with Spectron + Mocha?',
require: true
},
builder: {
Expand Down

0 comments on commit 6cb3054

Please sign in to comment.