mirror of
https://github.com/hexedtech/codemp-vscode.git
synced 2024-11-21 23:14:49 +01:00
chore: codemp.dev -> code.mp
This commit is contained in:
parent
8f93fcab86
commit
e34f8e9ec9
3 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
[![codemp](https://codemp.dev/static/banner.png)](https://codemp.dev)
|
||||
[![codemp](https://code.mp/static/banner.png)](https://code.mp)
|
||||
|
||||
> `codemp` is a **collaborative** text editing solution to work remotely.
|
||||
|
||||
|
@ -61,7 +61,7 @@ after a workspace is joined, more commands become available:
|
|||
|
||||
```
|
||||
"codemp-vscode": {
|
||||
"server" : "http://codemp.dev:50053",
|
||||
"server" : "http://code.mp:50053",
|
||||
"username" : "test@codemp.dev",
|
||||
"password" : "test"
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
"viewsWelcome": [
|
||||
{
|
||||
"view": "codemp-tree-view",
|
||||
"contents": "codemp -- [code multiplexer](https://codemp.dev)\n[Connect](command:codemp.connect)"
|
||||
"contents": "codemp -- [code multiplexer](https://code.mp)\n[Connect](command:codemp.connect)"
|
||||
}
|
||||
],
|
||||
|
||||
|
@ -130,7 +130,7 @@
|
|||
"properties": {
|
||||
"codemp.server": {
|
||||
"type": "string",
|
||||
"default": "http://codemp.dev:50053",
|
||||
"default": "http://code.mp:50053",
|
||||
"description": "Server address to connect to"
|
||||
},
|
||||
"codemp.username": {
|
||||
|
|
|
@ -12,7 +12,7 @@ let locks : Map<string, boolean> = new Map();
|
|||
|
||||
export async function connect() {
|
||||
let config = vscode.workspace.getConfiguration('codemp');
|
||||
let server = config.get<string>("server", "http://codemp.dev:50053");
|
||||
let server = config.get<string>("server", "http://code.mp:50053");
|
||||
|
||||
let username = config.get<string>("username");
|
||||
if (!username) {
|
||||
|
|
Loading…
Reference in a new issue