Skip to content

Commit

Permalink
Point to paperproof.xyz
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkov committed Jul 22, 2023
1 parent 55b62ff commit 352338b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ In future potentially with LLMs and visual transformers trying to understand use

1. Install the extension from `extension/` folder
```console
code --install-extension paperproof-0.0.4.vsix
code --install-extension paperproof-0.0.5.vsix
```

2. Run the dev server (you might need to run `yarn install` first)
Expand All @@ -37,7 +37,7 @@ http://localhost:80
If you change something in the `/extension` folder, run

```console
vsce package; code --uninstall-extension undefined_publisher.paperproof; code --install-extension paperproof-0.0.4.vsix
vsce package; code --uninstall-extension undefined_publisher.paperproof; code --install-extension paperproof-0.0.5.vsix
```
and quit VSCode.

Expand Down
2 changes: 1 addition & 1 deletion app/src/indexBrowser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ interface PaperProofWindow extends Window {

declare const window: PaperProofWindow;

const BASE_URL = "http://localhost:80";
const BASE_URL = "https://paperproof.xyz";

// TODO: We should use the vscode font for consistency with Lean probably
// const fontFamily = 'Menlo, Monaco, "Courier New", monospace;'
Expand Down
6 changes: 5 additions & 1 deletion extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,8 @@ Initial release of the extension sending data to the server.

### 0.0.4

Send state updates directly to extension webview as well as the server
Send state updates directly to extension webview as well as the server

### 0.0.5

Support sessions
2 changes: 1 addition & 1 deletion extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "paperproof",
"displayName": "paperproof",
"description": "Extension which queries Lean server each time cursor position changes and sends context to the web server",
"version": "0.0.4",
"version": "0.0.5",
"repository": {
"type": "git",
"url": "https://github.com/antonkov/paper-proof"
Expand Down
Binary file added extension/paperproof-0.0.5.vsix
Binary file not shown.
2 changes: 1 addition & 1 deletion extension/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import fetch from "node-fetch";
// @ts-ignore
import converter from "./converter";

const SERVER_URL = "http://localhost:80";
const SERVER_URL = "https://paperproof.xyz";
let sessionId: string | null = null;
let latestInfo: object | null = null;

Expand Down

0 comments on commit 352338b

Please sign in to comment.