robhagemans / hoard-of-bitfonts

turns out I like bitmap fonts
Other
1.34k stars 51 forks source link

TRS-80 pointer to Kyotronic #7

Closed hackerb9 closed 2 years ago

hackerb9 commented 2 years ago

Since few people know the name "Kyocera Kyotronic-85", but the "TRS-80 Model 100" is well known, it would be good if trs-80/README.md had a pointer to the kyotronic.yaff file. It could say something like,

Note that font used in the TRS-80 Model 100 is the same as the kyotronic-85 font. Likewise, see the kyotronic directory for the font used in the Tandy 200 and Tandy 102 and the TRS-80 Disk/Video Interface 40-column and 80-column font.

Additionally, it would be a nice touch if the files would appear to also be in the trs-80 directory. GitHub handles symlinks, so it should be as simple as:

cd trs-80
ln  -s  ../kyotronic/kyotronic-85.yaff  trs80-model100.yaff
ln  -s  ../kyotronic/tandy-200.yaff 
ln  -s  ../kyotronic/trs80-dvi-7x8.yaff 
ln  -s  ../kyotronic/trs80-dvi-8x8.yaff 
ln  -s  tandy-200.yaff  tandy-102.yaff
git add *
git commit -m "TRS-80 portables are variants of the Kyocera Kyotronic-85"
hackerb9 commented 2 years ago

By the way: Symlinks may not be well supported by git on Microsoft Windows — I think one has to check a box during installation — but it's still better to have these links than not. I'm guessing that most people will be browsing the project using GitHub's web interface, not through git, so symlinks will work seamlessly. Being UNIX, GNU/Linux and Apple MacOS work fine. The only case where it would not work is if someone used 'git clone' from a Microsoft Windows machine which did not have symlinks enabled. The failure state is minor: a symlink would seem to contain the text of the correct path to open.

robhagemans commented 2 years ago

Hi,

Sorry, I'm not going to put in symlinks, it'll just become harder to manage. I may put in some reference in the README at some point but I don't think it's super important, and the more references I make the harder it will be to reorganise later. There are many, many other machines that are stored in odd locations in that repo, mostly because they are in some way related to another line of machines. A search for TRS-80 in the repo will already bring up the kyotronic directory, with a README indicating which font is for the Model 100, so it's not terribly difficult to find.

On Sun, 16 Oct 2022 at 07:32, hackerb9 @.***> wrote:

By the way: Symlinks may not be well supported by git on Microsoft Windows — I think one has to check a box during installation — but it's still better to have these links than not. I'm guessing that most people will be browsing the project using GitHub's web interface, not through git, so symlinks will work seamlessly. Being UNIX, GNU/Linux and Apple MacOS work fine. The only case where it would not work is if someone used 'git clone' from a Microsoft Windows machine which did not have symlinks enabled. The failure state is minor: a symlink would seem to contain the text of the correct path to open.

— Reply to this email directly, view it on GitHub https://github.com/robhagemans/hoard-of-bitfonts/issues/7#issuecomment-1279903676, or unsubscribe https://github.com/notifications/unsubscribe-auth/AB25REVMNVTOJ4H6MZVAJBDWDOOODANCNFSM6AAAAAARGHBKX4 . You are receiving this because you are subscribed to this thread.Message ID: @.***>

hackerb9 commented 2 years ago

That makes sense. Thanks for considering it.