Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparing v0.13.0 stable release #4959

Merged
merged 4 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
Below are the noteworthy changes from each release.
A more detailed list of changes is available in the corresponding milestones for each release in the Github issue tracker (https://github.com/googlefonts/fontbakery/milestones?state=closed).

## Upcoming release: 0.13.0 (2024-Dec-??)
## Upcoming release: 0.13.1 (2025-Jan-??)
- ...


## 0.13.0 (2025-Jan-10)
### Stable release notes
To see the full list of changes, please read below the changelog entries of these pre-releases of v0.13.0:
- 0.13.0a7 (2024-Dec-29)
- 0.13.0a6 (2024-Dec-03)
- 0.13.0a5 (2024-Nov-10)
- 0.13.0a4 (2024-Nov-06)
- 0.13.0a3 (2024-Oct-25)
- 0.13.0a2 (2024-Oct-16)
- 0.13.0a1 (2024-Sep-19)
- 0.13.0a0 (2024-Sep-13)


## 0.13.0a7 (2024-Dec-29)
### Noteworthy code-changes
- Created a dictionary at `Lib/fontbakery/legacy_checkids.py` that documents the renaming of checks-IDs that is happenning between versions v0.12.10 and v0.13.0 (PR #4929)
Expand Down
9 changes: 5 additions & 4 deletions Lib/fontbakery/checks/file_size.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,20 @@
)
def check_file_size(font):
"""Ensure files are not too large."""

# pytype: disable=name-error
size = os.stat(font.file).st_size
if size > FAIL_SIZE: # noqa:F821 pylint:disable=E0602
if size > (FAIL_SIZE or 9 * 1024 * 1024): # noqa:F821 pylint:disable=E0602
yield FAIL, Message(
"massive-font",
f"Font file is {filesize_formatting(size)}, larger than limit"
f" {filesize_formatting(FAIL_SIZE)}", # noqa:F821 pylint:disable=E0602
f" {filesize_formatting(FAIL_SIZE or 9 * 1024 * 1024)}", # noqa:F821 pylint:disable=E0602
)
elif size > WARN_SIZE: # noqa:F821 pylint:disable=E0602
elif size > (WARN_SIZE or 1 * 1024 * 1024): # noqa:F821 pylint:disable=E0602
yield WARN, Message(
"large-font",
f"Font file is {filesize_formatting(size)}; ideally it should be less than"
f" {filesize_formatting(WARN_SIZE)}", # noqa:F821 pylint:disable=E0602
f" {filesize_formatting(WARN_SIZE or 1 * 1024 * 1024)}", # noqa:F821 pylint:disable=E0602
)
else:
yield PASS, "Font had a reasonable file size"
Expand Down
32 changes: 22 additions & 10 deletions Lib/fontbakery/data/fontbakery-microsoft-vendorlist.cache
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
<meta name="feedback_help_link_url" content="" />
<meta name="feedback_product_url" content="" />
<meta name="feedback_system" content="Standard" />
<meta name="git_commit_id" content="4d3b7b392514027d044a59ed84cd64aa584c0b4d" />
<meta name="gitcommit" content="https://github.com/MicrosoftDocs/typography/blob/4d3b7b392514027d044a59ed84cd64aa584c0b4d/typographydocs/vendors/index.md" />
<meta name="git_commit_id" content="8cb246a55ad999b6ad6a17715a204c57c3156a9d" />
<meta name="gitcommit" content="https://github.com/MicrosoftDocs/typography/blob/8cb246a55ad999b6ad6a17715a204c57c3156a9d/typographydocs/vendors/index.md" />
<meta name="keywords" content="typography" />
<meta name="locale" content="en-us" />
<meta name="ms.author" content="alib" />
<meta name="ms.date" content="11/19/2024" />
<meta name="ms.date" content="01/08/2025" />
<meta name="ms.service" content="typography" />
<meta name="ms.topic" content="article" />
<meta name="original_content_git_url" content="https://github.com/MicrosoftDocs/typography/blob/live/typographydocs/vendors/index.md" />
Expand All @@ -46,8 +46,8 @@
<meta name="source-file" content="http://www.microsoft.com/typography/links/links.aspx" />
<meta name="toc_rel" content="../toc.json" />
<meta name="uhfHeaderId" content="MSDocsHeader-MSTypography" />
<meta name="updated_at" content="2024-11-19 05:30 PM" />
<meta name="word_count" content="5085" />
<meta name="updated_at" content="2025-01-09 02:54 PM" />
<meta name="word_count" content="5096" />
<meta name="persistent_id" content="9118132d-6b83-bbdf-1939-3e660d31ce3e" />

<meta name="cmProducts" content="https://microsoft-devrel.poolparty.biz/DevRelOfferingOntology/c0439c36-80e3-415f-8e4c-6951e3f1b136" data-source="generated" />
Expand All @@ -57,7 +57,7 @@
<meta name="spProducts" content="https://microsoft-devrel.poolparty.biz/DevRelOfferingOntology/2812d699-d85f-4a7f-839d-44e218b35d24" data-source="generated" />
<meta name="spProducts" content="https://microsoft-devrel.poolparty.biz/DevRelOfferingOntology/3f56b378-07a9-4fa1-afe8-9889fdc77628" data-source="generated" />
<meta name="spProducts" content="https://authoring-docs-microsoft.poolparty.biz/devrel/57828563-e363-48c1-ac42-c4d23fb7ba52" data-source="generated" />
<meta name="scope" content="typography" /><meta name="github_feedback_content_git_url" content="https://github.com/MicrosoftDocs/typography/blob/live/typographydocs/vendors/index.md" /><link href="https://learn.microsoft.com/en-us/typography/vendors/" rel="canonical"><title>Registered font vendors - Typography | Microsoft Learn</title><link rel="stylesheet" href="/static/assets/0.4.028726178/styles/site-ltr.css">
<meta name="scope" content="typography" /><meta name="github_feedback_content_git_url" content="https://github.com/MicrosoftDocs/typography/blob/live/typographydocs/vendors/index.md" /><link href="https://learn.microsoft.com/en-us/typography/vendors/" rel="canonical"><title>Registered font vendors - Typography | Microsoft Learn</title><link rel="stylesheet" href="/static/assets/0.4.029026183/styles/site-ltr.css">

<script id="msdocs-script">
var msDocs = {environment: {
Expand Down Expand Up @@ -92,11 +92,11 @@
hasBookmark: true,
hasShare: true,
isPermissioned: false,
isPrivateUnauthorized: false,hasRecommendations: true,contributors: [{ name: "alib-ms", url: "https://github.com/alib-ms" },{ name: "DhurataJ", url: "https://github.com/DhurataJ" },{ name: "kturetz", url: "https://github.com/kturetz" },{ name: "PeterCon", url: "https://github.com/PeterCon" },{ name: "WorkNihar", url: "https://github.com/WorkNihar" },{ name: "mijacobs", url: "https://github.com/mijacobs" },{ name: "v-nihar", url: "https://github.com/v-nihar" },{ name: "VSC-Service-Account", url: "https://github.com/VSC-Service-Account" }],},
isPrivateUnauthorized: false,hasRecommendations: true,contributors: [{ name: "alib-ms", url: "https://github.com/alib-ms" },{ name: "DhurataJ", url: "https://github.com/DhurataJ" },{ name: "kturetz", url: "https://github.com/kturetz" },{ name: "PeterCon", url: "https://github.com/PeterCon" },{ name: "WorkNihar", url: "https://github.com/WorkNihar" },{ name: "mijacobs", url: "https://github.com/mijacobs" },{ name: "v-nihar", url: "https://github.com/v-nihar" }],},
functions:{}
};
</script><script src="https://wcpstatic.microsoft.com/mscc/lib/v2/wcp-consent.js"></script>
<script src="https://js.monitor.azure.com/scripts/c/ms.jsll-4.min.js"></script><script src="/static/assets/0.4.028726178/global/deprecation.js"></script><script src="/static/assets/0.4.028726178/scripts/en-us/index-docs.js"></script></head>
<script src="https://js.monitor.azure.com/scripts/c/ms.jsll-4.min.js"></script><script src="/static/assets/0.4.029026183/global/deprecation.js"></script><script src="/static/assets/0.4.029026183/scripts/en-us/index-docs.js"></script></head>

