Compare commits

..

16 commits
v2.041 ... main

Author SHA1 Message Date
Dave Crossland
9e5a57d167
Update CONTRIBUTING.md
Some checks failed
Continuous Test + Deploy / health_check (push) Has been cancelled
2025-05-28 13:32:04 -06:00
Rod
22e5646262
Merge pull request #486 from googlefonts/u16
U16
2024-10-03 08:38:07 -07:00
Rod S
c3ca238295 More resolutions 2024-10-02 15:18:03 -07:00
rsheeter
60ac8a9e2f v2.047 2024-10-02 15:18:03 -07:00
rsheeter
be664c7417 Fix bug in full_rebuild.sh 2024-10-02 15:18:03 -07:00
rsheeter
84440686ad Make rebuilding a bit simpler 2024-10-02 15:18:03 -07:00
Rod S
124c7d40bb Update for unicode 16.0 2024-10-02 15:18:02 -07:00
Dave Crossland
254596e5f8
Update LICENSE to OFL 2024-07-29 12:02:03 -06:00
Rod
41e31b110b
Merge pull request #458 from googlefonts/flags-only
Add flags-only CBDT font
2024-02-15 10:14:44 -08:00
rsheeter
8eb7491de6 Flags-only name values 2024-02-14 13:28:31 -08:00
rsheeter
797dbcf1ff Add flags-only CBDT font 2024-02-09 14:31:58 -08:00
Rod
9cde38ef5e
Merge pull request #449 from googlefonts/wilderwells-patch-1
Update README.md
2023-12-08 09:35:24 -08:00
wilder
45b211a7c6
Update README.md 2023-12-06 20:43:20 -07:00
Rod
d79d23e682
Merge pull request #448 from googlefonts/flag
Update the flag of Martinique
2023-11-29 20:13:46 -08:00
Rod S
f06dfe7cfb v2.042 2023-11-29 19:56:59 -08:00
Rod S
461ec390d8 Updated flag of Martinique 2023-11-29 19:56:59 -08:00
1645 changed files with 22485 additions and 11495 deletions

1
.gitignore vendored
View file

@ -3,3 +3,4 @@ __pycache__/
waveflag waveflag
build/ build/
venv/ venv/
emojicompat/

View file

