Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- Update the combos rendering and add context button style in chat view.
- Support custom models (BYOK) for Copilot Business and Enterprise users.
Comment thread
xinyi-gong marked this conversation as resolved.
Outdated

### Fixed
- Fix ConcurrentModificationException in CompletionProvider listener iteration. [PR#13](https://github.com/microsoft/copilot-for-eclipse/pull/13)
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 enterprise GitHub settings. Please contact your organization's administrator for more information.
Comment thread
jdneo marked this conversation as resolved.
Outdated
Comment thread
xinyi-gong marked this conversation as resolved.
Outdated
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