Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re: Add new Servo Logo (continuing #25749) #25846

Closed
wants to merge 56 commits into from
Closed

Commits on Feb 21, 2020

  1. add a fetch token for blob urls

    gterzian committed Feb 21, 2020

Commits on Feb 25, 2020

  1. Remove azure canvas backend

    closes #25833
    dralley committed Feb 25, 2020
  2. Implement mapReadAsync function of GPUBuffer

    Implemented the `mapReadAsync` and fixed the `unmap` functions of `GPUBuffer`.
    Added `mapped` internal slot for tracking the ArrayBuffer/Promise.
    Added more states to the `GPUBufferState` enum.
    imiklos committed Feb 25, 2020
  3. Update web-platform-tests to revision 2be2d7e3abcde5baded3448b85d0bb8…

    …8e58d3cf7
    servo-wpt-sync committed Feb 25, 2020
  4. Update webxr for openxr VR support.

    jdm committed Feb 25, 2020
  5. Update layout-2020 results.

    jdm committed Feb 25, 2020
  6. Auto merge of #25740 - gterzian:per_fetch_filemanager_handle, r=Manis…

    …hearth
    
    Per fetch file token for blob url
    
    <!-- Please describe your changes on the following line: -->
    
    Depends on #25724
    
    First step of #25226
    
    ---
    <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
    - [ ] `./mach build -d` does not report any errors
    - [ ] `./mach test-tidy` does not report any errors
    - [ ] These changes fix #___ (GitHub issue number if applicable)
    
    <!-- Either: -->
    - [ ] There are tests for these changes OR
    - [ ] These changes do not require tests because ___
    
    <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
    
    <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
    bors-servo committed Feb 25, 2020
  7. Replace servo.png/.icns with new logo asset

    malqinneh committed Feb 25, 2020
  8. Delete servo-100.png

    malqinneh committed Feb 25, 2020
  9. Delete servo-1000.png

    malqinneh committed Feb 25, 2020
  10. Delete servo-1024.png

    malqinneh committed Feb 25, 2020
  11. Delete servo-500.png

    malqinneh committed Feb 25, 2020
  12. Delete servo-64.png

    malqinneh committed Feb 25, 2020
  13. Delete servo-500-icon.ico

    malqinneh committed Feb 25, 2020
  14. Add new Servo logo(s) with revised filename

    malqinneh committed Feb 25, 2020
  15. Update Servo.ico to new filename structure

    - Using new asset filename structure (lower case, underscore, resolution)
    malqinneh committed Feb 25, 2020
  16. Auto merge of #25831 - szeged:wgpu_read_map_async, r=jdm

    Implement mapReadAsync function of GPUBuffer
    
    Implemented the `mapReadAsync` and fixed the `unmap` functions of `GPUBuffer`.
    Added `mapped` internal slot for tracking the ArrayBuffer/Promise.
    Added more states to the `GPUBufferState` enum.
    
    <!-- Please describe your changes on the following line: -->
    
    ---
    <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
    - [x] `./mach build -d` does not report any errors
    - [x] `./mach test-tidy` does not report any errors
    - [x] These changes addresses a part of #24706
    
    <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
    cc @kvark @jdm @zakorgy
    <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
    bors-servo committed Feb 25, 2020
  17. Update servo.png to new filename structure

    - Using new asset filename structure (lower case, underscore, resolution)
    malqinneh committed Feb 25, 2020
  18. Update servo64.png to new filename structure

    - Using new asset filename structure (lower case, underscore, resolution)
    malqinneh committed Feb 25, 2020
  19. Delete Servo.ico

    malqinneh committed Feb 25, 2020
  20. Delete servo.png

    malqinneh committed Feb 25, 2020
  21. Delete servo64.png

    malqinneh committed Feb 25, 2020
  22. Auto merge of #25841 - dralley:remove-azure, r=SimonSapin

    Remove azure canvas backend
    
    closes #25833
    
    Issue description: Now that the raqote backend has reached feature parity and been enabled by default, we should remove the unused azure backend entirely.
    
    <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
    - [ ] `./mach build -d` does not report any errors
    - [ ] `./mach test-tidy` does not report any errors
    - [x] These changes fix #25833
    
    <!-- Either: -->
    - [ ] There are tests for these changes OR
    - [x] These changes do not require tests because PR only removes code, doesn't add new code
    bors-servo committed Feb 25, 2020

Commits on Feb 26, 2020

  1. Auto merge of #25842 - servo-wpt-sync:wpt_update_25-02-2020, r=jdm

    Sync WPT with upstream (25-02-2020)
    
    Automated downstream sync of changes from upstream as of 25-02-2020.
    [no-wpt-sync]
    r? @servo-wpt-sync
    bors-servo committed Feb 26, 2020
  2. Refactor arc() and ellipse() to use lyon_geom::Arc

    pylbrecht committed Feb 26, 2020
  3. Update web-platform-tests to revision a4677f682d251f7c072772973058e77…

    …777711564
    servo-wpt-sync committed Feb 26, 2020
  4. Delete servo_1000.png

    malqinneh committed Feb 26, 2020
  5. Delete servo_500.png

    malqinneh committed Feb 26, 2020
  6. Delete servo_100.png

    malqinneh committed Feb 26, 2020
  7. Remove intermittent timeout.

    jdm committed Feb 26, 2020
  8. Auto merge of #25801 - pylbrecht:arc.refactor, r=jdm

    Refactor CanvasRenderingContext2D.arc() and .ellipse()
    
    <!-- Please describe your changes on the following line: -->
    Refactor `arc()` and `ellipse()` to make use of `lyon_geom::Arc` for approximating an arc with quadratic bezier curves.
    
    ---
    <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
    - [x] `./mach build -d` does not report any errors
    - [x] `./mach test-tidy` does not report any errors
    - [x] These changes fix part of #25331
    
    <!-- Either: -->
    - [x] There are tests for these changes
    
    <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
    
    <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
    bors-servo committed Feb 26, 2020
  9. Auto merge of #25848 - servo-wpt-sync:wpt_update_26-02-2020, r=jdm

    Sync WPT with upstream (26-02-2020)
    
    Automated downstream sync of changes from upstream as of 26-02-2020.
    [no-wpt-sync]
    r? @servo-wpt-sync
    bors-servo committed Feb 26, 2020
  10. Auto merge of #25843 - jdm:xr-up, r=asajeffrey

    Update webxr for openxr VR support.
    bors-servo committed Feb 26, 2020

Commits on Feb 27, 2020

  1. Update web-platform-tests to revision 1a7f5f868420607ef13a00c6ec14fd9…

    …e0310e7c0
    servo-wpt-sync committed Feb 27, 2020
  2. Auto merge of #25851 - servo-wpt-sync:wpt_update_27-02-2020, r=servo-…

    …wpt-sync
    
    Sync WPT with upstream (27-02-2020)
    
    Automated downstream sync of changes from upstream as of 27-02-2020.
    [no-wpt-sync]
    r? @servo-wpt-sync
    bors-servo committed Feb 27, 2020
  3. Delete servo-100.png

    malqinneh committed Feb 27, 2020
  4. Delete servo-1000.png

    malqinneh committed Feb 27, 2020
  5. Delete servo-1024.png

    malqinneh committed Feb 27, 2020
  6. Delete servo-500.png

    malqinneh committed Feb 27, 2020
  7. Delete servo-64.png

    malqinneh committed Feb 27, 2020
  8. Delete servo-500-icon.ico

    malqinneh committed Feb 27, 2020
  9. Update Servo.ico to new filename structure

    - Using new asset filename structure (lower case, underscore, resolution)
    malqinneh committed Feb 27, 2020
  10. Update servo.png to new filename structure

    - Using new asset filename structure (lower case, underscore, resolution)
    malqinneh committed Feb 27, 2020
  11. Update servo64.png to new filename structure

    - Using new asset filename structure (lower case, underscore, resolution)
    malqinneh committed Feb 27, 2020
  12. Delete servo.png

    malqinneh committed Feb 27, 2020
  13. Delete servo64.png

    malqinneh committed Feb 27, 2020
  14. Delete servo_1000.png

    malqinneh committed Feb 27, 2020
  15. Delete servo_500.png

    malqinneh committed Feb 27, 2020
  16. Delete servo_100.png

    malqinneh committed Feb 27, 2020

Commits on Feb 28, 2020

  1. Merge branch 'master' of https://github.com/malqinneh/servo

    malqinneh committed Feb 28, 2020
  2. Delete servo.ico

    malqinneh committed Feb 28, 2020
You can’t perform that action at this time.