Skip to content

Commit

Permalink
fix:add readme and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
hardikmodi1 committed Apr 24, 2021
1 parent 7274a95 commit 9a9abe1
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 18 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ dist
.DS_Store
node_modules
out
yarn.lock
yarn.lock
*.vsix
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# TodoList for VSCode

VSCode extension to manage the todolist in a better way and bring todo one step closer to you directly in your dev area.
You can login with github, create boards, todolists and todos.

![Todolist Showcase](https://media.giphy.com/media/jaiqwN3Ny33U302gt6/giphy.gif)

## Features

Manage your tasks without leaving VSCode.
Create Boards, todolists, todos and drag and drop todos as you complete the tasks.

## Running Locally

1. Clone the repo.
2. Navigate to `api` folder, run `yarn` to install the dependancies.
3. Run `yarn watch` to put server in watch mode and in another terminal window run `yarn dev` to start the server.
4. Navigate to `extension` folder and run `yarn` to install the dependancies.
5. Run `yarn watch` to watch the changes in `extension` files.
6. Press `F5` key and select `VSCode extension development` from the dropdown, if that does not appear in your dropdown,
open the `extension.ts` file and then `F5` again.

This will open up another VSCode window with our extension installed in it.

---

## Following extension guidelines

Ensure that you've read through the extensions guidelines and follow the best practices for creating your extension.

- [Extension Guidelines](https://code.visualstudio.com/api/references/extension-guidelines)

**Enjoy!**
2 changes: 1 addition & 1 deletion extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to the "todolist" extension will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.0] -
## [0.0.7] -

### Added

Expand Down
2 changes: 1 addition & 1 deletion extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publisher": "HardikModi",
"displayName": "TodoList",
"description": "Bring Todos to one step closer to you and track it in better way",
"version": "0.0.5",
"version": "0.0.7",
"repository": {
"type": "git",
"url": "https://github.com/hardikmodi1/todolist"
Expand Down
30 changes: 15 additions & 15 deletions extension/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ export function activate(context: vscode.ExtensionContext) {
auth();
})
);
context.subscriptions.push(
vscode.commands.registerCommand("todolist.refresh", async () => {
TodoListsPanel.kill();
TodoListsPanel.createOrShow(context.extensionUri);
// await vscode.commands.executeCommand("workbench.action.closeSidebar");
// await vscode.commands.executeCommand(
// "workbench.view.extension.todolist-sidebar-view"
// );
setTimeout(() => {
vscode.commands.executeCommand(
"workbench.action.webview.openDeveloperTools"
);
}, 500);
})
);
// context.subscriptions.push(
// vscode.commands.registerCommand("todolist.refresh", async () => {
// TodoListsPanel.kill();
// TodoListsPanel.createOrShow(context.extensionUri);
// // await vscode.commands.executeCommand("workbench.action.closeSidebar");
// // await vscode.commands.executeCommand(
// // "workbench.view.extension.todolist-sidebar-view"
// // );
// setTimeout(() => {
// vscode.commands.executeCommand(
// "workbench.action.webview.openDeveloperTools"
// );
// }, 500);
// })
// );
}

export function deactivate() {}
Binary file removed extension/todolist-0.0.1.vsix
Binary file not shown.
Binary file removed extension/todolist-0.0.2.vsix
Binary file not shown.
Binary file removed extension/todolist-0.0.3.vsix
Binary file not shown.
Binary file removed extension/todolist-0.0.4.vsix
Binary file not shown.
Binary file removed extension/todolist-0.0.5.vsix
Binary file not shown.

0 comments on commit 9a9abe1

Please sign in to comment.