diff --git a/assets/javascripts/templates/pages/about_tmpl.coffee b/assets/javascripts/templates/pages/about_tmpl.coffee index 7ca88895..30c4c479 100644 --- a/assets/javascripts/templates/pages/about_tmpl.coffee +++ b/assets/javascripts/templates/pages/about_tmpl.coffee @@ -238,8 +238,8 @@ credits = [ ], [ 'Dart', '2012 the Dart project authors', - 'CC BY-SA', - 'https://creativecommons.org/licenses/by-sa/4.0/' + 'BSD 3-Clause "New" or "Revised" License', + 'https://raw.githubusercontent.com/dart-lang/sdk/main/LICENSE' ], [ 'date-fns', '2021 Sasha Koss and Lesha Koss', diff --git a/docs/file-scrapers.md b/docs/file-scrapers.md index 648ba38a..780de56b 100644 --- a/docs/file-scrapers.md +++ b/docs/file-scrapers.md @@ -23,7 +23,7 @@ and put it in `/path/to/devdocs/docs/` Or run the following commands in your terminal: ```sh -curl https://storage.googleapis.com/dart-archive/channels/stable/release/$RELEASE/api-docs/dartdocs-gen-api-zip > dartApi.zip; \ +curl https://storage.googleapis.com/dart-archive/channels/stable/release/$RELEASE/api-docs/dartdocs-gen-api.zip > dartApi.zip; \ unzip dartApi.zip; mv gen-dartdocs docs/dart~$VERSION ``` diff --git a/lib/docs/scrapers/dart.rb b/lib/docs/scrapers/dart.rb index c12d051a..fd04555f 100644 --- a/lib/docs/scrapers/dart.rb +++ b/lib/docs/scrapers/dart.rb @@ -17,11 +17,11 @@ module Docs options[:attribution] = <<-HTML © 2012 the Dart project authors
- Licensed under the Creative Commons Attribution-ShareAlike License v4.0. + Licensed under the BSD 3-Clause "New" or "Revised" License. HTML version '2' do - self.release = '2.17.0' + self.release = '2.18.5' self.base_url = "https://api.dart.dev/stable/#{release}/" end