@ -2,55 +2,46 @@
Typically build the CBDT then the COLRv1 as COLRv1 copies some information from CBDT. Typically build the CBDT then the COLRv1 as COLRv1 copies some information from CBDT.
## CBDT ## Is this a Unicode rev?
* Update https://github.com/notofonts/nototools, publish the new version
* Must be done by a Googler. See internal instructions.
* Update emojicompat
* https://github.com/googlefonts/emojicompat?tab=readme-ov-file#support-new-unicode-sequences
* Update artwork
* Must be done by a Googler. Work with the emoji design team using internal instructions.
## Update version
Edit `NotoColorEmoji.tmpl.ttx.tmpl`
* In `<head>` find `fontRevision`.
* It should be of the form 2.xxx
* Increment xxx by 1
* In `<name>` find `<namerecord nameID="5" platformID="3" platEncID="1"
langID="0x409">`
* It should look like `Version
2.017;GOOG;noto-emoji:20180810:f1da3bc656f9`
* Update Version to match `<head>` (`Version 2.017` in the example)
* Update the date (`20180810` in the example)
* Update the commit
## Update new flags
* Add new flags to list in Makefile ([example](https://github.com/googlefonts/noto-emoji-next/commit/21bdd6107fac60979737ac95c2655cb02824d144))
* Update `third_party/region-flags`. For example, for CQ (Sark) update:
* `third_party/region-flags/png/CQ.png`
* This file can be highres, it will be resized by the CBDT build process
* This file should have the proportions of the flag
* `third_party/region-flags/svg/CQ.svg`
* This file is *not* required to have the `0 0 128 128` viewbox files in `/svg` have to have
* `third_party/region-flags/waved-svg/emoji_u1f1e8_1f1f6.svg`
* This file is produced using https://github.com/rsheeter/warp
* New flags are added to `wave_list.txt`
* To wave only the new flag delete other entries locally
## Rebuild the fonts
```bash ```bash
rm -rf venv # in case you have an old borked venv! # Build CBDT, COLR, flags-only, and emojicompat fonts
python3 -m venv venv $ ./full_rebuild.sh
source venv/bin/activate
pip install -r requirements.txt
python size_check.py
rm -rf build/ && time make -j 48
# Should take 2-3 minutes to create noto-emoji/NotoColorEmoji.ttf
mv *.ttf fonts/
``` ```
## COLRv1
```bash
# If you are updating to a new Unicode rev, update configs
python colrv1_generate_configs.py
git diff colrv1/*.toml
# Compile the fonts
(cd colrv1 && rm -rf build/ && time nanoemoji *.toml)
cp colrv1/build/NotoColorEmoji.ttf fonts/Noto-COLRv1.ttf
cp colrv1/build/NotoColorEmoji-noflags.ttf fonts/Noto-COLRv1-noflags.ttf
# Post-process them
python colrv1_postproc.py
```
## Emojicompat
```
# Add support for new sequences per https://github.com/googlefonts/emojicompat#support-new-unicode-sequences
# Install https://github.com/googlefonts/emojicompat in a venv
# Create emojicompat versions of the fonts you made
# Starting from the root of noto-emoji-next:
$ pushd fonts
$ cp NotoColorEmoji.ttf NotoColorEmoji-emojicompat.ttf
$ cp Noto-COLRv1.ttf Noto-COLRv1-emojicompat.ttf
$ emojicompat --op setup --font NotoColorEmoji-emojicompat.ttf
$ emojicompat --op setup --font Noto-COLRv1-emojicompat.ttf
$ emojicompat --op check --font NotoColorEmoji-emojicompat.ttf
$ emojicompat --op check --font Noto-COLRv1-emojicompat.ttf
# The emojicompat --op check step should print something akin to:
3835 items_by_codepoints
0 PUA missing
0 PUA point at wrong glyph
3835 PUA correct
0 Emji entries did NOT match a glyph

View file

@ -1,27 +1,3 @@
Want to contribute? Great! First, read this page (including the small print We don't accept pull requests, or design requests in general.
at the end).
### Before you contribute The Google Emoji team leads this project internally, and this repo exists to ease integration of the Emoji font binaries (and SVG 'binaries', which are not true sources).
Before we can use your code, you must sign the
[Google Individual Contributor License
Agreement](https://cla.developers.google.com/about/google-individual)
(CLA), which you can do online. The CLA is necessary mainly because you own the
copyright to your changes, even after your contribution becomes part of our
codebase, so we need your permission to use and distribute your code. We also
need to be sure of various other things—for instance that you'll tell us if you
know that your code infringes on other people's patents. You don't have to sign
the CLA until after you've submitted your code for review and a member has
approved it, but you must do it before we can put your code into our codebase.
Before you start working on a larger contribution, you should get in touch with
us first through the issue tracker with your idea so that we can help out and
possibly guide you. Coordinating up front makes it much easier to avoid
frustration later on.
### Code reviews
All submissions, including submissions by project members, require review.
We use Github pull requests for this purpose.
### The small print
Contributions made by corporations are covered by a different agreement than
the one above, the [Software Grant and Corporate Contributor License
Agreement](https://cla.developers.google.com/about/google-corporate).

258
LICENSE
View file

@ -1,201 +1,93 @@
Apache License Copyright 2013 Google LLC
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
https://scripts.sil.org/OFL
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, -----------------------------------------------------------
and distribution as defined by Sections 1 through 9 of this document. SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
"Licensor" shall mean the copyright owner or entity authorized by PREAMBLE
the copyright owner that is granting the License. The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
"Legal Entity" shall mean the union of the acting entity and all The OFL allows the licensed fonts to be used, studied, modified and
other entities that control, are controlled by, or are under common redistributed freely as long as they are not sold by themselves. The
control with that entity. For the purposes of this definition, fonts, including any derivative works, can be bundled, embedded,
"control" means (i) the power, direct or indirect, to cause the redistributed and/or sold with any software provided that any reserved
direction or management of such entity, whether by contract or names are not used by derivative works. The fonts and derivatives,
otherwise, or (ii) ownership of fifty percent (50%) or more of the however, cannot be released under any other type of license. The
outstanding shares, or (iii) beneficial ownership of such entity. requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
"You" (or "Your") shall mean an individual or Legal Entity DEFINITIONS
exercising permissions granted by this License. "Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Source" form shall mean the preferred form for making modifications, "Reserved Font Name" refers to any names specified as such after the
including but not limited to software source code, documentation copyright statement(s).
source, and configuration files.
"Object" form shall mean any form resulting from mechanical "Original Version" refers to the collection of Font Software components as
transformation or translation of a Source form, including but distributed by the Copyright Holder(s).
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or "Modified Version" refers to any derivative made by adding to, deleting,
Object form, made available under the License, as indicated by a or substituting -- in part or in whole -- any of the components of the
copyright notice that is included in or attached to the work Original Version, by changing formats or by porting the Font Software to a
(an example is provided in the Appendix below). new environment.
"Derivative Works" shall mean any work, whether in Source or Object "Author" refers to any designer, engineer, programmer, technical
form, that is based on (or derived from) the Work and for which the writer or other person who contributed to the Font Software.
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including PERMISSION & CONDITIONS
the original version of the Work and any modifications or additions Permission is hereby granted, free of charge, to any person obtaining
to that Work or Derivative Works thereof, that is intentionally a copy of the Font Software, to use, study, copy, merge, embed, modify,
submitted to Licensor for inclusion in the Work by the copyright owner redistribute, and sell modified and unmodified copies of the Font
or by an individual or Legal Entity authorized to submit on behalf of Software, subject to the following conditions:
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity 1) Neither the Font Software nor any of its individual components,
on behalf of whom a Contribution has been received by Licensor and in Original or Modified Versions, may be sold by itself.
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of 2) Original or Modified Versions of the Font Software may be bundled,
this License, each Contributor hereby grants to You a perpetual, redistributed and/or sold with any software, provided that each copy
worldwide, non-exclusive, no-charge, royalty-free, irrevocable contains the above copyright notice and this license. These can be
copyright license to reproduce, prepare Derivative Works of, included either as stand-alone text files, human-readable headers or
publicly display, publicly perform, sublicense, and distribute the in the appropriate machine-readable metadata fields within text or
Work and such Derivative Works in Source or Object form. binary files as long as those fields can be easily viewed by the user.
3. Grant of Patent License. Subject to the terms and conditions of 3) No Modified Version of the Font Software may use the Reserved Font
this License, each Contributor hereby grants to You a perpetual, Name(s) unless explicit written permission is granted by the corresponding
worldwide, non-exclusive, no-charge, royalty-free, irrevocable Copyright Holder. This restriction only applies to the primary font name as
(except as stated in this section) patent license to make, have made, presented to the users.
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Work or Derivative Works thereof in any medium, with or without Software shall not be used to promote, endorse or advertise any
modifications, and in Source or Object form, provided that You Modified Version, except to acknowledge the contribution(s) of the
meet the following conditions: Copyright Holder(s) and the Author(s) or with their explicit written
permission.
(a) You must give any other recipients of the Work or 5) The Font Software, modified or unmodified, in part or in whole,
Derivative Works a copy of this License; and must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
(b) You must cause any modified files to carry prominent notices TERMINATION
stating that You changed the files; and This license becomes null and void if any of the above conditions are
not met.
(c) You must retain, in the Source form of any Derivative Works DISCLAIMER
that You distribute, all copyright, patent, trademark, and THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
attribution notices from the Source form of the Work, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
excluding those notices that do not pertain to any part of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
the Derivative Works; and OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
(d) If the Work includes a "NOTICE" text file as part of its INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
distribution, then any Derivative Works that You distribute must DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
include a readable copy of the attribution notices contained FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
within such NOTICE file, excluding those notices that do not OTHER DEALINGS IN THE FONT SOFTWARE.
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View file

@ -55,7 +55,7 @@ COMPRESSED_DIR := $(BUILD_DIR)/compressed_pngs
LIMITED_FLAGS = CN DE ES FR GB IT JP KR RU US LIMITED_FLAGS = CN DE ES FR GB IT JP KR RU US
SELECTED_FLAGS = AC AD AE AF AG AI AL AM AO AQ AR AS AT AU AW AX AZ \ SELECTED_FLAGS = AC AD AE AF AG AI AL AM AO AQ AR AS AT AU AW AX AZ \
BA BB BD BE BF BG BH BI BJ BL BM BN BO BQ BR BS BT BW BY BZ \ BA BB BD BE BF BG BH BI BJ BL BM BN BO BQ BR BS BT BW BY BZ \
CA CC CD CF CG CH CI CK CL CM CN CO CR CU CV CW CX CY CZ \ CA CC CD CF CG CH CI CK CL CM CN CO CQ CR CU CV CW CX CY CZ \
DE DJ DK DM DO DZ \ DE DJ DK DM DO DZ \
EC EE EG EH ER ES ET EU \ EC EE EG EH ER ES ET EU \
FI FJ FK FM FO FR \ FI FJ FK FM FO FR \

View file

@ -78,7 +78,7 @@
<head> <head>
<!-- Most of this table will be recalculated by the compiler --> <!-- Most of this table will be recalculated by the compiler -->
<tableVersion value="1.0"/> <tableVersion value="1.0"/>
<fontRevision value="2.041"/> <fontRevision value="2.047"/>
<checkSumAdjustment value="0x4d5a161a"/> <checkSumAdjustment value="0x4d5a161a"/>
<magicNumber value="0x5f0f3cf5"/> <magicNumber value="0x5f0f3cf5"/>
<flags value="00000000 00001011"/> <flags value="00000000 00001011"/>
@ -246,7 +246,7 @@
Noto Color Emoji Noto Color Emoji
</namerecord> </namerecord>
<namerecord nameID="5" platformID="3" platEncID="1" langID="0x409"> <namerecord nameID="5" platformID="3" platEncID="1" langID="0x409">
Version 2.041;GOOG;noto-emoji:20231120:69db1642752d1457ed8cfa6880781a9f36c9722e Version 2.047;GOOG;noto-emoji:20240827:6c211821b8442ab3683a502f9a79b2034293fced
</namerecord> </namerecord>
<namerecord nameID="6" platformID="3" platEncID="1" langID="0x409"> <namerecord nameID="6" platformID="3" platEncID="1" langID="0x409">
NotoColorEmoji NotoColorEmoji

View file

@ -3,7 +3,7 @@
Noto Emoji (Stands for No Tofu) is an open source (Open Font License 1.1) emoji library that provides standard Unicode emoji support and tools for working with them including: Noto Emoji (Stands for No Tofu) is an open source (Open Font License 1.1) emoji library that provides standard Unicode emoji support and tools for working with them including:
- A Unicode compliant color emoji [font](https://github.com/googlefonts/noto-emoji/raw/main/fonts/NotoColorEmoji.ttf). - A Unicode compliant color emoji [font](https://github.com/googlefonts/noto-emoji/raw/main/fonts/NotoColorEmoji.ttf).
- A full library of Noto color emoji font files including 3,633 vector svgs and pngs - A full library of Noto color emoji font files including vector svgs and pngs
- [Metadata](https://github.com/googlefonts/emoji-metadata) for Emoji Input (including shortcodes, emoji ordering, ascii equivalents) - [Metadata](https://github.com/googlefonts/emoji-metadata) for Emoji Input (including shortcodes, emoji ordering, ascii equivalents)
## Color Font ## Color Font

View file

@ -3207,6 +3207,8 @@ srcs = [
"../svg/emoji_u1fa86.svg", "../svg/emoji_u1fa86.svg",
"../svg/emoji_u1fa87.svg", "../svg/emoji_u1fa87.svg",
"../svg/emoji_u1fa88.svg", "../svg/emoji_u1fa88.svg",
"../svg/emoji_u1fa89.svg",
"../svg/emoji_u1fa8f.svg",
"../svg/emoji_u1fa90.svg", "../svg/emoji_u1fa90.svg",
"../svg/emoji_u1fa91.svg", "../svg/emoji_u1fa91.svg",
"../svg/emoji_u1fa92.svg", "../svg/emoji_u1fa92.svg",
@ -3253,6 +3255,7 @@ srcs = [
"../svg/emoji_u1fabb.svg", "../svg/emoji_u1fabb.svg",
"../svg/emoji_u1fabc.svg", "../svg/emoji_u1fabc.svg",
"../svg/emoji_u1fabd.svg", "../svg/emoji_u1fabd.svg",
"../svg/emoji_u1fabe.svg",
"../svg/emoji_u1fabf.svg", "../svg/emoji_u1fabf.svg",
"../svg/emoji_u1fac0.svg", "../svg/emoji_u1fac0.svg",
"../svg/emoji_u1fac1.svg", "../svg/emoji_u1fac1.svg",
@ -3275,6 +3278,7 @@ srcs = [
"../svg/emoji_u1fac5_1f3fd.svg", "../svg/emoji_u1fac5_1f3fd.svg",
"../svg/emoji_u1fac5_1f3fe.svg", "../svg/emoji_u1fac5_1f3fe.svg",
"../svg/emoji_u1fac5_1f3ff.svg", "../svg/emoji_u1fac5_1f3ff.svg",
"../svg/emoji_u1fac6.svg",
"../svg/emoji_u1face.svg", "../svg/emoji_u1face.svg",
"../svg/emoji_u1facf.svg", "../svg/emoji_u1facf.svg",
"../svg/emoji_u1fad0.svg", "../svg/emoji_u1fad0.svg",
@ -3289,6 +3293,8 @@ srcs = [
"../svg/emoji_u1fad9.svg", "../svg/emoji_u1fad9.svg",
"../svg/emoji_u1fada.svg", "../svg/emoji_u1fada.svg",
"../svg/emoji_u1fadb.svg", "../svg/emoji_u1fadb.svg",
"../svg/emoji_u1fadc.svg",
"../svg/emoji_u1fadf.svg",
"../svg/emoji_u1fae0.svg", "../svg/emoji_u1fae0.svg",
"../svg/emoji_u1fae1.svg", "../svg/emoji_u1fae1.svg",
"../svg/emoji_u1fae2.svg", "../svg/emoji_u1fae2.svg",
@ -3298,6 +3304,7 @@ srcs = [
"../svg/emoji_u1fae6.svg", "../svg/emoji_u1fae6.svg",
"../svg/emoji_u1fae7.svg", "../svg/emoji_u1fae7.svg",
"../svg/emoji_u1fae8.svg", "../svg/emoji_u1fae8.svg",
"../svg/emoji_u1fae9.svg",
"../svg/emoji_u1faf0.svg", "../svg/emoji_u1faf0.svg",
"../svg/emoji_u1faf0_1f3fb.svg", "../svg/emoji_u1faf0_1f3fb.svg",
"../svg/emoji_u1faf0_1f3fc.svg", "../svg/emoji_u1faf0_1f3fc.svg",
@ -3638,6 +3645,7 @@ srcs = [
"../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1f3.svg", "../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1f3.svg",
"../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1f4.svg", "../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1f4.svg",
"../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1f5.svg", "../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1f5.svg",
"../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1f6.svg",
"../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1f7.svg", "../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1f7.svg",
"../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1fa.svg", "../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1fa.svg",
"../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1fb.svg", "../third_party/region-flags/waved-svg/emoji_u1f1e8_1f1fb.svg",

View file

@ -3181,6 +3181,8 @@ srcs = [
"../svg/emoji_u1fa86.svg", "../svg/emoji_u1fa86.svg",
"../svg/emoji_u1fa87.svg", "../svg/emoji_u1fa87.svg",
"../svg/emoji_u1fa88.svg", "../svg/emoji_u1fa88.svg",
"../svg/emoji_u1fa89.svg",
"../svg/emoji_u1fa8f.svg",
"../svg/emoji_u1fa90.svg", "../svg/emoji_u1fa90.svg",
"../svg/emoji_u1fa91.svg", "../svg/emoji_u1fa91.svg",
"../svg/emoji_u1fa92.svg", "../svg/emoji_u1fa92.svg",
@ -3227,6 +3229,7 @@ srcs = [
"../svg/emoji_u1fabb.svg", "../svg/emoji_u1fabb.svg",
"../svg/emoji_u1fabc.svg", "../svg/emoji_u1fabc.svg",
"../svg/emoji_u1fabd.svg", "../svg/emoji_u1fabd.svg",
"../svg/emoji_u1fabe.svg",
"../svg/emoji_u1fabf.svg", "../svg/emoji_u1fabf.svg",
"../svg/emoji_u1fac0.svg", "../svg/emoji_u1fac0.svg",
"../svg/emoji_u1fac1.svg", "../svg/emoji_u1fac1.svg",
@ -3249,6 +3252,7 @@ srcs = [
"../svg/emoji_u1fac5_1f3fd.svg", "../svg/emoji_u1fac5_1f3fd.svg",
"../svg/emoji_u1fac5_1f3fe.svg", "../svg/emoji_u1fac5_1f3fe.svg",
"../svg/emoji_u1fac5_1f3ff.svg", "../svg/emoji_u1fac5_1f3ff.svg",
"../svg/emoji_u1fac6.svg",
"../svg/emoji_u1face.svg", "../svg/emoji_u1face.svg",
"../svg/emoji_u1facf.svg", "../svg/emoji_u1facf.svg",
"../svg/emoji_u1fad0.svg", "../svg/emoji_u1fad0.svg",
@ -3263,6 +3267,8 @@ srcs = [
"../svg/emoji_u1fad9.svg", "../svg/emoji_u1fad9.svg",
"../svg/emoji_u1fada.svg", "../svg/emoji_u1fada.svg",
"../svg/emoji_u1fadb.svg", "../svg/emoji_u1fadb.svg",
"../svg/emoji_u1fadc.svg",
"../svg/emoji_u1fadf.svg",
"../svg/emoji_u1fae0.svg", "../svg/emoji_u1fae0.svg",
"../svg/emoji_u1fae1.svg", "../svg/emoji_u1fae1.svg",
"../svg/emoji_u1fae2.svg", "../svg/emoji_u1fae2.svg",
@ -3272,6 +3278,7 @@ srcs = [
"../svg/emoji_u1fae6.svg", "../svg/emoji_u1fae6.svg",
"../svg/emoji_u1fae7.svg", "../svg/emoji_u1fae7.svg",
"../svg/emoji_u1fae8.svg", "../svg/emoji_u1fae8.svg",
"../svg/emoji_u1fae9.svg",
"../svg/emoji_u1faf0.svg", "../svg/emoji_u1faf0.svg",
"../svg/emoji_u1faf0_1f3fb.svg", "../svg/emoji_u1faf0_1f3fb.svg",
"../svg/emoji_u1faf0_1f3fc.svg", "../svg/emoji_u1faf0_1f3fc.svg",

36
flags-only-unicodes.txt Normal file
View file

@ -0,0 +1,36 @@
U+1f1e6
U+1f1e7
U+1f1e8
U+1f1e9
U+1f1ea
U+1f1eb
U+1f1ec
U+1f1ed
U+1f1ee
U+1f1ef
U+1f1f0
U+1f1f1
U+1f1f2
U+1f1f3
U+1f1f4
U+1f1f5
U+1f1f6
U+1f1f7
U+1f1f8
U+1f1f9
U+1f1fa
U+1f1fb
U+1f1fc
U+1f1fd
U+1f1fe
U+1f1ff
U+fe4e5
U+fe4e6
U+fe4e7
U+fe4e8
U+fe4e9
U+fe4ea
U+fe4eb
U+fe4ec
U+fe4ed
U+fe4ee

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

60
full_rebuild.sh Executable file
View file

@ -0,0 +1,60 @@
#!/usr/bin/env bash
set -e
set -v
# We have to have hb-subset on PATH
which hb-subset
# Build the CBDT font
rm -rf venv # in case you have an old borked venv!
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
rm -rf emojicompat
git clone git@github.com:googlefonts/emojicompat.git
pip install emojicompat/
# Validation
python size_check.py
rm -rf build/ && time make -j 48
# Should take 2-3 minutes to create noto-emoji/NotoColorEmoji.ttf
mv *.ttf fonts/
# make noflags CBDT font
rm fonts/NotoColorEmoji-noflags.ttf
python drop_flags.py fonts/NotoColorEmoji.ttf
# Build the COLRv1 font (slow)
python colrv1_generate_configs.py
git diff colrv1/*.toml
# Compile the fonts
# Should take ~20 minutes
(cd colrv1 && rm -rf build/ && time nanoemoji *.toml)
cp colrv1/build/NotoColorEmoji.ttf fonts/Noto-COLRv1.ttf
cp colrv1/build/NotoColorEmoji-noflags.ttf fonts/Noto-COLRv1-noflags.ttf
# Post-process them
python colrv1_postproc.py
# Produce emojicompat variants
# Add support for new sequences per https://github.com/googlefonts/emojicompat#support-new-unicode-sequences
pushd fonts
cp NotoColorEmoji.ttf NotoColorEmoji-emojicompat.ttf
cp Noto-COLRv1.ttf Noto-COLRv1-emojicompat.ttf
emojicompat --op setup --font NotoColorEmoji-emojicompat.ttf
emojicompat --op setup --font Noto-COLRv1-emojicompat.ttf
emojicompat --op check --font NotoColorEmoji-emojicompat.ttf
emojicompat --op check --font Noto-COLRv1-emojicompat.ttf
popd
hb-subset --unicodes-file=flags-only-unicodes.txt \
--output-file=fonts/NotoColorEmoji-flagsonly.ttf \
fonts/NotoColorEmoji.ttf
python update_flag_name.py

Binary file not shown.

Before

Width:  |  Height:  |  Size: 662 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5 KiB

Some files were not shown because too many files have changed in this diff Show more