1
Fork 0

Update Source Code Pro fonts to version 2.030

Pulled in from https://github.com/adobe-fonts/source-code-pro/
This commit is contained in:
Manish Goregaokar 2019-04-20 19:33:58 -07:00
parent e14819ac03
commit 6bafc58ced
5 changed files with 3 additions and 3 deletions

View file

@ -936,7 +936,7 @@ themePicker.onblur = handleThemeButtonsBlur;
static_files::source_code_pro::REGULAR)?; static_files::source_code_pro::REGULAR)?;
write(cx.dst.join("SourceCodePro-Semibold.woff"), write(cx.dst.join("SourceCodePro-Semibold.woff"),
static_files::source_code_pro::SEMIBOLD)?; static_files::source_code_pro::SEMIBOLD)?;
write(cx.dst.join("SourceCodePro-LICENSE.txt"), write(cx.dst.join("SourceCodePro-LICENSE.md"),
static_files::source_code_pro::LICENSE)?; static_files::source_code_pro::LICENSE)?;
write(cx.dst.join("LICENSE-MIT.txt"), write(cx.dst.join("LICENSE-MIT.txt"),
static_files::LICENSE_MIT)?; static_files::LICENSE_MIT)?;

View file

@ -103,7 +103,7 @@ pub mod source_code_pro {
pub static SEMIBOLD: &'static [u8] = include_bytes!("static/SourceCodePro-Semibold.woff"); pub static SEMIBOLD: &'static [u8] = include_bytes!("static/SourceCodePro-Semibold.woff");
/// The file `SourceCodePro-LICENSE.txt`, the license text of the Source Code Pro font. /// The file `SourceCodePro-LICENSE.txt`, the license text of the Source Code Pro font.
pub static LICENSE: &'static [u8] = include_bytes!("static/SourceCodePro-LICENSE.txt"); pub static LICENSE: &'static [u8] = include_bytes!("static/SourceCodePro-LICENSE.md");
} }
/// Files related to the sidebar in rustdoc sources. /// Files related to the sidebar in rustdoc sources.