Skip to content

Commit

Permalink
Merge pull request #193 from ruedap/release/v5.15.1.1
Browse files Browse the repository at this point in the history
Based on Font Awesome 5.15.1
  • Loading branch information
ruedap committed Oct 25, 2020
2 parents 1d0eb00 + f736563 commit cc6825d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
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.15.1.0</string>
<string>Font Awesome 5.15.1.1</string>
<key>version</key>
<string>5.15.1.0</string>
<string>5.15.1.1</string>
<key>webaddress</key>
<string>https://github.com/ruedap/alfred-font-awesome-workflow</string>
<key>readme</key>
Expand Down
10 changes: 4 additions & 6 deletions utils/converters/composite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,13 @@ const minify = async (paths: string[]) => {
const main = async () => {
const paths = INPUT_PNG_PATHS;

console.log("start composite");
console.log("Compositing is progress...");
await composite(paths);
console.log("end composite");
console.log("Composited successfully.");

console.log("start minify");
console.log("Minifying is progress...");
await minify(paths);
console.log("end minify");

console.log("composite is complete");
console.log("Minified successfully.");
};

main();
4 changes: 3 additions & 1 deletion utils/converters/icons_json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ const main = () => {
fs.copyFileSync(INPUT_ICONS_JSON_PATH, OUTPUT_ICONS_JSON_PATH);
const json = JSON.parse(String(fs.readFileSync(OUTPUT_ICONS_JSON_PATH)));
console.log(
`Output ${OUTPUT_ICONS_JSON_PATH} for ${Object.keys(json).length} icons`
`Outputted ${OUTPUT_ICONS_JSON_PATH} of ${
Object.keys(json).length
} icons successfully.`
);
};

Expand Down
2 changes: 1 addition & 1 deletion utils/converters/svg_to_png.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const convert = (svgs: TSvg[]) => {
};

const main = async () => {
console.log("start svg2png");
console.log("SVG2PNG is progress...");

await makeStylesDir(SVGS);

Expand Down

0 comments on commit cc6825d

Please sign in to comment.