-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from sumo300/missing-fonts
Missing fonts
- Loading branch information
Showing
78 changed files
with
1,384 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# 0xProto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Nerd Fonts | ||
|
||
Nerd Fonts is a project that patches developer targeted fonts with a high number of glyphs (icons). | ||
|
||
[README for this font](./FONT-README.md) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
$ErrorActionPreference = 'Stop' | ||
|
||
$packageName = $env:ChocolateyPackageName | ||
$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition | ||
|
||
$packageArgs = @{ | ||
softwareName = $packageName | ||
packageName = $packageName | ||
unzipLocation = $toolsDir | ||
url = 'https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/0xProto.zip' | ||
checksumType = 'sha256' | ||
checksum = '103F8DFF0B6C06687A08CBE91BD446E03935AC6DBC0BA6F426967B45E3EDD3B6' | ||
} | ||
|
||
Install-ChocolateyZipPackage @packageArgs | ||
|
||
# Install all OpenType Fonts in package | ||
Push-Location $toolsDir | ||
|
||
# Get list of all Windows Compatible OpenType Fonts in package | ||
$fontList = Get-ChildItem "*Windows Compatible*.otf" | ||
|
||
if ($fontList.Count -le 0) { | ||
# Get list of all OpenType Fonts in package | ||
$fontList = Get-ChildItem *.otf | ||
} | ||
|
||
# Use the TrueType fonts only if the OpenType files are missing | ||
if ($fontList.Count -le 0) { | ||
# Get list of all Windows Compatible TrueType Fonts in package | ||
$fontList = Get-ChildItem "*Windows Compatible*.ttf" | ||
} | ||
if ($fontList.Count -le 0) { | ||
# Get list of all TrueType Fonts in package | ||
$fontList = Get-ChildItem *.ttf | ||
} | ||
|
||
# Installs fonts in Paths list and keeps track of the list for uninstall later | ||
$installCount = Install-ChocolateyFont -Paths $fontList -Multiple | ||
Write-Host "$installCount fonts installed" | ||
|
||
Pop-Location |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
$ErrorActionPreference = 'Stop' | ||
|
||
# Uninstalls fonts that were installed by this package | ||
$uninstallCount = Uninstall-ChocolateyFont | ||
Write-Host "$uninstallCount fonts uninstalled" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import-module au | ||
. $PSScriptRoot\..\_scripts\all.ps1 | ||
|
||
function global:au_SearchReplace { | ||
return Get-NerdFontSearchReplace | ||
} | ||
|
||
function global:au_BeforeUpdate { Get-RemoteFiles -Purge } | ||
|
||
function global:au_AfterUpdate { Set-DescriptionFromReadme -SkipFirst 2 -SkipLast 2 } | ||
|
||
function global:au_GetLatest { | ||
return Get-NerdFontLatest -Path $pwd | ||
} | ||
|
||
update -ChecksumFor 32 -NoReadme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Cascadia Mono |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Nerd Fonts | ||
|
||
Nerd Fonts is a project that patches developer targeted fonts with a high number of glyphs (icons). | ||
|
||
[README for this font](./FONT-README.md) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
$ErrorActionPreference = 'Stop' | ||
|
||
$packageName = $env:ChocolateyPackageName | ||
$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition | ||
|
||
$packageArgs = @{ | ||
softwareName = $packageName | ||
packageName = $packageName | ||
unzipLocation = $toolsDir | ||
url = 'https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/CascadiaMono.zip' | ||
checksumType = 'sha256' | ||
checksum = '603C68495918D6FDDD800FFB6AB1AE726F5E410AFFC6B02047B1CDB00453EFAB' | ||
} | ||
|
||
Install-ChocolateyZipPackage @packageArgs | ||
|
||
# Install all OpenType Fonts in package | ||
Push-Location $toolsDir | ||
|
||
# Get list of all Windows Compatible OpenType Fonts in package | ||
$fontList = Get-ChildItem "*Windows Compatible*.otf" | ||
|
||
if ($fontList.Count -le 0) { | ||
# Get list of all OpenType Fonts in package | ||
$fontList = Get-ChildItem *.otf | ||
} | ||
|
||
# Use the TrueType fonts only if the OpenType files are missing | ||
if ($fontList.Count -le 0) { | ||
# Get list of all Windows Compatible TrueType Fonts in package | ||
$fontList = Get-ChildItem "*Windows Compatible*.ttf" | ||
} | ||
if ($fontList.Count -le 0) { | ||
# Get list of all TrueType Fonts in package | ||
$fontList = Get-ChildItem *.ttf | ||
} | ||
|
||
# Installs fonts in Paths list and keeps track of the list for uninstall later | ||
$installCount = Install-ChocolateyFont -Paths $fontList -Multiple | ||
Write-Host "$installCount fonts installed" | ||
|
||
Pop-Location |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
$ErrorActionPreference = 'Stop' | ||
|
||
# Uninstalls fonts that were installed by this package | ||
$uninstallCount = Uninstall-ChocolateyFont | ||
Write-Host "$uninstallCount fonts uninstalled" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import-module au | ||
. $PSScriptRoot\..\_scripts\all.ps1 | ||
|
||
function global:au_SearchReplace { | ||
return Get-NerdFontSearchReplace | ||
} | ||
|
||
function global:au_BeforeUpdate { Get-RemoteFiles -Purge } | ||
|
||
function global:au_AfterUpdate { Set-DescriptionFromReadme -SkipFirst 2 -SkipLast 2 } | ||
|
||
function global:au_GetLatest { | ||
return Get-NerdFontLatest -Path $pwd | ||
} | ||
|
||
update -ChecksumFor 32 -NoReadme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# CommitMono |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Nerd Fonts | ||
|
||
Nerd Fonts is a project that patches developer targeted fonts with a high number of glyphs (icons). | ||
|
||
[README for this font](./FONT-README.md) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
$ErrorActionPreference = 'Stop' | ||
|
||
$packageName = $env:ChocolateyPackageName | ||
$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition | ||
|
||
$packageArgs = @{ | ||
softwareName = $packageName | ||
packageName = $packageName | ||
unzipLocation = $toolsDir | ||
url = 'https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/CommitMono.zip' | ||
checksumType = 'sha256' | ||
checksum = '99E3E1B6126191CC0F7E49EDE5DC20B65A6B8CA808DA0139B5669E412632BF8D' | ||
} | ||
|
||
Install-ChocolateyZipPackage @packageArgs | ||
|
||
# Install all OpenType Fonts in package | ||
Push-Location $toolsDir | ||
|
||
# Get list of all Windows Compatible OpenType Fonts in package | ||
$fontList = Get-ChildItem "*Windows Compatible*.otf" | ||
|
||
if ($fontList.Count -le 0) { | ||
# Get list of all OpenType Fonts in package | ||
$fontList = Get-ChildItem *.otf | ||
} | ||
|
||
# Use the TrueType fonts only if the OpenType files are missing | ||
if ($fontList.Count -le 0) { | ||
# Get list of all Windows Compatible TrueType Fonts in package | ||
$fontList = Get-ChildItem "*Windows Compatible*.ttf" | ||
} | ||
if ($fontList.Count -le 0) { | ||
# Get list of all TrueType Fonts in package | ||
$fontList = Get-ChildItem *.ttf | ||
} | ||
|
||
# Installs fonts in Paths list and keeps track of the list for uninstall later | ||
$installCount = Install-ChocolateyFont -Paths $fontList -Multiple | ||
Write-Host "$installCount fonts installed" | ||
|
||
Pop-Location |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
$ErrorActionPreference = 'Stop' | ||
|
||
# Uninstalls fonts that were installed by this package | ||
$uninstallCount = Uninstall-ChocolateyFont | ||
Write-Host "$uninstallCount fonts uninstalled" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import-module au | ||
. $PSScriptRoot\..\_scripts\all.ps1 | ||
|
||
function global:au_SearchReplace { | ||
return Get-NerdFontSearchReplace | ||
} | ||
|
||
function global:au_BeforeUpdate { Get-RemoteFiles -Purge } | ||
|
||
function global:au_AfterUpdate { Set-DescriptionFromReadme -SkipFirst 2 -SkipLast 2 } | ||
|
||
function global:au_GetLatest { | ||
return Get-NerdFontLatest -Path $pwd | ||
} | ||
|
||
update -ChecksumFor 32 -NoReadme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# D2Coding |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Nerd Fonts | ||
|
||
Nerd Fonts is a project that patches developer targeted fonts with a high number of glyphs (icons). | ||
|
||
[README for this font](./FONT-README.md) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
$ErrorActionPreference = 'Stop' | ||
|
||
$packageName = $env:ChocolateyPackageName | ||
$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition | ||
|
||
$packageArgs = @{ | ||
softwareName = $packageName | ||
packageName = $packageName | ||
unzipLocation = $toolsDir | ||
url = 'https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/D2Coding.zip' | ||
checksumType = 'sha256' | ||
checksum = 'D7C2EC38D316583C8AF0319068AC05488F0C053CCCEA842AAE6089F3D64D758F' | ||
} | ||
|
||
Install-ChocolateyZipPackage @packageArgs | ||
|
||
# Install all OpenType Fonts in package | ||
Push-Location $toolsDir | ||
|
||
# Get list of all Windows Compatible OpenType Fonts in package | ||
$fontList = Get-ChildItem "*Windows Compatible*.otf" | ||
|
||
if ($fontList.Count -le 0) { | ||
# Get list of all OpenType Fonts in package | ||
$fontList = Get-ChildItem *.otf | ||
} | ||
|
||
# Use the TrueType fonts only if the OpenType files are missing | ||
if ($fontList.Count -le 0) { | ||
# Get list of all Windows Compatible TrueType Fonts in package | ||
$fontList = Get-ChildItem "*Windows Compatible*.ttf" | ||
} | ||
if ($fontList.Count -le 0) { | ||
# Get list of all TrueType Fonts in package | ||
$fontList = Get-ChildItem *.ttf | ||
} | ||
|
||
# Installs fonts in Paths list and keeps track of the list for uninstall later | ||
$installCount = Install-ChocolateyFont -Paths $fontList -Multiple | ||
Write-Host "$installCount fonts installed" | ||
|
||
Pop-Location |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
$ErrorActionPreference = 'Stop' | ||
|
||
# Uninstalls fonts that were installed by this package | ||
$uninstallCount = Uninstall-ChocolateyFont | ||
Write-Host "$uninstallCount fonts uninstalled" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import-module au | ||
. $PSScriptRoot\..\_scripts\all.ps1 | ||
|
||
function global:au_SearchReplace { | ||
return Get-NerdFontSearchReplace | ||
} | ||
|
||
function global:au_BeforeUpdate { Get-RemoteFiles -Purge } | ||
|
||
function global:au_AfterUpdate { Set-DescriptionFromReadme -SkipFirst 2 -SkipLast 2 } | ||
|
||
function global:au_GetLatest { | ||
return Get-NerdFontLatest -Path $pwd | ||
} | ||
|
||
update -ChecksumFor 32 -NoReadme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# EnvyCodeR | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Nerd Fonts | ||
|
||
Nerd Fonts is a project that patches developer targeted fonts with a high number of glyphs (icons). | ||
|
||
[README for this font](./FONT-README.md) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
$ErrorActionPreference = 'Stop' | ||
|
||
$packageName = $env:ChocolateyPackageName | ||
$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition | ||
|
||
$packageArgs = @{ | ||
softwareName = $packageName | ||
packageName = $packageName | ||
unzipLocation = $toolsDir | ||
url = 'https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/EnvyCodeR.zip' | ||
checksumType = 'sha256' | ||
checksum = '6D25B08438ADBA6E9FFC5674D063389A61E62D5542578B5E907C1D462881E9A3' | ||
} | ||
|
||
Install-ChocolateyZipPackage @packageArgs | ||
|
||
# Install all OpenType Fonts in package | ||
Push-Location $toolsDir | ||
|
||
# Get list of all Windows Compatible OpenType Fonts in package | ||
$fontList = Get-ChildItem "*Windows Compatible*.otf" | ||
|
||
if ($fontList.Count -le 0) { | ||
# Get list of all OpenType Fonts in package | ||
$fontList = Get-ChildItem *.otf | ||
} | ||
|
||
# Use the TrueType fonts only if the OpenType files are missing | ||
if ($fontList.Count -le 0) { | ||
# Get list of all Windows Compatible TrueType Fonts in package | ||
$fontList = Get-ChildItem "*Windows Compatible*.ttf" | ||
} | ||
if ($fontList.Count -le 0) { | ||
# Get list of all TrueType Fonts in package | ||
$fontList = Get-ChildItem *.ttf | ||
} | ||
|
||
# Installs fonts in Paths list and keeps track of the list for uninstall later | ||
$installCount = Install-ChocolateyFont -Paths $fontList -Multiple | ||
Write-Host "$installCount fonts installed" | ||
|
||
Pop-Location |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
$ErrorActionPreference = 'Stop' | ||
|
||
# Uninstalls fonts that were installed by this package | ||
$uninstallCount = Uninstall-ChocolateyFont | ||
Write-Host "$uninstallCount fonts uninstalled" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import-module au | ||
. $PSScriptRoot\..\_scripts\all.ps1 | ||
|
||
function global:au_SearchReplace { | ||
return Get-NerdFontSearchReplace | ||
} | ||
|
||
function global:au_BeforeUpdate { Get-RemoteFiles -Purge } | ||
|
||
function global:au_AfterUpdate { Set-DescriptionFromReadme -SkipFirst 2 -SkipLast 2 } | ||
|
||
function global:au_GetLatest { | ||
return Get-NerdFontLatest -Path $pwd | ||
} | ||
|
||
update -ChecksumFor 32 -NoReadme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# GeistMono |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Nerd Fonts | ||
|
||
Nerd Fonts is a project that patches developer targeted fonts with a high number of glyphs (icons). | ||
|
||
[README for this font](./FONT-README.md) |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.