Skip to content

Commit 81be7cf

Browse files
Merge branch 'main' into feature/variable_line_numbers
2 parents b4c1a1a + 0bfbc9d commit 81be7cf

File tree

34 files changed

+492
-454
lines changed

34 files changed

+492
-454
lines changed

.github/workflows/build-test-package-publish.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ jobs:
4646

4747
- name: Install Hatch
4848
uses: pypa/hatch@install
49+
with:
50+
version: 1.15.1
4951

5052
- name: Test Python Packages
5153
uses: nick-fields/retry@v3
@@ -109,6 +111,8 @@ jobs:
109111

110112
- name: Install Hatch
111113
uses: pypa/hatch@install
114+
with:
115+
version: 1.15.1
112116

113117
- name: Setup Java
114118
uses: actions/setup-java@v4
@@ -168,7 +172,8 @@ jobs:
168172

169173
- name: Install Hatch
170174
uses: pypa/hatch@install
171-
175+
with:
176+
version: 1.15.1
172177
- name: Setup Node.js environment
173178
uses: actions/setup-node@v4
174179
with:
@@ -258,6 +263,8 @@ jobs:
258263

259264
- name: Install Hatch
260265
uses: pypa/hatch@install
266+
with:
267+
version: 1.15.1
261268

262269
- name: Setup Java
263270
uses: actions/setup-java@v4

CHANGELOG.md

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

33
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
44

5+
## [2.1.0](https://github.com/robotcodedev/robotcode/compare/v2.0.4..v2.1.0) - 2025-12-01
6+
7+
### Documentation
8+
9+
- Correct some stylings ([5edb90c](https://github.com/robotcodedev/robotcode/commit/5edb90c90700bb0fea5773f102171e14da8f6abd))
10+
- Make the hero image a bit more christmassy ([4fd8412](https://github.com/robotcodedev/robotcode/commit/4fd841257ed6f9297799a7b9ab1ce829c6837266))
11+
12+
13+
### Features
14+
15+
- **vscode:** Add option to control extension activation per scope ([7af4583](https://github.com/robotcodedev/robotcode/commit/7af4583367c1746bb089eedb085fcb6d5f9fe966))
16+
17+
Add new `robotcode.disableExtension` configuration setting that allows
18+
users to disable or enable the RobotCode extension at any scope level.
19+
20+
With resource scope, users can:
21+
- Disable the extension globally (user settings) and enable it for
22+
specific workspaces or folders
23+
- Disable the extension for a workspace and enable it for specific
24+
folders within
25+
- Disable the extension only for specific folders in multi-root
26+
workspaces
27+
28+
This is useful in:
29+
- Large workspaces where RobotCode is not needed everywhere
30+
- Multi-root workspaces with mixed project types
31+
- Environments where users want opt-in rather than opt-out behavior
32+
33+
34+
535
## [2.0.4](https://github.com/robotcodedev/robotcode/compare/v2.0.3..v2.0.4) - 2025-11-25
636

737
### Documentation

docs/.vitepress/theme/style.css

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -98,18 +98,18 @@
9898
* -------------------------------------------------------------------------- */
9999

100100
:root {
101-
--vp-home-hero-name-color: #ffffff;
102-
--vp-home-hero-name-background: linear-gradient(90deg, #0b7285 0%, #138496 100%);
101+
/* --vp-home-hero-name-color: #ffffff;
102+
--vp-home-hero-name-background: linear-gradient(90deg, #0b7285 0%, #138496 100%); */
103103

104104
/* Hero adjustments */
105-
.VPHero {
105+
/* .VPHero {
106106
background: linear-gradient(180deg, rgba(11, 114, 133, 0.06) 0%, transparent 60%);
107-
}
107+
} */
108108
}
109109

110110
@media (min-width: 640px) {
111111
.VPHero .hero-img,
112-
.VPHero img[src*="robotcode-vintage.png"] {
112+
.VPHero .image-src {
113113
max-width: 256px;
114114
max-height: 256px;
115115
}
@@ -120,9 +120,9 @@
120120
Targets the image used in the home front-matter (e.g. /robotcode-vintage.png).
121121
Adjusts max-width and adds responsive scaling for larger viewports. */
122122
.VPHero .hero-img,
123-
.VPHero img[src*="robotcode-vintage.png"] {
124-
max-width: 500px; /* increase from default to make image larger */
125-
max-height: 500px; /* increase from default to make image larger */
123+
.VPHero .image-src {
124+
max-width: 512px; /* increase from default to make image larger */
125+
max-height: 512px; /* increase from default to make image larger */
126126
}
127127
}
128128

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ hero:
66
text: Robot Framework IDE & CLI, the friendly way.
77
tagline: Language server, debugger, analyzer, REPL, and shareable profiles for IDE & CI
88
image:
9-
src: /robotcode-vintage.png
9+
src: /robotcode-vintage-christmas.png
1010
alt: RobotCode Logo
1111
actions:
1212
- theme: brand

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"markdown-it-kbd": "^3.0.2",
1515
"markdown-it-task-lists": "^2.1.1",
1616
"typescript": "^5.9.3",
17-
"typescript-eslint": "^8.47.0",
17+
"typescript-eslint": "^8.48.1",
1818
"vitepress": "^1.6.4",
1919
"vitepress-plugin-llmstxt": "^0.5.0",
2020
"vitepress-plugin-tabs": "^0.7.3",
3.53 MB
Loading
761 KB
Loading

intellij-client/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginGroup = dev.robotcode
44
pluginName = RobotCode - Robot Framework Support
55
pluginRepositoryUrl = https://github.com/robotcodedev/robotcode4ij
66
# SemVer format -> https://semver.org
7-
pluginVersion = 2.0.4
7+
pluginVersion = 2.1.0
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 251

0 commit comments

Comments
 (0)