Skip to content

Commit f66b64e

Browse files
authored
Merge pull request #123 from ruedap/release/v1.1.0.0
Based on Bootstrap Icons 1.1.0
2 parents 6cc72d7 + 94d26c4 commit f66b64e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+503
-23
lines changed

README.md

+1-1

assets/icons.json

+496-16
Large diffs are not rendered by default.

assets/icons/arrow-up-square-fill.png

33 Bytes

assets/icons/emoji-angry-fill.png

1.15 KB

assets/icons/emoji-dizzy-fill.png

1.02 KB
824 Bytes

assets/icons/emoji-frown-fill.png

1.1 KB
1.13 KB

assets/icons/emoji-heart-eyes.png

1.52 KB

assets/icons/emoji-laughing-fill.png

1009 Bytes

assets/icons/emoji-neutral-fill.png

898 Bytes

assets/icons/emoji-smile-fill.png

1.12 KB
1.05 KB
1.13 KB

assets/icons/emoji-wink-fill.png

1.03 KB

assets/icons/emoji-wink.png

1.49 KB

assets/icons/file-bar-graph-fill.png

413 Bytes

assets/icons/file-bar-graph.png

467 Bytes
-67 Bytes
-78 Bytes
551 Bytes
571 Bytes
-47 Bytes
-36 Bytes
-67 Bytes
-18 Bytes
776 Bytes

assets/icons/file-earmark-excel.png

811 Bytes
-27 Bytes
-50 Bytes
790 Bytes

assets/icons/file-earmark-ppt.png

818 Bytes
-49 Bytes
-50 Bytes
-50 Bytes
-19 Bytes
1001 Bytes

assets/icons/file-earmark-word.png

1.02 KB
-76 Bytes

assets/icons/file-excel-fill.png

653 Bytes

assets/icons/file-excel.png

717 Bytes

assets/icons/file-ppt-fill.png

606 Bytes

assets/icons/file-ppt.png

656 Bytes

assets/icons/file-word-fill.png

866 Bytes

assets/icons/file-word.png

960 Bytes

assets/icons/grip-horizontal.png

5 Bytes

assets/icons/grip-vertical.png

-5 Bytes
617 Bytes

assets/icons/journal-bookmark.png

647 Bytes

assets/info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<plist version="1.0">
44
<dict>
55
<key>name</key>
6-
<string>Bootstrap Icons 1.0.0.2</string>
6+
<string>Bootstrap Icons 1.1.0.0</string>
77
<key>version</key>
8-
<string>1.0.0.2</string>
8+
<string>1.1.0.0</string>
99
<key>webaddress</key>
1010
<string>https://github.com/ruedap/alfred-bootstrap-icons-workflow</string>
1111
<key>readme</key>

bootstrap-icons

Submodule bootstrap-icons updated 95 files

src/assets/icons/png_files.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import fg from "fast-glob";
33
describe("./assets/icons/*.png", () => {
44
test("length", () => {
55
const icons: string[] = fg.sync("./assets/icons/*.png");
6-
expect(icons.length).toBe(1120);
6+
expect(icons.length).toBe(1151);
77
});
88
});

src/assets/icons_object.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { getAllIconsObject } from "./icons_object";
33
describe("getAllIconsObject()", () => {
44
test("length", () => {
55
const obj = getAllIconsObject();
6-
expect(obj.length).toBe(1120);
6+
expect(obj.length).toBe(1151);
77
});
88

99
test("icon: bootstrap", () => {

src/icons.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ test("toResponseItem()", () => {
2424

2525
test("getAllIcons()", () => {
2626
const allIcons = getAllIcons();
27-
expect(allIcons.items.length).toBe(1120);
27+
expect(allIcons.items.length).toBe(1151);
2828

2929
const actual = allIcons.items.find((icon) => icon.arg === "bootstrap");
3030
const expected = {

0 commit comments

Comments
 (0)