Skip to content

Commit 0de3d9c

Browse files
authored
Remove the Rovo Dev send to ide (#1150)
1 parent 6eeb88e commit 0de3d9c

File tree

5 files changed

+6
-80
lines changed

5 files changed

+6
-80
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
### [Report an Issue](https://github.com/atlassian/atlascode/issues)
22

3+
## What's new in 4.0.2
4+
5+
### Improvements
6+
7+
- Removed the hint on code selection to send the text to Rovo Dev
8+
39
## What's new in 4.0.1
410

511
### Features

package.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,12 +1006,6 @@
10061006
"scope": "window",
10071007
"order": 1
10081008
},
1009-
"atlascode.rovodev.showKeybinding": {
1010-
"type": "boolean",
1011-
"default": true,
1012-
"description": "Show the Rovo Dev keybinding annotation in the editor when a selection is present.",
1013-
"scope": "window"
1014-
},
10151009
"atlascode.rovodev.debugPanelEnabled": {
10161010
"type": "boolean",
10171011
"description": "Enable Rovo Dev debug panel",

src/config/model.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ export interface IConfig {
4545

4646
export interface RovoDevConfig {
4747
enabled: boolean;
48-
showKeybinding: boolean;
4948
debugPanelEnabled: boolean;
5049
}
5150

@@ -219,7 +218,6 @@ const emptyJiraConfig: JiraConfig = {
219218

220219
const emptyRovoDevConfig: RovoDevConfig = {
221220
enabled: false,
222-
showKeybinding: false,
223221
debugPanelEnabled: false,
224222
};
225223

src/container.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ import OnboardingProvider from './onboarding/onboardingProvider';
3535
import { registerQuickAuthCommand } from './onboarding/quickFlow';
3636
import { Pipeline } from './pipelines/model';
3737
import { RovoDevCodeActionProvider } from './rovo-dev/rovoDevCodeActionProvider';
38-
import { RovoDevDecorator } from './rovo-dev/rovoDevDecorator';
3938
import { RovoDevProcessManager } from './rovo-dev/rovoDevProcessManager';
4039
import { RovoDevWebviewProvider } from './rovo-dev/rovoDevWebviewProvider';
4140
import { SiteManager } from './siteManager';
@@ -319,7 +318,6 @@ export class Container {
319318
await setCommandContext(CommandContext.RovoDevEnabled, true);
320319

321320
this._rovodevDisposable = vscode.Disposable.from(
322-
new RovoDevDecorator(),
323321
languages.registerCodeActionsProvider({ scheme: 'file' }, new RovoDevCodeActionProvider(), {
324322
providedCodeActionKinds: [vscode.CodeActionKind.QuickFix],
325323
}),

src/rovo-dev/rovoDevDecorator.ts

Lines changed: 0 additions & 70 deletions
This file was deleted.

0 commit comments

Comments
 (0)