-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from TankNee/rebuild/develop
v1.0.0
- Loading branch information
Showing
41 changed files
with
1,044 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "neeto.vue.electron", | ||
"version": "0.0.22", | ||
"version": "1.0.0", | ||
"description": "An Awesome WizNote Desktop Application", | ||
"productName": "Neeto-Vue", | ||
"author": "tanknee <[email protected]>", | ||
|
@@ -36,7 +36,7 @@ | |
"quasar": "^1.0.0", | ||
"sanitize-filename": "^1.6.3", | ||
"turndown": "^6.0.0", | ||
"vditor": "^3.7.1", | ||
"vditor": "^3.7.3", | ||
"vue-i18n": "^8.0.0" | ||
}, | ||
"devDependencies": { | ||
|
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
export default { | ||
exportMarkdownFile: 'export-markdown-file', | ||
exportMarkdownFiles: 'export-markdown-files' | ||
exportMarkdownFiles: 'export-markdown-files', | ||
importImages: 'import-images', | ||
uploadImages: 'upload-images' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
const axios = require('axios') | ||
/** | ||
* upload images | ||
* @param {string[]} imagePaths | ||
* @returns Promise<response> | ||
*/ | ||
export async function uploadImages (imagePaths) { | ||
const result = await axios.post('http://127.0.0.1:36677/upload', { list: imagePaths }, { timeout: 60 * 1000 }) | ||
return result.data | ||
} |
Oops, something went wrong.