Skip to content

Commit

Permalink
fix: category and change log
Browse files Browse the repository at this point in the history
  • Loading branch information
gaoliang committed Mar 20, 2022
1 parent 4b2140b commit d718993
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
12 changes: 5 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# Change Log

All notable changes to the "visual-zookeeper" extension will be documented in this file.
## [1.0.3] - 2022-03-19
### Fixed
- command title in extensiton manage page
- fix some typo.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]


## [0.3.0] - 2022-03-19
## [1.0.0] - 2022-03-19
### Added
- Initial release of Visual ZooKeeper.
22 changes: 14 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Visual ZooKeeper",
"publisher": "gaoliang",
"description": "Visually manage your ZooKeeper in Visual Studio Code.",
"version": "1.0.1",
"version": "1.0.3",
"repository": "https://github.com/gaoliang/visual-zookeeper",
"license": "SEE LICENSE IN LICENSE",
"icon": "media/zk-logo.png",
Expand All @@ -27,39 +27,45 @@
{
"id": "visual-zookeeper-container",
"title": "Visual Zookeeper",
"icon": "media/zookeeper.png"
"icon": "media/zookeeper.svg"
}
]
},
"commands": [
{
"command": "visualZooKeeper.editNode",
"title": "Edit ZooKeeper Node Data",
"icon": "$(edit)"
"icon": "$(edit)",
"category": "Visual Zookeeper"
},
{
"command": "visualZooKeeper.refreshNode",
"title": "Refresh ZooKeeper Nodes",
"icon": "$(refresh)"
"icon": "$(refresh)",
"category": "Visual Zookeeper"
},
{
"command": "visualZooKeeper.configureServer",
"title": "Configure ZooKeeper Servers",
"icon": "$(server)"
"icon": "$(server)",
"category": "Visual Zookeeper"
},
{
"command": "visualZooKeeper.addNode",
"title": "Add ZooKeeper Node",
"icon": "$(add)"
"icon": "$(add)",
"category": "Visual Zookeeper"
},
{
"command": "visualZooKeeper.viewNodeStat",
"title": "View ZooKeeper Node Stat Info",
"icon": "$(info)"
"icon": "$(info)",
"category": "Visual Zookeeper"
},
{
"command": "visualZooKeeper.copyPath",
"title": "Copy ZooKeeper Node Full Path"
"title": "Copy ZooKeeper Node Full Path",
"category": "Visual Zookeeper"
}
],
"viewsWelcome": [
Expand Down

0 comments on commit d718993

Please sign in to comment.