1. 11 11月, 2020 1 次提交
  2. 03 11月, 2020 1 次提交
  3. 20 10月, 2020 1 次提交
  4. 10 10月, 2020 2 次提交
  5. 07 10月, 2020 2 次提交
  6. 06 10月, 2020 1 次提交
  7. 26 9月, 2020 2 次提交
  8. 25 9月, 2020 2 次提交
  9. 18 9月, 2020 1 次提交
  10. 17 9月, 2020 2 次提交
  11. 16 9月, 2020 1 次提交
  12. 10 9月, 2020 3 次提交
  13. 09 9月, 2020 1 次提交
  14. 01 9月, 2020 1 次提交
  15. 29 8月, 2020 2 次提交
  16. 28 8月, 2020 1 次提交
  17. 27 8月, 2020 8 次提交
  18. 24 8月, 2020 1 次提交
  19. 21 8月, 2020 4 次提交
    • M
      Split webview serializers into own ext host service · daf5143e
      Matt Bierner 提交于
      daf5143e
    • M
      Move custom editors into own ext host services · 6db81f6a
      Matt Bierner 提交于
      6db81f6a
    • M
      Move webview views into own ext host class · 4fd7f660
      Matt Bierner 提交于
      Also fixes message passing for webview views
      4fd7f660
    • M
      Add proposed webview view API (#104601) · 61f799f5
      Matt Bierner 提交于
      Add proposed webview view API
      
      For #46585
      
      This adds a new `WebviewView` proposed api to VS Code that lets webview be used inside views. Webview views can be contributed using a contribution point such as :
      
      ```json
          "views": {
            "explorer": [
              {
                "type": "webview",
                "id": "cats.cat",
                "name": "Cats",
                "visibility": "visible"
              }
            ]
          },
      ```
      
      * Use proper activation event
      
      * Transparent background
      
      * Fix resize observer
      
      * Adding documentation
      
      * Move webview view to new directory under workbench
      
      * Remove resolver
      
      By moving the webviews view into their own fodler, I was able to avoid the cycle the resolver was originally introduced for
      
      * Use enum in more places
      
      * Hook up title and visible properties for webview views
      
      * Remove test view
      
      * Prefer Thenable
      
      * Add unknown view type error to collector
      61f799f5
  20. 20 8月, 2020 2 次提交
    • A
      Finalize task custom execution variable resolving · 640caaef
      Alex Ross 提交于
      Fixes #81007
      640caaef
    • C
      notebooks: remove impure renderer API · 24b712d7
      Connor Peet 提交于
      This removes the initial notebook renderer API and keeps the 'pure'
      renderer API described in #102644 and hacked-in previously.
      
      Remaining work in this area, in no particular order:
      
      - Add messaging context to postMessage as requested by Don (API proposal TBA)
      - Cleanups around how state is managed internally in the backLayerWebView
      - Deprecate the renderer `viewType` in favor of calling it the `id` or `rendererId`
      
      Q: I kept around some of the "transform" functions since the mime type
      picking happens there, not sure if there's a better place for this
      to happen now, or whether these methods should simply be renamed.
      24b712d7
  21. 17 8月, 2020 1 次提交