Skip to content
This repository was archived by the owner on Feb 25, 2024. It is now read-only.

Commit fa1c1af

Browse files
authored
Add history icons (#41)
1 parent 4e858d3 commit fa1c1af

File tree

17 files changed

+1107
-409
lines changed

17 files changed

+1107
-409
lines changed

assets/ui_icons.ttf

1.84 KB
Binary file not shown.

doc/icon_list.md

+13-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ Icon preview | Icon name | Usage
99
![addon](../icons/addon.svg) | addon | `YaruIcons.addon`
1010
![address_book](../icons/address-book.svg) | address book | `YaruIcons.address_book`
1111
![app_grid](../icons/app-grid.svg) | app grid | `YaruIcons.app_grid`
12-
![audio](../icons/audio.svg) | audio | `YaruIcons.audio`
12+
![audio_history](../icons/audio/history.svg) | audio history | `YaruIcons.audio_history`
13+
![audio](../icons/audio/_.svg) | audio | `YaruIcons.audio`
1314
![battery_level_0_charging](../icons/battery/level-0-charging.svg) | battery level 0 charging | `YaruIcons.battery_level_0_charging`
1415
![battery_level_0](../icons/battery/level-0.svg) | battery level 0 | `YaruIcons.battery_level_0`
1516
![battery_level_100_charging](../icons/battery/level-100-charging.svg) | battery level 100 charging | `YaruIcons.battery_level_100_charging`
@@ -66,9 +67,11 @@ Icon preview | Icon name | Usage
6667
![desktop_screensaver](../icons/desktop/screensaver.svg) | desktop screensaver | `YaruIcons.desktop_screensaver`
6768
![desktop](../icons/desktop/_.svg) | desktop | `YaruIcons.desktop`
6869
![desktop_wallpaper](../icons/desktop/wallpaper.svg) | desktop wallpaper | `YaruIcons.desktop_wallpaper`
70+
![document_history](../icons/document/history.svg) | document history | `YaruIcons.document_history`
6971
![document_open](../icons/document/open.svg) | document open | `YaruIcons.document_open`
7072
![document](../icons/document/_.svg) | document | `YaruIcons.document`
71-
![download](../icons/download.svg) | download | `YaruIcons.download`
73+
![download_history](../icons/download/history.svg) | download history | `YaruIcons.download_history`
74+
![download](../icons/download/_.svg) | download | `YaruIcons.download`
7275
![drag_handle](../icons/drag-handle.svg) | drag handle | `YaruIcons.drag_handle`
7376
![drive_harddisk_filled](../icons/drive/harddisk-filled.svg) | drive harddisk filled | `YaruIcons.drive_harddisk_filled`
7477
![drive_harddisk](../icons/drive/harddisk.svg) | drive harddisk | `YaruIcons.drive_harddisk`
@@ -159,12 +162,14 @@ Icon preview | Icon name | Usage
159162
![heart](../icons/heart.svg) | heart | `YaruIcons.heart`
160163
![hide_filled](../icons/hide-filled.svg) | hide filled | `YaruIcons.hide_filled`
161164
![hide](../icons/hide.svg) | hide | `YaruIcons.hide`
165+
![history](../icons/history.svg) | history | `YaruIcons.history`
162166
![home_filled](../icons/home-filled.svg) | home filled | `YaruIcons.home_filled`
163167
![home](../icons/home.svg) | home | `YaruIcons.home`
164168
![hourglass_filled](../icons/hourglass-filled.svg) | hourglass filled | `YaruIcons.hourglass_filled`
165169
![hourglass](../icons/hourglass.svg) | hourglass | `YaruIcons.hourglass`
166-
![image_filled](../icons/image-filled.svg) | image filled | `YaruIcons.image_filled`
167-
![image](../icons/image.svg) | image | `YaruIcons.image`
170+
![image_filled](../icons/image/filled.svg) | image filled | `YaruIcons.image_filled`
171+
![image_history](../icons/image/history.svg) | image history | `YaruIcons.image_history`
172+
![image](../icons/image/_.svg) | image | `YaruIcons.image`
168173
![information_filled](../icons/information-filled.svg) | information filled | `YaruIcons.information_filled`
169174
![information](../icons/information.svg) | information | `YaruIcons.information`
170175
![input_dialpad](../icons/input/dialpad.svg) | input dialpad | `YaruIcons.input_dialpad`
@@ -325,7 +330,8 @@ Icon preview | Icon name | Usage
325330
![rss](../icons/rss.svg) | rss | `YaruIcons.rss`
326331
![save_as](../icons/save/as.svg) | save as | `YaruIcons.save_as`
327332
![save](../icons/save/_.svg) | save | `YaruIcons.save`
328-
![search](../icons/search.svg) | search | `YaruIcons.search`
333+
![search_history](../icons/search/history.svg) | search history | `YaruIcons.search_history`
334+
![search](../icons/search/_.svg) | search | `YaruIcons.search`
329335
![selection](../icons/selection.svg) | selection | `YaruIcons.selection`
330336
![server](../icons/server.svg) | server | `YaruIcons.server`
331337
![settings_filled](../icons/settings-filled.svg) | settings filled | `YaruIcons.settings_filled`
@@ -376,7 +382,8 @@ Icon preview | Icon name | Usage
376382
![ubuntu_logo](../icons/ubuntu-logo/_.svg) | ubuntu logo | `YaruIcons.ubuntu_logo`
377383
![users](../icons/users.svg) | users | `YaruIcons.users`
378384
![user](../icons/user.svg) | user | `YaruIcons.user`
379-
![video](../icons/video.svg) | video | `YaruIcons.video`
385+
![video_history](../icons/video/history.svg) | video history | `YaruIcons.video_history`
386+
![video](../icons/video/_.svg) | video | `YaruIcons.video`
380387
![view_filled](../icons/view-filled.svg) | view filled | `YaruIcons.view_filled`
381388
![view_fullscreen](../icons/view/fullscreen.svg) | view fullscreen | `YaruIcons.view_fullscreen`
382389
![view_more_horizontal](../icons/view-more/horizontal.svg) | view more horizontal | `YaruIcons.view_more_horizontal`

example/lib/main.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class _YaruIconsGridState extends State<YaruIconsGrid>
3030
late AnimationController _controller;
3131

3232
static const _from = 0xf101;
33-
static const _to = 0xf298;
33+
static const _to = 0xf29f;
3434

3535
double _iconsSize = 24;
3636
bool _isMinIconsSize() => _iconsSize <= 16 ? true : false;
File renamed without changes.

icons/audio/history.svg

+101
Loading

icons/document/history.svg

+101
Loading
File renamed without changes.

icons/download/history.svg

+107
Loading

0 commit comments

Comments
 (0)