From f8fda5c9855bb8b8987c81180bbe8c53a115c553 Mon Sep 17 00:00:00 2001 From: Ryan L McIntyre Date: Mon, 26 Feb 2018 05:43:15 -0500 Subject: [PATCH] Version bumps in preparation for v2.0.0 release --- bin/scripts/archive-fonts.sh | 3 ++- bin/scripts/generate-casks.sh | 5 +++-- bin/scripts/generate-css.sh | 5 +++-- bin/scripts/generate-fontconfig.sh | 3 ++- bin/scripts/generate-glyph-info-from-set.py | 3 ++- bin/scripts/gotta-patch-em-all-font-patcher!.sh | 3 ++- bin/scripts/release.sh | 2 +- bin/scripts/standardize-and-complete-readmes.sh | 3 ++- bin/scripts/test-fonts.sh | 2 ++ bin/scripts/test-powerlines.sh | 2 ++ bin/scripts/tests.sh | 2 ++ bin/scripts/upload-archives.sh | 3 ++- 12 files changed, 25 insertions(+), 11 deletions(-) diff --git a/bin/scripts/archive-fonts.sh b/bin/scripts/archive-fonts.sh index 61cbbe27c..494dfb352 100755 --- a/bin/scripts/archive-fonts.sh +++ b/bin/scripts/archive-fonts.sh @@ -1,5 +1,6 @@ #!/bin/bash -# version: 1.2.0 +# version: 2.0.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) # adds Windows versions of the fonts as well (casks files just won't download them) diff --git a/bin/scripts/generate-casks.sh b/bin/scripts/generate-casks.sh index ee7119cc7..f855728b5 100755 --- a/bin/scripts/generate-casks.sh +++ b/bin/scripts/generate-casks.sh @@ -1,12 +1,13 @@ #!/bin/bash -# version: 1.2.0 +# version: 2.0.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="1.2.0" +version="2.0.0" patched_parent_dir="../../patched-fonts/" homepage="https://github.com/ryanoasis/nerd-fonts" downloadarchive="https://github.com/ryanoasis/nerd-fonts/releases/download/v#{version}/" diff --git a/bin/scripts/generate-css.sh b/bin/scripts/generate-css.sh index 4e4791bfd..5bc1754b2 100755 --- a/bin/scripts/generate-css.sh +++ b/bin/scripts/generate-css.sh @@ -1,5 +1,6 @@ #!/bin/bash -# version: 1.2.0 +# version: 2.0.0 +# script version: 1.0.0 # Generates CSS file for the font # shellcheck disable=SC1091 @@ -9,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="1.2.0" +version="2.0.0" # clear files true > "$output_css_file" 2> /dev/null diff --git a/bin/scripts/generate-fontconfig.sh b/bin/scripts/generate-fontconfig.sh index 1527d4bd5..03dc1230d 100755 --- a/bin/scripts/generate-fontconfig.sh +++ b/bin/scripts/generate-fontconfig.sh @@ -1,5 +1,6 @@ #!/bin/bash -# version: 1.2.0 +# version: 2.0.0 +# script version: 1.0.0 # Iterates over all patched fonts directories # to generate a fontconfig based on the Nerd Fonts Symbols font # that contains only the glyphs diff --git a/bin/scripts/generate-glyph-info-from-set.py b/bin/scripts/generate-glyph-info-from-set.py index 5a60878f9..855bc104b 100755 --- a/bin/scripts/generate-glyph-info-from-set.py +++ b/bin/scripts/generate-glyph-info-from-set.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # coding=utf8 -# Script Version: 1.0.0 +# nerd fonts version: 2.0.0 +# script version: 1.0.0 # Example Usage: # ./generate-glyph-info-from-set.py --font ../../src/glyphs/materialdesignicons-webfont.ttf --start f001 --end f847 --offset 4ff diff --git a/bin/scripts/gotta-patch-em-all-font-patcher!.sh b/bin/scripts/gotta-patch-em-all-font-patcher!.sh index da0027d2a..a7eecebd6 100755 --- a/bin/scripts/gotta-patch-em-all-font-patcher!.sh +++ b/bin/scripts/gotta-patch-em-all-font-patcher!.sh @@ -1,5 +1,6 @@ #!/bin/bash -# version: 1.2.0 +# version: 2.0.0 +# script version: 1.1.0 # used for debugging #set -x diff --git a/bin/scripts/release.sh b/bin/scripts/release.sh index 235197537..13f84ba80 100755 --- a/bin/scripts/release.sh +++ b/bin/scripts/release.sh @@ -1,5 +1,5 @@ #!/bin/bash -# version: 1.2.0 +# version: 2.0.0 # calls the necessary scripts in the necessary order to prepare for a release #set -x diff --git a/bin/scripts/standardize-and-complete-readmes.sh b/bin/scripts/standardize-and-complete-readmes.sh index 27f4f01ca..685bec01d 100755 --- a/bin/scripts/standardize-and-complete-readmes.sh +++ b/bin/scripts/standardize-and-complete-readmes.sh @@ -1,5 +1,6 @@ #!/bin/bash -# version: 1.2.0 +# version: 2.0.0 +# script version: 1.0.0 # Iterates over all patched fonts directories # converts all non markdown readmes to markdown (e.g., txt, rst) using pandoc # adds information on additional-variations and complete font variations diff --git a/bin/scripts/test-fonts.sh b/bin/scripts/test-fonts.sh index f474107d8..b21f6cdff 100755 --- a/bin/scripts/test-fonts.sh +++ b/bin/scripts/test-fonts.sh @@ -1,4 +1,6 @@ #!/bin/bash +# nerd fonts version 2.0.0 +# script version: 1.0.0 # Given an array of decimal numbers print all unicode codepoint. function print-decimal-unicode-range() { diff --git a/bin/scripts/test-powerlines.sh b/bin/scripts/test-powerlines.sh index 4ec903348..eabda3169 100755 --- a/bin/scripts/test-powerlines.sh +++ b/bin/scripts/test-powerlines.sh @@ -1,4 +1,6 @@ #!/bin/bash +# version: 2.0.0 +# script version: 1.0.0 text1='Testing' text2='Nerd Fonts' diff --git a/bin/scripts/tests.sh b/bin/scripts/tests.sh index 0eded9937..1598f26ee 100755 --- a/bin/scripts/tests.sh +++ b/bin/scripts/tests.sh @@ -1,4 +1,6 @@ #!/bin/bash +# version: 2.0.0 +# script version: 1.0.0 clear echo "Click to start" diff --git a/bin/scripts/upload-archives.sh b/bin/scripts/upload-archives.sh index 0bf96d127..51fa7810b 100755 --- a/bin/scripts/upload-archives.sh +++ b/bin/scripts/upload-archives.sh @@ -1,5 +1,6 @@ #!/bin/bash -# version: 1.2.1 +# version: 2.0.0 +# script version: 1.0.1 # Iterates over all archives and uploads to given release # uncomment to debug: