it-tools
it-tools copied to clipboard
Error in module ASCII Art Text Generator Current: "settings resulted in error."
Describe the bug
Module "ASCII Art Text Generator Current" no longer works:
"Current settings resulted in error."
I use IT tools in Docker on 2 computers. Uninstalling the Docker containers and images and an update via pull did not solve the problem.
What happened?
I get the same error message each time I select any font.
System information
Used Version: IT-Tools v2024.10.22-7ca5933 © 2025 Corentin Thomasset
Where did you encounter the bug?
Public app (it-tools.tech)
yes same issue for me
looks like a typo, the request goes to https://unpkg.com/[email protected]/fonts//Digital.flf which returns 404, swap the // between "fonts" and Font name for a / and the request goes through fine
looks like a typo, the request goes to https://unpkg.com/[email protected]/fonts//Digital.flf which returns 404, swap the // between "fonts" and Font name for a / and the request goes through fine
and how to do it?
looks like a typo, the request goes to https://unpkg.com/[email protected]/fonts//Digital.flf which returns 404, swap the // between "fonts" and Font name for a / and the request goes through fine
and how to do it?
if i'm not mistaken, it should be as easy swapping
figlet.defaults({ fontPath: '//unpkg.com/[email protected]/fonts/' });
for
figlet.defaults({ fontPath: '//unpkg.com/[email protected]/fonts' });
within /src/tools/ascii-text-drawer/ascii-text-drawer.vue & rebuilding
Hi @skarpinis , @Mozza7 , @jkonicek-projects , @marcelocg , see here : https://github.com/CorentinTh/it-tools/issues/1566
I'd close this as a duplicate of #1546
Hi @denilsonsa , @skarpinis , @Mozza7 @jkonicek-projects @marcelocg , I now serve fonts locally in my fork (for "safety reasons"). This works again in my fork (ctrl+f5 may be needed): https://sharevb-it-tools.vercel.app/ascii-text-drawer
And if you are interested in an up to date version of it-tools, with many improvements, new tools, and bug fixes, as this repo is almost no more maintained, I made a fork here : https://github.com/sharevb/it-tools (https://sharevb-it-tools.vercel.app/ and docker images https://github.com/sharevb/it-tools/pkgs/container/it-tools)