Skip to content

Commit

Permalink
Merge pull request #165 from ruedap/release/v5.15.0.0
Browse files Browse the repository at this point in the history
Based on Font Awesome 5.15.0
  • Loading branch information
ruedap authored Sep 29, 2020
2 parents d5b0149 + 9da00aa commit e4a8895
Show file tree
Hide file tree
Showing 22 changed files with 475 additions and 108 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ You can incrementally search for [Font Awesome icons](https://fontawesome.com/ch

Download **[Font-Awesome.alfredworkflow](https://github.com/ruedap/alfred-font-awesome-workflow/releases/latest)** and import to [Alfred](http://www.alfredapp.com/) (requires Powerpack).

The current supported version is **Font Awesome 5.14.0 Free**. Previous versions are available [here](https://github.com/ruedap/alfred-font-awesome-workflow/releases/latest).
The current supported version is **Font Awesome 5.15.0 Free**. Previous versions are available [here](https://github.com/ruedap/alfred-font-awesome-workflow/releases/latest).

#### macOS Catalina refuses to run unsigned binaries by default

Expand Down
563 changes: 464 additions & 99 deletions assets/icons.json

Large diffs are not rendered by default.

Binary file removed assets/icons/brands/adobe.png
Binary file not shown.
Binary file added assets/icons/brands/cloudflare.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/brands/guilded.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/brands/hive.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/brands/innosoft.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/brands/instalod.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/icons/brands/ns8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/brands/octopus-deploy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/brands/perbyte.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/icons/brands/rocketchat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/brands/uncharted.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/brands/watchman-monitoring.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/brands/wodu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/solid/vest-patches.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icons/solid/vest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions assets/info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<plist version="1.0">
<dict>
<key>name</key>
<string>Font Awesome 5.14.0.2</string>
<string>Font Awesome 5.15.0.0</string>
<key>version</key>
<string>5.14.0.2</string>
<string>5.15.0.0</string>
<key>webaddress</key>
<string>https://github.com/ruedap/alfred-font-awesome-workflow</string>
<key>readme</key>
Expand Down
2 changes: 1 addition & 1 deletion font-awesome
Submodule font-awesome updated 3406 files
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@
"utils:json": "ts-node ./utils/converters/icons_json.ts",
"utils:svg2png": "rimraf ./assets/icons && make-dir ./assets/icons && ts-node ./utils/converters/svg_to_png.ts",
"utils:composite": "ts-node ./utils/converters/composite.ts",
"utils:icons": "npm run utils:svg2png && npm run utils:composite",
"var:encoded_query": "cross-env-shell \"echo \\\"${npm_package_config_encoded_query}\\\"\""
"var:encoded_query": "cross-env-shell \"echo \\\"${npm_package_config_encoded_query}\\\"\"",
"release:json": "npm run utils",
"release:icons": "npm run utils:svg2png && npm run utils:composite",
"release:build": "npm run build:open"
},
"config": {
"encoded_query": "eyJuYW1lIjoiZm9udC1hd2Vzb21lIiwic3R5bGUiOiJicmFuZHMifQ\\=\\="
Expand Down
4 changes: 2 additions & 2 deletions src/assets/icons_object.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { getAllIconsJson, getAllIconsObject } from "./icons_object";
describe("getAllIconsJson()", () => {
test("length", () => {
const actual = getAllIconsJson();
expect(Object.keys(actual).length).toBe(1448);
expect(Object.keys(actual).length).toBe(1459);
});

test("font-awesome icon", () => {
Expand Down Expand Up @@ -78,7 +78,7 @@ describe("getAllIconsJson()", () => {
describe("getAllIconsObject()", () => {
test("length", () => {
const obj = getAllIconsObject();
expect(obj.length).toBe(1601);
expect(obj.length).toBe(1612);
});

test("font-awesome icon", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/icons.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ test("toResponseItem()", () => {

test("getAllIcons()", () => {
const allIcons = getAllIcons();
expect(allIcons.items.length).toBe(1601);
expect(allIcons.items.length).toBe(1612);

const actual = allIcons.items.find((icon) => icon.title === "font-awesome");
const expected = {
Expand Down

0 comments on commit e4a8895

Please sign in to comment.