<body lang="en-us" dir="ltr">
<div class="header-holder has-default-focus">
Expand Down Expand Up @@ -336,9 +336,9 @@

<div class="content "><h1 id="registered-font-vendors">Registered font vendors</h1><div class="display-flex justify-content-space-between align-items-center flex-wrap-wrap page-metadata-container">
<div class="margin-right-xxs">
<ul class="metadata page-metadata" data-bi-name="page info" lang="en-us" dir="ltr"><li>Article</li><li class="visibility-hidden-visual-diff"><time class="is-invisible" data-article-date aria-label="Article review date" datetime="2024-11-19T08:00:00Z" data-article-date-source="calculated">11/19/2024</time>
<ul class="metadata page-metadata" data-bi-name="page info" lang="en-us" dir="ltr"><li>Article</li><li class="visibility-hidden-visual-diff"><time class="is-invisible" data-article-date aria-label="Article review date" datetime="2025-01-08T08:00:00Z" data-article-date-source="calculated">01/08/2025</time>
</li><li class="contributors-holder display-none-print">
<button aria-label="View all contributors" class="contributors-button link-button" data-bi-name="contributors" title="View all contributors">8 contributors</button>
<button aria-label="View all contributors" class="contributors-button link-button" data-bi-name="contributors" title="View all contributors">7 contributors</button>
</li></ul>
</div>
<div id="user-feedback" class="margin-block-xxs display-none-print" data-hide-on-archived>
Expand Down Expand Up @@ -1623,6 +1623,10 @@
<td><a href="https://www.commatype.com/" data-linktype="external">Comma Type</a></td>
</tr>
<tr>
<td>CNK</td>
<td><a href="https://www.cinketype.com/" data-linktype="external">Cinketype</a></td>
</tr>
<tr>
<td>CNTY</td>
<td><a href="http://www.cntype.com/" data-linktype="external">CNTYPE</a></td>
</tr>
Expand Down Expand Up @@ -2931,6 +2935,10 @@
<td><a href="http://www.haikumonkey.net" data-linktype="external">Haiku Monkey</a></td>
</tr>
<tr>
<td>HN</td>
<td><a href="https://www.behance.net/horanocte" data-linktype="external">Hora Nocte Type Foundry</a></td>
</tr>
<tr>
<td>HOH</td>
<td>HOHOHtype</td>
</tr>
Expand Down Expand Up @@ -3819,6 +3827,10 @@
<td><a href="https://www.lettersoup.de/" data-linktype="external">lettersoup</a></td>
</tr>
<tr>
<td>LST</td>
<td><a href="https://studio-laucke-siebein.com/type" data-linktype="external">Laucke Siebein Type</a></td>
</tr>
<tr>
<td>LT</td>
<td><a href="http://www.typophage.com/" data-linktype="external">Le Typophage</a></td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# The short X.Y version
version = "0.13"
# The full version, including alpha/beta/rc tags
release = "0.13.0a7"
release = "0.13.0"


# -- General configuration ---------------------------------------------------
Expand Down
Loading