update: Icon-folder now uses standard emoji

No more thousands of downloaded icons
This commit is contained in:
Mathis Gauthey
2024-01-04 10:46:39 +01:00
parent b4c801091d
commit 37259eb49a
4 changed files with 1601 additions and 593 deletions

View File

@@ -1,15 +1,15 @@
{ {
"settings": { "settings": {
"migrated": true, "migrated": 3,
"iconPacksPath": ".obsidian/icons", "iconPacksPath": ".obsidian/icons",
"fontSize": 16, "fontSize": 16,
"iconColor": null, "iconColor": null,
"recentlyUsedIcons": [ "recentlyUsedIcons": [
"RiZzzLine", "🌐",
"IbDisplayZoom", "📝",
"RiCalendarCheckLine", "💻",
"IbSquareAndPencil", "©",
"SiGrav" "🗃"
], ],
"recentlyUsedIconsSize": 5, "recentlyUsedIconsSize": 5,
"rules": [], "rules": [],
@@ -26,17 +26,21 @@
"left": 0 "left": 0
}, },
"emojiStyle": "native", "emojiStyle": "native",
"iconInTabsEnabled": false "iconInTabsEnabled": false,
"iconInTitleEnabled": false,
"iconsBackgroundCheckEnabled": false
}, },
"0-Inbox": "FasInbox", "0-Inbox": "📥",
"_Sources": "RiDocumentBookMarkLine", "_Sources": "📚",
"_Media": "RiAttachment2", "_Media": "📎",
"-Daily-Notes": "IbSquareAndPencil", "-Daily-Notes": "📆",
"-Periodic-Notes": "RiCalendarCheckLine", "-Periodic-Notes": "📅",
"1-Projects": "RiCheckboxMultipleLine", "1-Projects": "",
"3-Resources": "RiVipDiamondLine", "3-Resources": "📁",
"4-Archives": "IbArchive", "4-Archives": "🗃",
"5-Templates": "RiCopyrightLine", "5-Templates": "©",
"2-Areas": "IbDisplayZoom", "_Scripts": "💻",
"-Workout_Log": "FasDumbbell" "2-Areas": "🔲",
"0-Fleeting-Notes": "📝",
"_Canvas": "🌐"
} }

File diff suppressed because one or more lines are too long

View File

@@ -1,9 +1,9 @@
{ {
"id": "obsidian-icon-folder", "id": "obsidian-icon-folder",
"name": "Icon Folder", "name": "Iconize",
"version": "2.1.2", "version": "2.6.0",
"minAppVersion": "0.9.12", "minAppVersion": "0.9.12",
"description": "This plugin allows to add an emoji or an icon to a folder or file.", "description": "Add icons to anything you desire in Obsidian, including files, folders, and text.",
"author": "Florian Woelki", "author": "Florian Woelki",
"authorUrl": "https://florianwoelki.com/", "authorUrl": "https://florianwoelki.com/",
"isDesktopOnly": false "isDesktopOnly": false

View File

@@ -52,14 +52,15 @@
flex-direction: column-reverse; flex-direction: column-reverse;
text-align: center; text-align: center;
font-size: 13px; font-size: 13px;
color: gray; color: var(--text-muted);
padding: 16px 8px; padding: 16px 8px;
line-break: auto; line-break: auto;
word-break: break-word; word-break: break-word;
line-height: 1.3; line-height: 1.3;
} }
.obsidian-icon-folder-modal.prompt-results .suggestion-item.suggestion-item__center { .obsidian-icon-folder-modal.prompt-results
.suggestion-item.suggestion-item__center {
justify-content: center; justify-content: center;
} }