-
Notifications
You must be signed in to change notification settings - Fork 20
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 #1 from dionmunk/updates
updates
- Loading branch information
Showing
21 changed files
with
338 additions
and
146 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
_source | ||
test | ||
*.vsix | ||
This file was deleted.
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Change Log | ||
|
||
All notable changes to the "vscode-notes" extension will be documented in this file. | ||
|
||
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. | ||
|
||
## [Unreleased] | ||
|
||
## [1.1.0] | ||
|
||
### Added | ||
|
||
* activity bar icon | ||
* view list of notes in selected location | ||
* icon to create a new note | ||
* rename a note | ||
* delete a note | ||
|
||
### Changed | ||
|
||
* build extension using webpack to minify | ||
|
||
## [1.0.0] - 2020-03-26 | ||
|
||
### Added | ||
|
||
* set notes location | ||
* create a new note | ||
* list new notes | ||
|
||
[Unreleased]: https://github.com/dionmunk/vscode-notes/compare/v1.1.0...HEAD | ||
[1.1.0]: https://github.com/dionmunk/vscode-notes/compare/v1.0.0...v1.1.0 | ||
[1.0.0]: https://github.com/dionmunk/vscode-notes/compare/v1.0.0 |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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,79 +1,185 @@ | ||
{ | ||
"name": "vscode-notes", | ||
"displayName": "Notes", | ||
"description": "A markdown focused notes extension for Visual Studio Code that takes inspiration from Notational Velocity.", | ||
"version": "1.0.0", | ||
"description": "Notes is a Markdown focused notes extension for Visual Studio Code that takes inspiration from Notational Velocity and nvAlt.", | ||
"version": "1.1.0", | ||
"publisher": "dionmunk", | ||
"license": "CC-BY-NC-4.0", | ||
"author": { | ||
"name": "Dion Munk", | ||
"url": "https://github.com/dionmunk" | ||
"name": "Dion Munk", | ||
"url": "https://github.com/dionmunk" | ||
}, | ||
"keywords": [ | ||
"notes", | ||
"notational velocity" | ||
"notes", | ||
"notational velocity", | ||
"nvalt" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/dionmunk/vscode-notes" | ||
}, | ||
"homepage": "https://github.com/dionmunk/vscode-notes#readme", | ||
"bugs": { | ||
"url": "https://github.com/dionmunk/vscode-notes/issues" | ||
"homepage": "https://github.com/dionmunk/vscode-notes#readme", | ||
"bugs": { | ||
"url": "https://github.com/dionmunk/vscode-notes/issues" | ||
}, | ||
"icon": "static/icon.png", | ||
"icon": "resources/icon.png", | ||
"engines": { | ||
"vscode": "^1.41.0" | ||
"vscode": "^1.43.0" | ||
}, | ||
"categories": [ | ||
"Other" | ||
], | ||
"activationEvents": [ | ||
"onCommand:Notes.setup", | ||
"onCommand:Notes.new", | ||
"onCommand:Notes.list" | ||
"onView:notes", | ||
"onCommand:Notes.deleteNote", | ||
"onCommand:Notes.listNotes", | ||
"onCommand:Notes.newNote", | ||
"onCommand:Notes.refreshNotes", | ||
"onCommand:Notes.renameNote", | ||
"onCommand:Notes.setupNotes" | ||
], | ||
"main": "./src/extension.js", | ||
"main": "./dist/extension", | ||
"contributes": { | ||
"configuration": { | ||
"type": "object", | ||
"title": "Configuration", | ||
"properties": { | ||
"Notes.notesFolder": { | ||
"Notes.notesLocation": { | ||
"type": "string", | ||
"default": "", | ||
"description": "Location where notes are stored" | ||
"description": "Storage location for notes." | ||
} | ||
} | ||
}, | ||
"commands": [ | ||
{ | ||
"command": "Notes.setup", | ||
"title": "Select location to store notes", | ||
"category": "Notes" | ||
"command": "Notes.deleteNote", | ||
"title": "Delete Note", | ||
"icon": { | ||
"light": "resources/light/delete.svg", | ||
"dark": "resources/dark/delete.svg" | ||
} | ||
}, | ||
{ | ||
"command": "Notes.new", | ||
"title": "Create new note", | ||
"command": "Notes.listNotes", | ||
"title": "List Notes", | ||
"category": "Notes" | ||
}, | ||
{ | ||
"command": "Notes.list", | ||
"title": "List all notes", | ||
"command": "Notes.newNote", | ||
"title": "New Note", | ||
"category": "Notes", | ||
"icon": { | ||
"light": "resources/light/add.svg", | ||
"dark": "resources/dark/add.svg" | ||
} | ||
}, | ||
{ | ||
"command": "Notes.refreshNotes", | ||
"title": "Refresh Notes", | ||
"category": "Notes", | ||
"icon": { | ||
"light": "resources/light/refresh.svg", | ||
"dark": "resources/dark/refresh.svg" | ||
} | ||
}, | ||
{ | ||
"command": "Notes.renameNote", | ||
"title": "Rename Note", | ||
"icon": { | ||
"light": "resources/light/rename.svg", | ||
"dark": "resources/dark/rename.svg" | ||
} | ||
}, | ||
{ | ||
"command": "Notes.setupNotes", | ||
"title": "Select notes storage location.", | ||
"category": "Notes" | ||
} | ||
] | ||
], | ||
"keybindings": [ | ||
{ | ||
"command": "Notes.listNotes", | ||
"key": "alt+l", | ||
"mac": "alt+l" | ||
}, | ||
{ | ||
"command": "Notes.newNote", | ||
"key": "alt+n", | ||
"mac": "alt+n" | ||
} | ||
], | ||
"menus": { | ||
"view/title": [ | ||
{ | ||
"command": "Notes.refreshNotes", | ||
"when": "view == notes", | ||
"group": "navigation@1" | ||
}, | ||
{ | ||
"command": "Notes.newNote", | ||
"when": "view == notes", | ||
"group": "navigation@2" | ||
} | ||
], | ||
"view/item/context": [ | ||
{ | ||
"command": "Notes.renameNote", | ||
"when": "view == notes && viewItem == note", | ||
"group": "inline@1" | ||
}, | ||
{ | ||
"command": "Notes.deleteNote", | ||
"when": "view == notes && viewItem == note", | ||
"group": "inline@2" | ||
} | ||
] | ||
}, | ||
"viewsContainers": { | ||
"activitybar": [ | ||
{ | ||
"id": "vscode-notes", | ||
"title": "Notes", | ||
"icon": "resources/notes-light.svg" | ||
} | ||
] | ||
}, | ||
"views": { | ||
"vscode-notes": [ | ||
{ | ||
"id": "notes", | ||
"name": "Notes" | ||
} | ||
] | ||
} | ||
}, | ||
"scripts": { | ||
"vscode:prepublish": "webpack --mode production", | ||
"compile": "tsc -p ./", | ||
"lint": "eslint src --ext ts", | ||
"watch": "tsc -watch -p ./", | ||
"pretest": "npm run compile && npm run lint", | ||
"test": "node ./out/test/runTest.js", | ||
"webpack": "webpack --mode development", | ||
"webpack-dev": "webpack --mode development --watch", | ||
"test-compile": "tsc -p ./" | ||
}, | ||
"devDependencies": { | ||
"@types/glob": "^7.1.1", | ||
"@types/mocha": "^5.2.7", | ||
"@types/mkdirp": "^1.0.0", | ||
"@types/mocha": "^7.0.1", | ||
"@types/node": "^12.11.7", | ||
"@types/vscode": "^1.41.0", | ||
"eslint": "^6.6.0", | ||
"glob": "^7.1.5", | ||
"mocha": "^6.2.2", | ||
"typescript": "^3.6.4", | ||
"vscode-test": "^1.2.2" | ||
}, | ||
"dependencies": {} | ||
} | ||
"@types/rimraf": "^3.0.0", | ||
"@types/vscode": "^1.43.0", | ||
"@typescript-eslint/eslint-plugin": "^2.18.0", | ||
"@typescript-eslint/parser": "^2.18.0", | ||
"eslint": "^6.8.0", | ||
"glob": "^7.1.6", | ||
"mocha": "^7.0.1", | ||
"ts-loader": "^6.2.2", | ||
"typescript": "^3.7.5", | ||
"vscode-test": "^1.3.0", | ||
"webpack": "^4.42.1", | ||
"webpack-cli": "^3.3.11" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.