Releases: HatScripts/circle-flags
Releases · HatScripts/circle-flags
v2.7.0
Full changelog: v2.6.3...v2.7.0
v2.6.3
What's changed
Full changelog: v2.6.2...v2.6.3
v2.6.2
Full Changelog: v2.6.1...v2.6.2
v2.6.1
Create the following flags:
- American state and district flags:
Create the following language symlinks:
Country | Language symlink | |
---|---|---|
in-tg Telangana |
te Telugu |
Full Changelog: v2.6.0...v2.6.1
v2.6.0
Change border-radius
back to mask
, across all flags
Before:
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" style="border-radius:50%" viewBox="0 0 512 512">
...
</svg>
After:
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512">
<mask id="a">
<circle cx="256" cy="256" r="256" fill="#fff"/>
</mask>
<g mask="url(#a)">
...
</g>
</svg>
Full Changelog: v2.5.4...v2.6.0
v2.5.4
Full Changelog: v2.5.3...v2.5.4
v2.5.3
Create the following language flags:
Language | |
---|---|
non Old Norse |
Create the following language symlinks:
Country | Language symlink | |
---|---|---|
br Brazil |
pt-br Brazilian Portuguese |
Simplify the circle-flags logo:
Full Changelog: v2.5.2...v2.5.3
v2.5.2
Create the following flags:
Country | Language symlink | |
---|---|---|
manipur Manipur |
mni Manipuri |
|
mizoram Mizoram |
lus Mizo |
Create the following language symlinks:
Country | Language symlink | |
---|---|---|
kurdistan Kurdistan |
ckb Kurdish (Sorani) |
|
ph Philippines |
ilo Ilocano |
|
sl Sierra Leone |
kri Krio |
Full Changelog: v2.5.1...v2.5.2
v2.5.1
Create the following flags:
Create the following language flags:
-
en-au
Australian English -
en-ca
Canadian English -
en-in
Indian English -
en-ng
Nigerian English -
en-nz
New Zealand English -
en-us
American English -
en-za
South African English -
ia
Interlingua -
ie
Interlingue -
interslavic
Interslavic -
io
Ido -
vo
Volapük
Full Changelog: v2.5.0...v2.5.1
v2.5.0
Replace mask
with border-radius
across all flags:
<svg ...><mask id="a"><circle cx="256" cy="256" r="256" fill="#fff"/></mask><g mask="url(#a)">...</g></svg>
...becomes:
<svg ... style="border-radius:50%">...</svg>
Full Changelog: v2.4.1...v2.5.0