diff --git a/CHANGELOG.md b/CHANGELOG.md index 3463ad2..ac94c60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to the "cyezoi" extension will be documented in this file. +## v0.0.14 + +- **Add support for contests** ![](assets/image.png) +- Optimize the login logic +- Set the default file to the current active file when submitting +- Fetch with UA +- Update README to include pictures + ## v0.0.13 - Remember the last selected language diff --git a/README.md b/README.md index 1ec1fb2..78c1d4a 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,23 @@ CYEZOI is an extension that can help user get and submit problems without opening the browser. +![](assets/image-1.png) + ## Features -TODO +This extension provides the following features: + +- Problem + - Submit problem + - Fetch statement +- Record + - View record +- Contest + - View scoreboard + - Submit problem + - Fetch statement + +All the features are available in the VS Code sidebar. ## Requirements @@ -14,10 +28,10 @@ Users using this extension should have [an CYEZOI account](https://newoj.cyezoi. Currently there are no extension settings. - +* `cyezoi.server`: The server address of CYEZOI. Default is `newoj.cyezoi.com`. +* `cyezoi.domain`: The Hydro domain of CYEZOI. Default is `problemset`. ## Known Issues diff --git a/assets/image-1.png b/assets/image-1.png new file mode 100644 index 0000000..b5f031b Binary files /dev/null and b/assets/image-1.png differ diff --git a/assets/image.png b/assets/image.png new file mode 100644 index 0000000..b65b424 Binary files /dev/null and b/assets/image.png differ diff --git a/package.json b/package.json index 3bbe46d..fbb0427 100644 --- a/package.json +++ b/package.json @@ -48,12 +48,12 @@ "cyezoi.server": { "type": "string", "default": "newoj.cyezoi.com", - "description": "The server address of CYEZOI" + "description": "The server address of CYEZOI, without protocol" }, "cyezoi.domain": { "type": "string", "default": "problemset", - "description": "The domain of CYEZOI" + "description": "The Hydro domain of CYEZOI" } } },