Commit graph

121 commits

Author SHA1 Message Date
GitHub Actions
3757eff299 [ci] Regenerate contributors 2023-03-25 11:44:26 +00:00
Fini Jastrow
9498b255f6 Regenerate Cheat Sheet and CSS
[why]
After the glyph name fix done with commit
    7e2d38b55  Fix some glyph names

we need to update the actual cheat sheet and CSS files.

[how]
Manually commit data from `generate-css.sh` run here.

Related: #1147

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-03-12 21:26:05 +01:00
GitHub Actions
a455c6aca1 [ci] Regenerate contributors 2023-02-17 09:09:08 +00:00
GitHub Actions
b075008565 [ci] Regenerate contributors 2023-02-12 15:02:48 +00:00
GitHub Actions
ce3eee0ca1 [ci] Regenerate contributors 2023-02-11 23:27:32 +00:00
GitHub Actions
a973b8d84c [ci] Regenerate contributors 2023-02-02 06:57:09 +00:00
Fini Jastrow
b7e6854074 Regenerate Cheat Sheet
[why]
Needs update because we changed the cheat-sheet generator script.

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-02-01 13:44:39 +01:00
Fini Jastrow
4e225e2fcf Center install hints
[why]
Mixing left and center aligned elements looks always very bad.

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-01-30 09:21:42 +01:00
Fini Jastrow
f2a8569a0a Correct Arch links
See also #1087

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-01-30 08:48:18 +01:00
Fini Jastrow
bc285ffc49 Update all-contributors
[why]
Update from main repo to gh-pages was broken or is manual.
Changed update script.

[how]
Let script (new) run manually. To see if it works.

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-01-27 15:13:58 +01:00
Fini Jastrow
8914909ad5 Regenerate Cheat Sheet
[why]
Needs update because we changed the cheat-sheet generator script.

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-01-25 20:07:35 +01:00
Fini Jastrow
f3607558a5 Update for 2.3.3 release
Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-01-24 20:00:25 +01:00
Fini Jastrow
7b77daaca8 Update for 2.3.2 release
Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-01-23 19:03:59 +01:00
Fini Jastrow
9ac253b9ee Update for 2.3.0 release
Don't forget to remove the 'details open' for past releases.

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-01-18 12:44:58 +01:00
Fini Jastrow
e5a622c13f [ci] Regenerate Cheat Sheet
Done manually because release workflow had a bug on release.

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-01-18 11:28:42 +01:00
Fini Jastrow
4f9592107c download: Fix RFN detection for un-renamed fonts
[why]
When we do not rename a font that has the RFN flag set we do not list
the font as RFN-font.
This is for example the case with mononoki since the last commit.

[how]
Show the source font name not only when it differs but also when it is a
RFN.

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-01-17 13:57:24 +01:00
Fini Jastrow
f532d7ab35 Revert "DEBUG: Check 5 digit Cheat Sheet"
This reverts commit 76c705a30d.
2023-01-16 23:57:40 +01:00
Fini Jastrow
76c705a30d DEBUG: Check 5 digit Cheat Sheet
Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2023-01-16 23:54:07 +01:00
Fini Jastrow
7fe81d2552 Update Cheat Sheet
[why]
The automatic release process updates the CSS files, but not the Cheat
Sheet file. This has been fixed by commit
  3de381d5a  CI: Automatically deploy Cheat Sheet

[how]
Do this one more time manually (do not want to trigger a release
workflow).

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2022-12-16 15:03:10 +01:00
Fini Jastrow
4f78d65627 download: Fix RFN detection
[why]
Sometimes we change the font name just because ... reasons, without
having being oblieged to do that because of a reserved font name (RFN)
clause.

This is for example the case with M+ that we rename to MPlus (well, it
has both names in principle, but the human readable name in the original
fonts in M+).

Another is "Go Mono" that we rename to "Go-Mono" for whatever reason.

This would also have been needed when `Fira Code` was still RFN and we
got the special permission to patch it without dropping `Fira Code` from
the name (see [1]), to create the correct tagged list.
But Fira Code dropped the RFN some time ago, so no need for this font
anymore.

This also prevents our own Symbols Only fonts to be listed as having RFN.

[how]
But an explicit field into the fonts.json database if the font has an
RFN or not, and decide upon that.

[1] https://github.com/tonsky/FiraCode/issues/767

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2022-11-26 12:46:30 +01:00
Fini Jastrow
76ebfee144 download: Allow patched and unpatched name to differ with blanks
[why]
We detect if a font has a reserved font name RFN by comparing unpatched
and patched names.

In the patched names we remove blanks from the original name, example
"BigBlue Terminal" -> "BigBlueTerminal Nerd Font"

