Fontawesome Pro - (Web & Desktop)

Fontawesome Pro - (Web & Desktop) v6.5.0

No permission to download

gobanggobing

Active member
May 4, 2022
48
151
33
Jogjakarta
kibarstudio.tech

Daniel74

New member
May 7, 2022
18
14
3
This is not the full version v6.2.0. This is the part loaded by the script I wrote. Only minified files. Not less, metadata, scss files.
 
  • Like
Reactions: makareim

Lewis6878

New member
May 18, 2022
4
2
3
Ah sh**. I was getting excited until I read these latest comments. Sounds like the latest "update" should be removed.
 

PixelMate

Member
Aug 17, 2022
64
58
18
This new update only contains the files needed for the web, and Pro Desktop is unavailable. Please reupload the latest full version if available. Thank you!
 

abda53

Member
Jun 10, 2022
84
92
18
Here is what abda53 shared, but much smaller.
What's the point in that? You 7zip'd the folder and then zipped the 7zip... so now someone will have to download a program that handles 7zip if they don't already have one. My share had both files they can download separately or all together because some people will only want desktop or web, but with yours they will have to download the entire thing, unzip it, and then un-7zip, and then have both versions whether or not they want it. If you want to share new versions please just make your own post instead of resharing what other people have shared. I don't download files from my licensed products I paid for to share with the group just so other people can try to share my share and try take credit for it.
 

DatDudeUpStairs

Be the change that you wish to see in the world.
Trusted Uploader
Jun 30, 2019
1,334
786
113
Asgardia
What's the point in that? You 7zip'd the folder and then zipped the 7zip... so now someone will have to download a program that handles 7zip if they don't already have one. My share had both files they can download separately or all together because some people will only want desktop or web, but with yours they will have to download the entire thing, unzip it, and then un-7zip, and then have both versions whether or not they want it. If you want to share new versions please just make your own post instead of resharing what other people have shared. I don't download files from my licensed products I paid for to share with the group just so other people can try to share my share and try take credit for it.
Removed.
Anyway thanks for the resource.
 

Daniel74

New member
May 7, 2022
18
14
3
I will share my script.
For personal use only! Not sharing! It is forbidden to change and assign authorship!

Script to download Font Awesome latest version.
The download takes a long time, depending on various factors, it will take 20 or more minutes to complete the work.

What's new:
Check for download errors, if any - the missing files are re-downloaded.
Added: download of sharp-solid icons, which appeared in version 6.2.0.

Usage:
Unpack the contents of the archive, run 1_FA6_font_down.cmd,. Wait for the completion of the work.

Note:
WEB components only: all css, js, sprites, svgs, webfonts
All CSS, JS files are downloaded only in minified (compressed) form.
Files in less, scss format are missing in the downloaded version.

Additional console utilities are used, which should be in the same folder as 1_FA6_font_down.cmd (all utilities are in the attached archive, all utilities are 32 bit so that they can be run on any Windows, 32 or 64 bit)

Download:
 
Last edited:

abda53

Member
Jun 10, 2022
84
92
18
I will share my script.
For personal use only! Not sharing! It is forbidden to change and assign authorship!

Script to download Font Awesome latest version.
The download takes a long time, depending on various factors, it will take 20 or more minutes to complete the work.

What's new:
Check for download errors, if any - the missing files are re-downloaded.
Added: download of sharp-solid icons, which appeared in version 6.2.0.

Usage:
Unpack the contents of the archive, run 1_FA6_font_down.cmd,. Wait for the completion of the work.

Note:
All CSS, JS files are downloaded only in minified (compressed) form.
Files in less, scss format are missing in the downloaded version.

Additional console utilities are used, which should be in the same folder as 1_FA6_font_down.cmd (all utilities are in the attached archive, all utilities are 32 bit so that they can be run on any Windows, 32 or 64 bit)

Download:
*** Hidden text: cannot be quoted. ***


REM Font Awesome Latest Version Downloader by Daniel
@echo off & cls
ECHO Font Awesome Latest Version Downloader by Daniel

call :TimeCountBegin

