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

Update Vulkan version #2283

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
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
10 changes: 5 additions & 5 deletions lib/docs/scrapers/vulkan.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ module Docs
class Vulkan < UrlScraper
self.name = 'Vulkan'
self.type = 'simple'
self.release = '1.0.59'
self.base_url = 'https://www.khronos.org/registry/vulkan/specs/1.0/'
self.root_path = 'apispec.html'
self.release = '1.3.289'
self.base_url = 'https://registry.khronos.org/vulkan/specs/1.3/html/'
self.root_path = 'vkspec.html'
self.links = {
home: 'https://www.khronos.org/vulkan/'
home: 'https://registry.khronos.org/vulkan'
}

html_filters.push 'vulkan/entries', 'vulkan/clean_html', 'title'
Expand All @@ -16,7 +16,7 @@ class Vulkan < UrlScraper
options[:root_title] = 'Vulkan API Reference'

options[:attribution] = <<-HTML
&copy; 2014&ndash;2017 Khronos Group Inc.<br>
&copy; 2024 Khronos Group Inc.<br>
Licensed under the Creative Commons Attribution 4.0 International License.<br>
Vulkan and the Vulkan logo are registered trademarks of the Khronos Group Inc.
HTML
Expand Down