In the fonts.json database we store "BigBlueTerminal" as `.patchedName`.
For our RFN detection we need to set the `.unpatchedName` also to
"BigBlueTerminal", which is strictly speaking not correct.

[how]
Compare `.unpatchedName` and `.patchedName` without taking the blanks into
account: Remove them before comparing.

[note]
This is needed to finally have the correct original names in the
database, which will be used for the Casks creation.

[note]
Also unify the shell commands (remove whitespaces).

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2022-11-26 11:37:40 +01:00
Ryan L McIntyre
460d654b30 Updates backers section 2022-10-29 04:10:16 -07:00
Fini Jastrow
9ea01d0740 Remove mentions of master branch [skip ci]
[why]
If we ever switch the default branch the links would break. So just say
'default branch' directly, whichever that may be.

[note]
CI workflows not changed, I do not know if there is an alias for the
default branch available.

Fixes: #971 (partially)

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2022-10-17 12:26:18 +02:00
Michael Rienstra
53be9ba114 Direct GitHub link
... Unless you're expecting more topics to match in the future?
2022-10-09 10:26:26 +02:00
Fini Jastrow
ca5be1f435 Rename Font Linux to Font Logos
Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2022-09-13 09:02:08 +02:00
Fini Jastrow
40750e7398 Correct release 2.2.2 release date
Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2022-09-12 14:35:30 +02:00
Fini Jastrow
7c4c5de2dd Update some more to v2.2.2
Ok, I was a bit lazy with the release notes, ... but who reads them
instead of the release pages?

[note]
inkscape ... does not need -f anymore as it seems.
Also I had to do the automated steps manually, which works.
Automation does not work, though.

Script `./generate-font-image-previews.sh`

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2022-09-11 22:26:58 +02:00
Fini Jastrow
bcef53dada Update cheat sheet
The file has been autogenerated with the `generate-css.sh` script in
branch `master`. Lets see if it works :-}

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
2022-09-11 19:49:10 +02:00
Ryan L McIntyre
94b6c49828 Updates backers section 2022-01-05 13:19:37 -08:00
Ryan L McIntyre
141779ac21 Adds backers section and does some re-ordering 2021-12-05 14:01:42 -08:00
Ryan L McIntyre
9f2a37c5c7
Update 2017-01-03-downloads.md
Fix instructions
2021-04-27 20:04:22 -07:00
Ryan L McIntyre
f406ae3bf8 Reworks cheat sheet page to function better 2020-12-05 06:20:29 -08:00
Ryan L McIntyre
fb920fc0fd Reworks cheat sheet layout with flexbox and clean-up console.logs 2020-12-05 03:12:10 -08:00
Ryan L McIntyre
8f79ba5bf4 Improves download page DOM rendering perf
* refactored and simplified DOM elements
2020-12-05 02:25:00 -08:00
adrian5
67548f955c
Fix font preview link 2020-10-11 12:46:37 +02:00
Ryan L McIntyre
2339660a97 Font image preview fixes 2020-02-08 20:05:50 -08:00
Ryan L McIntyre
b5a4a53534 Updates all contributors 2020-02-01 18:47:25 -08:00
Ryan L McIntyre
e67a715ac8 Adds token for easy find replace updating 2020-02-01 18:19:16 -08:00
Ryan L McIntyre
a58fb5d78a Updates and centralizes statistics 2020-02-01 09:31:49 -08:00
Ryan L McIntyre
5396d14114 Adds RFN info 2020-02-01 09:21:16 -08:00
Ryan L McIntyre
8843f4d589 Adds site var for version 2020-02-01 08:43:14 -08:00
Ryan L McIntyre
fe3ba4e3b8 Updates release notes for v2.1.0 Release 2020-02-01 08:32:59 -08:00
Ryan L McIntyre
80d6a3a1f9 Fixes typo 2019-12-07 18:05:35 -08:00
Krasimir Nedelchev
76a1ee6a50
Fix link address 2019-10-18 05:17:55 +03:00
Ryan L McIntyre
ccc4621101 Hides preview link if no preview available 2019-08-24 15:01:25 -07:00
Ryan L McIntyre
99af4a1331 Tweaks preview button fonts 2019-08-24 14:43:11 -07:00
Ryan L McIntyre
fb426b344b Revamps the fonts downloads page again
* better layout and download buttons
* lots of misc tweaks
* basic flexbox layout
2019-08-18 10:23:37 -07:00
Ryan L McIntyre
abdbfb4ce4 Cheatsheet correction (fixes #285) 2019-08-15 14:40:17 -07:00
Ryan L McIntyre
d64b1e0cea Adds svg preview images to download page for all fonts (WIP) 2019-08-14 14:21:18 -07:00
Ryan L McIntyre
14fcc87f0a Adds short notable font descriptions and links to fantastic font preview site 2019-08-10 09:14:59 -07:00