Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new "Fluency Score" news banner to inform users about the Copilot Fluency Score dashboard, improves the update mechanism for the usage analysis panel to preserve repository hygiene results, and enhances the user experience by retaining webview context when switching tabs. The most important changes are grouped below:
Fluency Score News Banner and User Tracking:
showFluencyScoreNewsBannerto display a one-time banner introducing the Copilot Fluency Score dashboard, shown after the extension has been opened five times unless the user has already visited the dashboard or dismissed the banner. The banner offers options to open the dashboard or dismiss the message. (src/extension.ts) [1] [2] [3]showMaturitymethod to record when a user opens the Fluency Score dashboard, preventing further display of the banner. (src/extension.ts)Usage Analysis Panel Improvements:
postMessageinstead of directly setting HTML, allowing for partial updates and preserving repository hygiene results. The webview now receives a structured message with updated stats and locale information. (src/extension.ts,src/webview/usage/main.ts) [1] [2]Webview Experience Enhancements:
retainContextWhenHidden: truefor the analysis panel webview, ensuring that analysis results persist when switching tabs and improving performance and user experience. (src/extension.ts)