Skip to content

Commit 336f2d8

Browse files
committed
release: v2.0.0
1 parent f943a9a commit 336f2d8

File tree

5 files changed

+70
-3
lines changed

5 files changed

+70
-3
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,32 @@
22

33
> English|[简体中文](https://gitee.com/typed-sigterm/oi-runner-2/blob/main/CHANGELOG.zh-CN.md)
44
5+
## 2.0.0 (2025-04-26)
6+
7+
v2 is mainly based on the feedback from the hackers from [Moonshot48](https://www.msadream.cn/), and the features are basically on par with [Competitive Programming Helper](https://marketplace.visualstudio.com/items/?itemName=DivyanshuAgrawal.competitive-programming-helper).
8+
9+
### 🚀 Features
10+
11+
- Support multiple test cases, you can now keep multiple sets of input and output at the same time
12+
- Improve the prompt page when no file is opened
13+
- Support filling in the expected output and comparing it with the actual output in real time for debugging
14+
- To prevent excessive output from crashing the run panel, the run panel now only displays the first 1e4 bytes of output by default. This limit does not apply when redirecting to a file, and can also be modified through configuration
15+
- Add loading animation
16+
17+
### 🩹 Bug Fixes
18+
19+
- Fix the prompt above the stdout editor when redirecting output
20+
21+
### 📖 Documentation
22+
23+
- A brand new tutorial for beginners, which can be seen when opening VS Code
24+
- Migrate all configuration instructions to the standard VS Code settings interface
25+
- After completing the above two points, there is no longer a need for a documentation website. Visiting [the original documentation site](https://oi-runner-2.by-ts.top/) will redirect to GitHub or Gitee
26+
27+
### 🏡 Other Changes
28+
29+
- The unsaved file prompt now replaces the `Source File` text to fit the layout adjustment
30+
531
## 1.3.2 (2024-12-23)
632

733
### 🩹 Bug Fixes

CHANGELOG.zh-CN.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,32 @@
22

33
> [English](https://github.com/typed-sigterm/oi-runner-2/blob/main/CHANGELOG.md)|简体中文
44
5+
## 2.0.0 (2025-04-26)
6+
7+
v2 主要听取了来自 [Moonshot48](https://www.msadream.cn/) 的同学的反馈,功能基本追平了 [Competitive Programming Helper](https://marketplace.visualstudio.com/items/?itemName=DivyanshuAgrawal.competitive-programming-helper)
8+
9+
### 🚀 新功能
10+
11+
- 支持多组测试样例,你现在可以同时保留多组输入输出
12+
- 改进未打开文件时的提示页
13+
- 支持填入预期的输出,与实际输出实时对比,方便调试
14+
- 为了防止输出过多爆掉运行面板,现在运行面板中默认只显示前 1e4 字节的输出。重定向到文件时不受限制,也可以通过配置修改阈值
15+
- 添加加载动画
16+
17+
### 🩹 Bug 修复
18+
19+
- 修复重定向输出后 stdout 编辑器上方的提示
20+
21+
### 📖 文档改进
22+
23+
- 全新的新手教程,更新后打开 VS Code 就能看到
24+
- 迁移所有配置说明到标准的 VS Code 设置界面
25+
- 完成以上两点后,已经不再需要一个文档网站。访问[原文档站](https://oi-runner-2.by-ts.top/)会重定向到 GitHub 或 Gitee
26+
27+
### 🏡 其他修改
28+
29+
- 文件未保存提示现在替换 `Source File` 文本,以适应布局调整
30+
531
## 1.3.2 (2024-12-23)
632

733
### 🩹 Bug 修复

package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"publisher": "typed-sigterm",
33
"name": "oi-runner-2",
44
"displayName": "%extension.displayName%",
5-
"version": "1.3.2",
5+
"version": "2.0.0",
66
"private": true,
77
"packageManager": "pnpm@10.9.0",
88
"description": "%extension.description%",
@@ -62,6 +62,15 @@
6262
"altText": "%walkthrough.panel.altText%"
6363
}
6464
},
65+
{
66+
"id": "move-panel",
67+
"title": "%walkthrough.move.title%",
68+
"description": "%walkthrough.move.description%",
69+
"media": {
70+
"image": "assets/guide/move.gif",
71+
"altText": "%walkthrough.move.altText%"
72+
}
73+
},
6574
{
6675
"id": "tasks",
6776
"title": "%walkthrough.tasks.title%",

package.nls.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
"walkthrough.panel.title": "Using the Run Panel",
1919
"walkthrough.panel.description": "Run Panel is the place where you compile and/or run your code. You can switch between files, the content of the panel will change accordingly.",
2020
"walkthrough.panel.altText": "Running code using the OI Runner++ panel.",
21+
"walkthrough.move.title": "Move the Run Panel",
22+
"walkthrough.move.description": "If your run panel is at the bottom, you can drag it to the right.",
23+
"walkthrough.move.altText": "Dragging the run panel to the right-side secondary sidebar.",
2124
"walkthrough.tasks.title": "Switching Tasks",
2225
"walkthrough.tasks.description": "A task represents a command template for compiling and/or running your code. C++ and Python are supported by default. You can switch between tasks using the dropdown menu.",
2326
"walkthrough.tasks.altText": "Switching between configured tasks like C++ and Python.",

package.nls.zh-cn.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@
1111
"viewsContainer.title": "OI Runner++",
1212
"view.panel.name": "OI Runner++",
1313
"walkthrough.title": "开始使用 OI Runner++",
14-
"walkthrough.description": "学习如何使用 OI Runner++ 在 VS Code 中直接编译、运行和测试你的竞赛编程代码",
14+
"walkthrough.description": "使用 OI Runner++ 在 VS Code 中便捷的编译、运行、测试单文件程序",
1515
"walkthrough.launch.title": "启动 OI Runner++",
1616
"walkthrough.launch.description": "首先打开一个文件夹,然后打开你的源代码文件。点击运行菜单栏中的**运行或调试...**图标,然后选择**启动 OI Runner++**。\n或者,按 **Ctrl**+**Shift**+**P** 打开命令面板,输入**启动 OI Runner++**,然后按 Enter。",
1717
"walkthrough.launch.altText": "从运行菜单中启动 OI Runner++。",
1818
"walkthrough.panel.title": "使用运行面板",
1919
"walkthrough.panel.description": "运行面板是你编译和/或运行代码的地方。你可以在文件之间切换,面板的内容会相应地改变。",
20-
"walkthrough.panel.altText": "使用 OI Runner++ 面板运行代码。",
20+
"walkthrough.panel.altText": "使用运行面板运行代码。",
21+
"walkthrough.move.title": "移动运行面板",
22+
"walkthrough.move.description": "如果你的运行面板在底部,你可以把它拖到到右边。",
23+
"walkthrough.move.altText": "将运行面板拖到右侧的辅助侧边栏。",
2124
"walkthrough.tasks.title": "切换任务",
2225
"walkthrough.tasks.description": "任务代表了编译和/或运行代码的命令模板。默认支持 C++ 和 Python。你可以使用下拉菜单在任务之间切换。",
2326
"walkthrough.tasks.altText": "在配置的任务(如 C++ 和 Python)之间切换。",

0 commit comments

Comments
 (0)