Skip to content

Commit

Permalink
Updates scripts in preparation for for v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanoasis committed Nov 3, 2019
1 parent b3e2607 commit 0ade837
Show file tree
Hide file tree
Showing 18 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion bin/scripts/archive-fonts.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.1.0
# Iterates over all patched fonts directories
# to generate ruby cask files for homebrew-fonts (https://github.com/caskroom/homebrew-fonts)
Expand Down
4 changes: 2 additions & 2 deletions bin/scripts/generate-casks.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.0.0
# Iterates over all patched fonts directories
# to generate ruby cask files for homebrew-fonts (https://github.com/caskroom/homebrew-fonts)
# only adds non-Windows versions of the fonts

#set -x

version="2.0.0"
version="2.1.0"
patched_parent_dir="../../patched-fonts/"
homepage="https://github.com/ryanoasis/nerd-fonts"
downloadarchive="https://github.com/ryanoasis/nerd-fonts/releases/download/v#{version}/"
Expand Down
4 changes: 2 additions & 2 deletions bin/scripts/generate-css.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.1.1
# Generates CSS file for the font

Expand All @@ -10,7 +10,7 @@ output_css_file="../../css/nerd-fonts-generated.css"
header_css_file="./css-header.txt"
output_cheat_sheet_file="../../temp/nerd-fonts-generated-cheat-sheet.txt"
LINE_PREFIX="# [Nerd Fonts] "
version="2.0.0"
version="2.1.0"

# clear files
true > "$output_css_file" 2> /dev/null
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/generate-fontconfig.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.0.0
# Iterates over all patched fonts directories
# to generate a fontconfig based on the Nerd Fonts Symbols font
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/generate-glyph-info-from-set.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# coding=utf8
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.1.0

# Example Usage:
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/gotta-patch-em-all-font-patcher!.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.1.1

# used for debugging
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_all.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version 1.1.0

for i in $(dirname "${BASH_SOURCE[0]:-$0}")/i_{dev,fae,fa,iec,linux,oct,ple,pom,seti,material,weather}.sh; do
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_linux.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Font Logos (Font Linux) (29 icons)
# Codepoints: Nerd Fonts moved F100-F11C with holes → F300-F31C
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.1.0
test -n "$__i_linux_loaded" && return || __i_linux_loaded=1
i='' i_linux_alpine=$i
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_material.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Material Design Icons (2,119 icons)
# Codepoints: F001, F847, Nerd Fonts moved F500-FD46
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version 1.0.0
test -n "$__i_mdi_loaded" && return || __i_mdi_loaded=1
i='' i_mdi_vector_square=$i
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_seti.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Seti-UI + Custom (53 icons, 6 aliases)
# Codepoints: E5FA-E62E
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.1.0
test -n "$__i_seti_loaded" && return || __i_seti_loaded=1
i='' i_custom_folder_npm=$i
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/lib/i_weather.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Weather Icons (228 icons)
# Codepoints: F000, F0EB, Nerd Fonts moved E300-E3EB
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version 1.0.2
test -n "$__i_weather_loaded" && return || __i_weather_loaded=1
i='' i_weather_day_cloudy_gusts=$i
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# calls the necessary scripts in the necessary order to prepare for a release

#set -x
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/standardize-and-complete-readmes.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.1.0
# Iterates over all patched fonts directories
# converts all non markdown readmes to markdown (e.g., txt, rst) using pandoc
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/test-fonts.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.0.0

# Given an array of decimal numbers print all unicode codepoint.
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/test-powerlines.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.0.0

text1='Testing'
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/tests.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.0.0

clear
Expand Down
2 changes: 1 addition & 1 deletion bin/scripts/version-bump.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Nerd Fonts Version: 2.0.0
# Nerd Fonts Version: 2.1.0
# Script Version: 1.0.1
# bump version number for release in scripts (bash and python)
# does not do semver format checking
Expand Down
4 changes: 2 additions & 2 deletions font-patcher
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/env python
# coding=utf8
# Nerd Fonts Version: 2.0.0-alpha
# Nerd Fonts Version: 2.1.0
# script version: 3.0.1

from __future__ import absolute_import, print_function, unicode_literals

version = "2.1.0-alpha"
version = "2.1.0"
projectName = "Nerd Fonts"
projectNameAbbreviation = "NF"
projectNameSingular = projectName[:-1]
Expand Down

0 comments on commit 0ade837

Please sign in to comment.