Merge pull request #1849 from foo-dogsquared/update-octave-scraper

Update octave scraper to 7.2.0
This commit is contained in:
Simon Legner 2022-11-04 21:14:24 +01:00 committed by GitHub
commit 69ffaf07dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View file

@ -644,7 +644,7 @@ credits = [
'Octave',
'19962022 The Octave Project Developers',
'Octave',
'https://octave.org/doc/v7.1.0/'
'https://docs.octave.org/v7.2.0/'
], [
'OpenJDK',
'1993, 2022, Oracle and/or its affiliates. All rights reserved.<br>Licensed under the GNU General Public License, version 2, with the Classpath Exception.<br>Various third party code in OpenJDK is licensed under different licenses.<br>Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.',

View file

@ -30,18 +30,18 @@ module Docs
HTML
version '7' do
self.release = '7.1.0'
self.base_url = "https://octave.org/doc/v#{self.release}/"
self.release = '7.2.0'
self.base_url = "https://docs.octave.org/v#{self.release}/"
end
version '6' do
self.release = '6.4.0'
self.base_url = "https://octave.org/doc/v#{self.release}/"
self.base_url = "https://docs.octave.org/v#{self.release}/"
end
version '5' do
self.release = '5.2.0'
self.base_url = "https://octave.org/doc/v#{self.release}/"
self.base_url = "https://docs.octave.org/v#{self.release}/"
end
def get_latest_version(opts)