Skip to content

Commit

Permalink
v1.1.234
Browse files Browse the repository at this point in the history
  • Loading branch information
davidxuang committed Apr 7, 2024
1 parent 1c16419 commit 6cbac2b
Show file tree
Hide file tree
Showing 10 changed files with 68 additions and 39 deletions.
Binary file modified seagull-icons/assets/FluentSystemIcons.ttf
Binary file not shown.
Binary file modified seagull-icons/assets/SeagullFluentIcons.ttf
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions seagull-icons/override/universal/ic_fluent_run_filled.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions seagull-icons/override/universal/ic_fluent_run_regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 8 additions & 7 deletions seagull-icons/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,14 @@ fs.readdirSync(argv.source, { recursive: true }).forEach((f) => {
doc.svg.$$.map((e) => getPathData(e as Visible)).join()
);
const bounds = item.bounds;
if (
bounds.left < -tolerance ||
bounds.top < -tolerance ||
bounds.right > 16 + tolerance ||
bounds.bottom > 16 + tolerance
) {
console.warn(`${file}: ${bounds}`);
const out_bound = Math.max(
-bounds.left,
-bounds.top,
bounds.right - 16,
bounds.bottom - 16
);
if (out_bound > tolerance) {
console.warn(`[${out_bound.toFixed(4)}] ${file}: ${bounds}`);
}

item.remove();
Expand Down
Loading

0 comments on commit 6cbac2b

Please sign in to comment.