Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add rate limit warning banner in chat view. [PR#17](https://github.com/microsoft/copilot-for-eclipse/pull/17)
- Support delegating read directory to IDE. [PR#18](https://github.com/microsoft/copilot-for-eclipse/pull/18)
- Support delegating file and text search to IDE. [PR#22](https://github.com/microsoft/copilot-for-eclipse/pull/22)
- Support custom models (BYOK) for Copilot Business and Enterprise users. [PR#140](https://github.com/microsoft/copilot-for-eclipse/pull/140)

### Changed
- Update the combos rendering and add context button style in chat view.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ protected Control createContents(Composite parent) {
disabledCompositeLayout.marginHeight = 0;
disabledComposite.setLayout(disabledCompositeLayout);
WrappableIconLink.createWithCustomizedImage(disabledComposite, "/icons/information.png",
Messages.preferences_page_byok_preview_disabled_tip);
Messages.preferences_page_byok_disabled_tip);
contentComposite = createByokView(pageStateStack);
updatePageState();
root.addDisposeListener(e -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class Messages extends NLS {
public static String preferences_page_byok_dialog_remove;
public static String preferences_page_byok_customModels;
public static String preferences_page_byok_enabledCount;
public static String preferences_page_byok_preview_disabled_tip;
public static String preferences_page_byok_disabled_tip;
public static String preferences_page_completions_codeMiningNote;
public static String preferences_page_customModes_defaultDescription;
public static String preferences_page_customModes_defaultInstructions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ preferences_page_byok_dialog_cancel=Cancel
preferences_page_byok_dialog_remove=Remove
preferences_page_byok_customModels=Custom Models
preferences_page_byok_enabledCount=%s of %s Enabled
preferences_page_byok_preview_disabled_tip=Custom models are available to Individual Copilot Users (Pro+, Pro and Free) who have enabled the Editor preview features in their Copilot Settings.
preferences_page_byok_disabled_tip=Custom models are disabled by your organization's GitHub settings. Please contact your organization's administrator for more information.
preferences_page_completions_codeMiningNote= You need to enable <a>'Code Minings'</a> to use inline completions in Eclipse 2024-12 (4.34) and later.

preferences_page_customModes_defaultDescription=Describe what this custom agent does and when to use it.
Expand Down
Loading