vzcode 0.87.0 → 0.89.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -20
- package/dist/assets/{index-DubfLBmh.js → index-C4h28erw.js} +57 -57
- package/dist/assets/{index-B4X7yIz8.js → index-pzvwg1lq.js} +58 -58
- package/dist/assets/{worker-DHoGVnSk.js → worker-BIf7QrAH.js} +1 -1
- package/dist/index.html +1 -1
- package/package.json +13 -13
- package/src/client/Icons/QuestionMarkSVG.tsx +18 -0
- package/src/client/Icons/index.tsx +1 -0
- package/src/client/SplitPaneResizeContext.tsx +1 -1
- package/src/client/VZCodeContext.tsx +11 -0
- package/src/client/VZKeyboardShortcutsDoc.tsx +121 -0
- package/src/client/VZLeft.tsx +4 -0
- package/src/client/VZSettings.tsx +41 -51
- package/src/client/VZSidebar/CreateDirModal.tsx +14 -2
- package/src/client/VZSidebar/CreateFileModal.tsx +14 -2
- package/src/client/VZSidebar/index.tsx +49 -36
- package/src/client/index.ts +1 -0
- package/src/client/useActions.ts +16 -0
- package/src/client/vzReducer/createInitialState.ts +1 -0
- package/src/client/vzReducer/index.ts +5 -0
- package/src/client/vzReducer/setIsDocOpenReducer.ts +9 -0
- package/src/client/featureFlags.js +0 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# VZCode: Multiplayer Code Editor
|
|
2
2
|
|
|
3
|
-
VZCode offers a multiplayer code editing environment that caters to a real-time collaborative development experience.
|
|
3
|
+
VZCode offers a multiplayer code editing environment that caters to a real-time collaborative development experience. It's the code editor component of [VizHub](https://vizhub.com/), and can also be used independently from VizHub.
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
@@ -150,26 +150,8 @@ VZCode is inspired by [VizHub v2](https://github.com/vizhub-core/vizhub/). VizHu
|
|
|
150
150
|
|
|
151
151
|

|
|
152
152
|
|
|
153
|
-
## Milestones
|
|
154
|
-
|
|
155
|
-
For detailed progress, visit the [VZCode Kanban Board](https://github.com/orgs/vizhub-core/projects/2/views/1)
|
|
156
|
-
|
|
157
|
-
- **February 2023**: Initial setup, server, and basic features
|
|
158
|
-
- **March 2023**: Enhancements, UX improvements, and NPM release
|
|
159
|
-
- **April 2023**: Directory support, feedback iterations, and promotion
|
|
160
|
-
- **May - August 2023**: Themes, overhaul CSS, adopt TypeScript, interactive widgets
|
|
161
|
-
- **September 2023**: Auto-run Prettier, AI-Assisted coding, TypeScript Autocomplete
|
|
162
|
-
- **October 2023**: Draggable split pane, deep linking, presence enhancements
|
|
163
|
-
- **November 2023**: Directory manipulation UX, implementing VSCode features
|
|
164
|
-
|
|
165
|
-
## Team
|
|
166
|
-
|
|
167
|
-
- **Curran Kelleher**
|
|
168
|
-
- **Anooj Pai** from [RPI RCOS](https://rcos.io/)
|
|
169
|
-
|
|
170
|
-
We welcome contributions!
|
|
171
|
-
|
|
172
153
|
## Spaces
|
|
173
154
|
|
|
155
|
+
- [VizHub Discord](https://discord.com/invite/wbtJ7SCtYr)
|
|
174
156
|
- [GitHub Repository](https://github.com/vizhub-core/vzcode)
|
|
175
157
|
- [Discord Channel within RCOS](https://discord.com/channels/738593165438746634/1066068656045441044)
|