ECHO Get latest releases...

wget -N https://api.github.com/repos/FortAwesome/Font-Awesome/releases/latest
FOR /F "usebackq delims==" %%i IN (`type latest ^| jq.exe ".tag_name"`) DO set "VERSION=v%%~i"

IF /i %VERSION% equ "" (
echo Didn't get Font Awesome version!
exit
)

set URL=https://site-assets.fontawesome.com/releases/%VERSION%

set "LIST_CSS=all brands duotone fontawesome light regular solid svg-with-js thin v4-font-face v4-shims v5-font-face sharp-solid"
set "LIST_JS=all brands conflict-detection duotone fontawesome light regular solid thin v4-shims sharp-solid"
set "LIST_SPR=brands duotone light regular sharp-solid solid thin"

ECHO.
ECHO Loading Font Awesome Pro %VERSION%...

ECHO.
ECHO Loading all CSS
FOR %%a IN (%LIST_CSS%) do wget -e robots=off -p -N -nv -R ".eot@",.tmp --referer=%URL% %URL%/css/%%a.css

ECHO.
ECHO Loading all JS
FOR %%a IN (%LIST_JS%) do wget -p -nv --referer=%URL% %URL%/js/%%a.js

ECHO.
ECHO Loading Sprites...
FOR %%a IN (%LIST_SPR%) do (
wget -p -nv --referer=%URL% %URL%/sprites/%%a.svg
ECHO Loading %%a
CALL :Aria2cdownl %%a
)

If Exist uri.txt (DEL uri.txt)

REM Add to zip
ECHO.
ECHO Add to zip
7za.exe a -tzip releases\fontawesome-pro-%VERSION%-web-rip.zip .\site-assets.fontawesome.com\releases\%VERSION%\*

ECHO Done!
call :TimeCountEnd

pause
exit

:Aria2cdownl
REM aria2c log LEVEL: debug, info, notice, warn or error. Default: debug

set loglev=--log-level=error
set filelog=download.log
set svgname=%1
IF Exist uri.txt (DEL uri.txt)
IF Exist %filelog% (DEL %filelog%)

FOR /F tokens^=2^ delims^=^" %%A in ('find "symbol id=" site-assets.fontawesome.com/releases/%VERSION%/sprites/%svgname%.svg') do echo %URL%/svgs/%svgname%/%%A.svg >> uri.txt
aria2c.exe -R --continue=true %loglev% --log=%filelog% --referer=* --conditional-get=true -i uri.txt -d "site-assets.fontawesome.com/releases/%VERSION%/svgs/%svgname%"

for %%I in ("%filelog%") do (
if %%~zI GTR 0 (
ECHO.
Echo ERROR downloads! Reload %svgname%...
CALL :Aria2cdownl %svgname%
) else (
IF Exist %filelog% (DEL %filelog%)
exit /b
)
)

:TimeCountBegin
set begin_HH=1%time:~0,2%
set /a begin_HH=%begin_HH%-100
set begin_MM=1%time:~3,2%
set /a begin_MM=%begin_MM%-100
set begin_SS=1%time:~6,2%
set /a begin_SS=%begin_SS%-100
goto :EOF

:TimeCountEnd
set end_HH=1%time:~0,2%
set /a end_HH=%end_HH%-100
set end_MM=1%time:~3,2%
set /a end_MM=%end_MM%-100
set end_SS=1%time:~6,2%
set /a end_SS=%end_SS%-100
set /a begin=(%begin_HH%*3600)+(%begin_MM%*60)+%begin_SS%
set /a end=(%end_HH%*3600)+(%end_MM%*60)+%end_SS%
set /a worktime=%end%-%begin%
set /a worktime_MM=%worktime%/60
set /a worktime_SS=%worktime%-%worktime_MM%*60
if %errorlevel%==0 echo. && echo Work times: %worktime_MM% min %worktime_SS% sec
goto :EOF
Looks like this only downloads the free version.. and a super slow roundabout inefficient way at doing it as well.. why not just download the pro version in 1 quick step?
 
  • Like
Reactions: makareim

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu