diff --git a/README.md b/README.md index 2a491df5..aac3db6f 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,8 @@ export const obsidianExportPath = '/.obsidian/plugins/obsidian-iconize/'; ``` +Make sure you create the directory specified in that variable if it does not exist yet. + Afterwards, you can start the rollup dev server by using: ```sh diff --git a/src/iconPacks.ts b/src/iconPacks.ts index 351de32b..3f0f804a 100644 --- a/src/iconPacks.ts +++ b/src/iconPacks.ts @@ -9,50 +9,50 @@ export default { faBrands: { name: 'font-awesome-brands', displayName: 'FontAwesome Brands', - path: 'fontawesome-free-6.0.0-web/svgs/brands/', - downloadLink: 'https://github.com/FortAwesome/Font-Awesome/releases/download/6.0.0/fontawesome-free-6.0.0-web.zip', + path: 'fontawesome-free-6.4.2-web/svgs/brands/', + downloadLink: 'https://github.com/FortAwesome/Font-Awesome/releases/download/6.4.2/fontawesome-free-6.4.2-web.zip', }, faRegular: { name: 'font-awesome-regular', displayName: 'FontAwesome Regular', - path: 'fontawesome-free-6.0.0-web/svgs/regular/', - downloadLink: 'https://github.com/FortAwesome/Font-Awesome/releases/download/6.0.0/fontawesome-free-6.0.0-web.zip', + path: 'fontawesome-free-6.4.2-web/svgs/regular/', + downloadLink: 'https://github.com/FortAwesome/Font-Awesome/releases/download/6.4.2/fontawesome-free-6.4.2-web.zip', }, faSolid: { name: 'font-awesome-solid', displayName: 'FontAwesome Solid', - path: 'fontawesome-free-6.0.0-web/svgs/solid/', - downloadLink: 'https://github.com/FortAwesome/Font-Awesome/releases/download/6.0.0/fontawesome-free-6.0.0-web.zip', + path: 'fontawesome-free-6.4.2-web/svgs/solid/', + downloadLink: 'https://github.com/FortAwesome/Font-Awesome/releases/download/6.4.2/fontawesome-free-6.4.2-web.zip', }, remixIcons: { name: 'remix-icons', displayName: 'Remix Icons', path: '', - downloadLink: 'https://github.com/Remix-Design/RemixIcon/releases/download/v2.5.0/RemixIcon_SVG_v2.5.0.zip', + downloadLink: 'https://github.com/Remix-Design/RemixIcon/releases/download/v3.5.0/RemixIcon_Svg_v3.5.0.zip', }, iconBrew: { name: 'icon-brew', displayName: 'Icon Brew', path: '', - downloadLink: 'https://github.com/FlorianWoelki/obsidian-icon-folder/raw/main/iconPacks/icon-brew.zip', + downloadLink: 'https://github.com/FlorianWoelki/obsidian-iconize/raw/main/iconPacks/icon-brew.zip', }, /* https://simpleicons.org/ */ simpleIcons: { name: 'simple-icons', displayName: 'Simple Icons', path: 'icons', - downloadLink: 'https://github.com/simple-icons/simple-icons/archive/refs/tags/7.15.0.zip', + downloadLink: 'https://github.com/simple-icons/simple-icons/archive/refs/tags/9.14.0.zip', }, lucide: { name: 'lucide-icons', displayName: 'Lucide', path: '', - downloadLink: 'https://github.com/lucide-icons/lucide/releases/download/v0.122.0/lucide-icons-0.122.0.zip', + downloadLink: 'https://github.com/lucide-icons/lucide/releases/download/0.277.0/lucide-icons-0.277.0.zip', }, tablerIcons: { name: 'tabler-icons', displayName: 'Tabler Icons', path: 'svg', - downloadLink: 'https://github.com/tabler/tabler-icons/releases/download/v2.17.0/tabler-icons-2.17.0.zip', + downloadLink: 'https://github.com/tabler/tabler-icons/releases/download/v2.34.0/tabler-icons-2.34.0.zip', }, } as { [key: string]: IconPack };