Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opensumi/core
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.8.1
Choose a base ref
...
head repository: opensumi/core
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.8.2
Choose a head ref
  • 9 commits
  • 99 files changed
  • 4 contributors

Commits on Mar 7, 2025

  1. chore: update CHANGELOG.md

    erha19 committed Mar 7, 2025
    Copy the full SHA
    30c372d View commit details

Commits on Mar 8, 2025

  1. chore: improve mcp views (#4453)

    * refactor: update class naming conventions in ChatToolRender and improve localization support
    
    * fix: html unescape
    
    * refactor: simplify MCPConfigContribution by removing unused dependencies and services
    
    * chore: use latest user message as chat title
    Aaaaash authored Mar 8, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    907611a View commit details

Commits on Mar 10, 2025

  1. fix: remove sumi- prefix to prevent model misspell (#4459)

    ensorrow authored Mar 10, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c6d8019 View commit details
  2. feat: support apply manager in chat view (#4458)

    * fix: rangesFromDiffHunk error
    
    * refactor: optimise renderApplyResult to reduce effects
    
    * feat: support apply manager in chat view
    
    * refactor: avoid import InlineDiffService directly
    
    * feat: support chat level accept/reject all
    
    * fix: support process hidden model decoration
    
    * fix: stopPropagation
    
    * chore: optimize applyStatus
    
    * fix: same file reduce
    ensorrow authored Mar 10, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1c650c5 View commit details
  3. feat: support contextWindow & maxToken setting, use lruCache to store…

    … sessions (#4460)
    
    * chore: use LRUCache to auto dispose old session
    
    * feat: support contextWindow & maxToken setting
    
    * chore: fix DisposableLRUCache and add debounce to saveSessions
    
    * fix: requestId bugs & clear empty sessions
    ensorrow authored Mar 10, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4c83b34 View commit details
  4. chore: add more context in chat reporter (#4461)

    ensorrow authored Mar 10, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    66e0c9f View commit details

Commits on Mar 11, 2025

  1. fix: edit instruction (#4456)

    * feat: add user's intention in apply prompt
    
    * fix: rangesFromDiffHunk error
    
    * fix: range
    
    * chore: remove useless comment
    
    chore: remove useless comment
    
    ---------
    
    Co-authored-by: 大表哥 <binshao54@gmail.com>
    ensorrow and Aaaaash authored Mar 11, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    48cce5c View commit details
  2. chore: update manifest.json to v3.8.2

    github-actions[bot] committed Mar 11, 2025
    Copy the full SHA
    6718112 View commit details
  3. v3.8.2

    github-actions[bot] committed Mar 11, 2025
    Copy the full SHA
    445496e View commit details
Showing with 1,445 additions and 455 deletions.
  1. +489 −0 CHANGELOG.md
  2. +1 −1 lerna.json
  3. +1 −1 packages/addons/package.json
  4. +1 −1 packages/ai-native/package.json
  5. +28 −0 packages/ai-native/src/browser/ai-core.contribution.ts
  6. +1 −1 packages/ai-native/src/browser/chat/apply.service.ts
  7. +54 −33 packages/ai-native/src/browser/chat/chat-manager.service.ts
  8. +22 −8 packages/ai-native/src/browser/chat/chat-model.ts
  9. +2 −0 packages/ai-native/src/browser/chat/chat-proxy.service.ts
  10. +80 −9 packages/ai-native/src/browser/chat/chat.view.tsx
  11. +44 −0 packages/ai-native/src/browser/components/ApplyStatus.tsx
  12. +131 −0 packages/ai-native/src/browser/components/ChangeList.tsx
  13. +27 −15 packages/ai-native/src/browser/components/ChatToolRender.module.less
  14. +14 −12 packages/ai-native/src/browser/components/ChatToolRender.tsx
  15. +126 −0 packages/ai-native/src/browser/components/change-list.module.less
  16. +1 −1 packages/ai-native/src/browser/components/chat-history.module.less
  17. +14 −0 packages/ai-native/src/browser/components/components.module.less
  18. +5 −4 packages/ai-native/src/browser/index.ts
  19. +93 −64 packages/ai-native/src/browser/mcp/base-apply.service.ts
  20. +4 −0 packages/ai-native/src/browser/mcp/config/components/mcp-config.view.tsx
  21. +1 −1 packages/ai-native/src/browser/mcp/config/mcp-config.contribution.ts
  22. +3 −37 packages/ai-native/src/browser/mcp/tools/components/EditFile.tsx
  23. +3 −1 packages/ai-native/src/browser/mcp/tools/components/ExpandableFileList.tsx
  24. +2 −2 packages/ai-native/src/browser/mcp/tools/handlers/EditFile.ts
  25. +2 −11 packages/ai-native/src/browser/model/msg-history-manager.ts
  26. +8 −0 packages/ai-native/src/browser/preferences/schema.ts
  27. +2 −2 packages/ai-native/src/browser/widget/inline-diff/inline-diff-manager.tsx
  28. +2 −1 packages/ai-native/src/browser/widget/inline-diff/inline-diff.controller.ts
  29. +3 −2 packages/ai-native/src/browser/widget/inline-diff/inline-diff.service.ts
  30. +4 −4 packages/ai-native/src/browser/widget/inline-stream-diff/inline-stream-diff.handler.tsx
  31. +0 −34 packages/ai-native/src/browser/widget/inline-stream-diff/live-preview.component.tsx
  32. +8 −9 packages/ai-native/src/browser/widget/inline-stream-diff/live-preview.decoration.tsx
  33. +9 −2 packages/ai-native/src/common/index.ts
  34. +35 −0 packages/ai-native/src/common/types.ts
  35. +1 −1 packages/collaboration/package.json
  36. +1 −1 packages/comments/package.json
  37. +1 −1 packages/components/package.json
  38. +27 −19 packages/components/src/markdown-react/parse.tsx
  39. +1 −1 packages/connection/package.json
  40. +1 −1 packages/core-browser/package.json
  41. +1 −1 packages/core-common/package.json
  42. +2 −0 packages/core-common/src/settings/ai-native.ts
  43. +1 −1 packages/core-electron-main/package.json
  44. +1 −1 packages/core-node/package.json
  45. +1 −1 packages/debug/package.json
  46. +1 −1 packages/decoration/package.json
  47. +1 −1 packages/design/package.json
  48. +1 −1 packages/editor/package.json
  49. +1 −1 packages/electron-basic/package.json
  50. +1 −1 packages/explorer/package.json
  51. +1 −1 packages/express-file-server/package.json
  52. +1 −1 packages/extension-manager/package.json
  53. +1 −1 packages/extension-storage/package.json
  54. +1 −1 packages/extension/package.json
  55. +1 −1 packages/file-scheme/package.json
  56. +1 −1 packages/file-search/package.json
  57. +1 −1 packages/file-service/package.json
  58. +1 −1 packages/file-tree-next/package.json
  59. +1 −1 packages/i18n/package.json
  60. +8 −0 packages/i18n/src/common/en-US.lang.ts
  61. +8 −0 packages/i18n/src/common/zh-CN.lang.ts
  62. +1 −1 packages/keymaps/package.json
  63. +1 −1 packages/logs-core/package.json
  64. +1 −1 packages/main-layout/package.json
  65. +1 −1 packages/markdown/package.json
  66. +1 −1 packages/markers/package.json
  67. +1 −1 packages/menu-bar/package.json
  68. +1 −1 packages/monaco-enhance/package.json
  69. +1 −1 packages/monaco/package.json
  70. +1 −1 packages/notebook/package.json
  71. +1 −1 packages/opened-editor/package.json
  72. +1 −1 packages/outline/package.json
  73. +1 −1 packages/output/package.json
  74. +1 −1 packages/overlay/package.json
  75. +1 −1 packages/preferences/package.json
  76. +1 −1 packages/process/package.json
  77. +1 −1 packages/quick-open/package.json
  78. +1 −1 packages/remote-opener/package.json
  79. +1 −1 packages/scm/package.json
  80. +1 −1 packages/search/package.json
  81. +1 −1 packages/startup/package.json
  82. +1 −1 packages/static-resource/package.json
  83. +1 −1 packages/status-bar/package.json
  84. +1 −1 packages/storage/package.json
  85. +1 −1 packages/task/package.json
  86. +1 −1 packages/terminal-next/package.json
  87. +1 −1 packages/testing/package.json
  88. +1 −1 packages/theme/package.json
  89. +1 −1 packages/toolbar/package.json
  90. +120 −120 packages/types/manifest.json
  91. +1 −1 packages/types/package.json
  92. +1 −1 packages/utils/package.json
  93. +1 −1 packages/variable/package.json
  94. +1 −1 packages/webview/package.json
  95. +1 −1 packages/workspace-edit/package.json
  96. +1 −1 packages/workspace/package.json
  97. +1 −1 tools/cli-engine/package.json
  98. +1 −1 tools/dev-tool/package.json
  99. +1 −1 tools/playwright/package.json
Loading