From fdc99e5bf619daf46b9f3508827a79e329b0da9b Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 19 Nov 2019 11:39:49 +0100 Subject: Update `README` and `ROADMAP` and add `ECOSYSTEM` --- docs/crates_graph.dot | 12 ---------- docs/crates_graph.png | Bin 40251 -> 0 bytes docs/graphs/core.dot | 13 ++++++++++ docs/graphs/core.png | Bin 0 -> 16123 bytes docs/graphs/ecosystem.dot | 59 ++++++++++++++++++++++++++++++++++++++++++++++ docs/graphs/ecosystem.png | Bin 0 -> 51911 bytes docs/graphs/iced.dot | 47 ++++++++++++++++++++++++++++++++++++ docs/graphs/iced.png | Bin 0 -> 32794 bytes docs/graphs/native.dot | 42 +++++++++++++++++++++++++++++++++ docs/graphs/native.png | Bin 0 -> 27637 bytes docs/graphs/web.dot | 12 ++++++++++ docs/graphs/web.png | Bin 0 -> 13023 bytes docs/graphs/wgpu.dot | 33 ++++++++++++++++++++++++++ docs/graphs/wgpu.png | Bin 0 -> 20091 bytes docs/graphs/winit.dot | 33 ++++++++++++++++++++++++++ docs/graphs/winit.png | Bin 0 -> 17051 bytes 16 files changed, 239 insertions(+), 12 deletions(-) delete mode 100644 docs/crates_graph.dot delete mode 100644 docs/crates_graph.png create mode 100644 docs/graphs/core.dot create mode 100644 docs/graphs/core.png create mode 100644 docs/graphs/ecosystem.dot create mode 100644 docs/graphs/ecosystem.png create mode 100644 docs/graphs/iced.dot create mode 100644 docs/graphs/iced.png create mode 100644 docs/graphs/native.dot create mode 100644 docs/graphs/native.png create mode 100644 docs/graphs/web.dot create mode 100644 docs/graphs/web.png create mode 100644 docs/graphs/wgpu.dot create mode 100644 docs/graphs/wgpu.png create mode 100644 docs/graphs/winit.dot create mode 100644 docs/graphs/winit.png (limited to 'docs') diff --git a/docs/crates_graph.dot b/docs/crates_graph.dot deleted file mode 100644 index 85e375d0..00000000 --- a/docs/crates_graph.dot +++ /dev/null @@ -1,12 +0,0 @@ -digraph G { - "iced_core" -> "iced_native" - "iced_core" -> "iced_web" - "iced_native" -> "iced_wgpu" - "iced_native" -> "iced_winit" - "iced_web" -> "iced" - "iced_wgpu" -> "iced" - "iced_winit" -> "iced" - - node[shape=box]; - "iced" -> "cross-platform application" -} diff --git a/docs/crates_graph.png b/docs/crates_graph.png deleted file mode 100644 index d598c1dd..00000000 Binary files a/docs/crates_graph.png and /dev/null differ diff --git a/docs/graphs/core.dot b/docs/graphs/core.dot new file mode 100644 index 00000000..a52dfbb9 --- /dev/null +++ b/docs/graphs/core.dot @@ -0,0 +1,13 @@ +digraph G { + fontname = "Roboto"; + newrank=true; + node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + + { rank = same; iced_native iced_web } + + iced_core -> iced_native [style=dashed]; + iced_core -> iced_web [style=dashed]; + + iced_core [style=dashed, fontcolor=black]; + +} diff --git a/docs/graphs/core.png b/docs/graphs/core.png new file mode 100644 index 00000000..a5002c9b Binary files /dev/null and b/docs/graphs/core.png differ diff --git a/docs/graphs/ecosystem.dot b/docs/graphs/ecosystem.dot new file mode 100644 index 00000000..e6c1af94 --- /dev/null +++ b/docs/graphs/ecosystem.dot @@ -0,0 +1,59 @@ +digraph G { + fontname = "Roboto"; + newrank=true; + node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + + subgraph cluster_1 { + label = "renderers "; + labelloc = "b"; + labeljust = "r"; + fontcolor = "#ffffff"; + color="#8797AF"; + bgcolor="#8797AF"; + style=rounded; + node [fillcolor=white, color=white, fontcolor=black]; + + etc_1 [label="...", style=empty, shape=none, fontcolor=white]; + iced_wgpu; + } + + subgraph cluster_2 { + label = "shells "; + labelloc = "b"; + labeljust = "r"; + fontcolor = "#ffffff"; + color="#8797AF"; + bgcolor="#8797AF"; + style=rounded; + node [fillcolor=white, color=white, fontcolor=black]; + + etc_2 [label="...", style=empty, shape=none, fontcolor=white]; + iced_winit; + } + + subgraph cluster_3 { + style=invis; + margin=20; + iced; + } + + { rank = same; iced_native iced_web } + { rank = same; iced_wgpu iced_winit etc_1 etc_2 } + + iced_core -> iced_native [style=dashed]; + iced_core -> iced_web [style=dashed]; + iced_native -> iced_wgpu; + iced_native -> iced_winit; + + iced_winit -> iced; + iced_wgpu -> iced; + iced_web -> iced; + + iced -> "cross-platform application"; + + iced_core [style=dashed, fontcolor=black]; + iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; + + + "cross-platform application" [shape=box3d, style="solid", width=2.8, height=0.6, fontcolor="#474973"]; +} diff --git a/docs/graphs/ecosystem.png b/docs/graphs/ecosystem.png new file mode 100644 index 00000000..647c22ab Binary files /dev/null and b/docs/graphs/ecosystem.png differ diff --git a/docs/graphs/iced.dot b/docs/graphs/iced.dot new file mode 100644 index 00000000..c049bf95 --- /dev/null +++ b/docs/graphs/iced.dot @@ -0,0 +1,47 @@ +digraph G { + fontname = "Roboto"; + newrank=true; + node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + + subgraph cluster_1 { + label = "renderers "; + labelloc = "b"; + labeljust = "r"; + fontcolor = "#ffffff"; + color="#8797AF"; + bgcolor="#8797AF"; + style=rounded; + node [fillcolor=white, color=white, fontcolor=black]; + + etc_1 [label="...", style=empty, shape=none, fontcolor=white]; + iced_wgpu; + } + + subgraph cluster_2 { + label = "shells "; + labelloc = "b"; + labeljust = "r"; + fontcolor = "#ffffff"; + color="#8797AF"; + bgcolor="#8797AF"; + style=rounded; + node [fillcolor=white, color=white, fontcolor=black]; + + etc_2 [label="...", style=empty, shape=none, fontcolor=white]; + iced_winit; + } + + subgraph cluster_3 { + style=invis; + margin=20; + iced; + } + + { rank = same; iced_wgpu iced_winit etc_1 etc_2 } + + iced_winit -> iced; + iced_wgpu -> iced; + iced_web -> iced; + + iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; +} diff --git a/docs/graphs/iced.png b/docs/graphs/iced.png new file mode 100644 index 00000000..dcdd9cd3 Binary files /dev/null and b/docs/graphs/iced.png differ diff --git a/docs/graphs/native.dot b/docs/graphs/native.dot new file mode 100644 index 00000000..3bc654a5 --- /dev/null +++ b/docs/graphs/native.dot @@ -0,0 +1,42 @@ +digraph G { + fontname = "Roboto"; + newrank=true; + node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + + subgraph cluster_1 { + label = "renderers "; + labelloc = "b"; + labeljust = "r"; + fontcolor = "#ffffff"; + color="#8797AF"; + bgcolor="#8797AF"; + style=rounded; + node [fillcolor=white, color=white, fontcolor=black]; + + etc_1 [label="...", style=empty, shape=none, fontcolor=white]; + iced_wgpu; + } + + subgraph cluster_2 { + label = "shells "; + labelloc = "b"; + labeljust = "r"; + fontcolor = "#ffffff"; + color="#8797AF"; + bgcolor="#8797AF"; + style=rounded; + node [fillcolor=white, color=white, fontcolor=black]; + + etc_2 [label="...", style=empty, shape=none, fontcolor=white]; + iced_winit; + } + + + { rank = same; iced_wgpu iced_winit etc_1 etc_2 } + + iced_core -> iced_native [style=dashed]; + iced_native -> iced_wgpu; + iced_native -> iced_winit; + + iced_core [style=dashed, fontcolor=black]; +} diff --git a/docs/graphs/native.png b/docs/graphs/native.png new file mode 100644 index 00000000..fbcad808 Binary files /dev/null and b/docs/graphs/native.png differ diff --git a/docs/graphs/web.dot b/docs/graphs/web.dot new file mode 100644 index 00000000..06c05176 --- /dev/null +++ b/docs/graphs/web.dot @@ -0,0 +1,12 @@ +digraph G { + fontname = "Roboto"; + newrank=true; + node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + + iced_core -> iced_web [style=dashed]; + + iced_web -> iced; + + iced_core [style=dashed, fontcolor=black]; + iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; +} diff --git a/docs/graphs/web.png b/docs/graphs/web.png new file mode 100644 index 00000000..6db04087 Binary files /dev/null and b/docs/graphs/web.png differ diff --git a/docs/graphs/wgpu.dot b/docs/graphs/wgpu.dot new file mode 100644 index 00000000..dc2d7cc8 --- /dev/null +++ b/docs/graphs/wgpu.dot @@ -0,0 +1,33 @@ +digraph G { + fontname = "Roboto"; + newrank=true; + node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + + subgraph cluster_1 { + label = "renderers "; + labelloc = "b"; + labeljust = "r"; + fontcolor = "#ffffff"; + color="#8797AF"; + bgcolor="#8797AF"; + style=rounded; + node [fillcolor=white, color=white, fontcolor=black]; + + etc_1 [label="...", style=empty, shape=none, fontcolor=white]; + iced_wgpu; + } + + subgraph cluster_3 { + style=invis; + margin=20; + iced; + } + + { rank = same; iced_wgpu etc_1 } + + iced_native -> iced_wgpu; + + iced_wgpu -> iced; + + iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; +} diff --git a/docs/graphs/wgpu.png b/docs/graphs/wgpu.png new file mode 100644 index 00000000..00ae76ce Binary files /dev/null and b/docs/graphs/wgpu.png differ diff --git a/docs/graphs/winit.dot b/docs/graphs/winit.dot new file mode 100644 index 00000000..c31f869b --- /dev/null +++ b/docs/graphs/winit.dot @@ -0,0 +1,33 @@ +digraph G { + fontname = "Roboto"; + newrank=true; + node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + + subgraph cluster_2 { + label = "shells "; + labelloc = "b"; + labeljust = "r"; + fontcolor = "#ffffff"; + color="#8797AF"; + bgcolor="#8797AF"; + style=rounded; + node [fillcolor=white, color=white, fontcolor=black]; + + etc_2 [label="...", style=empty, shape=none, fontcolor=white]; + iced_winit; + } + + subgraph cluster_3 { + style=invis; + margin=20; + iced; + } + + { rank = same; iced_winit etc_2 } + + iced_native -> iced_winit; + + iced_winit -> iced; + + iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; +} diff --git a/docs/graphs/winit.png b/docs/graphs/winit.png new file mode 100644 index 00000000..ef8b98dc Binary files /dev/null and b/docs/graphs/winit.png differ -- cgit From cae26cb7bc627f4a5b3bcf1cd023a0c552e8c65e Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 20 Nov 2019 05:01:36 +0100 Subject: Remove high contrast from graphs --- docs/graphs/core.dot | 6 +++--- docs/graphs/core.png | Bin 16123 -> 13172 bytes docs/graphs/ecosystem.dot | 27 ++++++++++++--------------- docs/graphs/ecosystem.png | Bin 51911 -> 44705 bytes docs/graphs/generate.sh | 6 ++++++ docs/graphs/iced.dot | 23 +++++++++++------------ docs/graphs/iced.png | Bin 32794 -> 26302 bytes docs/graphs/native.dot | 23 +++++++++++------------ docs/graphs/native.png | Bin 27637 -> 24980 bytes docs/graphs/web.dot | 6 +++--- docs/graphs/web.png | Bin 13023 -> 11717 bytes docs/graphs/wgpu.dot | 14 ++++++-------- docs/graphs/wgpu.png | Bin 20091 -> 16570 bytes docs/graphs/winit.dot | 14 ++++++-------- docs/graphs/winit.png | Bin 17051 -> 15892 bytes 15 files changed, 58 insertions(+), 61 deletions(-) create mode 100755 docs/graphs/generate.sh (limited to 'docs') diff --git a/docs/graphs/core.dot b/docs/graphs/core.dot index a52dfbb9..93724927 100644 --- a/docs/graphs/core.dot +++ b/docs/graphs/core.dot @@ -1,13 +1,13 @@ digraph G { fontname = "Roboto"; newrank=true; - node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"]; + edge[color="#333333"]; { rank = same; iced_native iced_web } iced_core -> iced_native [style=dashed]; iced_core -> iced_web [style=dashed]; - iced_core [style=dashed, fontcolor=black]; - + iced_core [style=dashed]; } diff --git a/docs/graphs/core.png b/docs/graphs/core.png index a5002c9b..0b14ab6c 100644 Binary files a/docs/graphs/core.png and b/docs/graphs/core.png differ diff --git a/docs/graphs/ecosystem.dot b/docs/graphs/ecosystem.dot index e6c1af94..609cf726 100644 --- a/docs/graphs/ecosystem.dot +++ b/docs/graphs/ecosystem.dot @@ -1,19 +1,19 @@ digraph G { fontname = "Roboto"; newrank=true; - node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"]; + edge[color="#333333"]; subgraph cluster_1 { label = "renderers "; labelloc = "b"; labeljust = "r"; - fontcolor = "#ffffff"; - color="#8797AF"; - bgcolor="#8797AF"; + fontcolor = "#0366d6"; + color="#f6f8fa"; + bgcolor="#f6f8fa"; style=rounded; - node [fillcolor=white, color=white, fontcolor=black]; - etc_1 [label="...", style=empty, shape=none, fontcolor=white]; + etc_1 [label="...", style=solid, shape=none]; iced_wgpu; } @@ -21,13 +21,12 @@ digraph G { label = "shells "; labelloc = "b"; labeljust = "r"; - fontcolor = "#ffffff"; - color="#8797AF"; - bgcolor="#8797AF"; + fontcolor = "#0366d6"; + color="#f6f8fa"; + bgcolor="#f6f8fa"; style=rounded; - node [fillcolor=white, color=white, fontcolor=black]; - etc_2 [label="...", style=empty, shape=none, fontcolor=white]; + etc_2 [label="...", style=solid, shape=none]; iced_winit; } @@ -51,9 +50,7 @@ digraph G { iced -> "cross-platform application"; - iced_core [style=dashed, fontcolor=black]; - iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; + iced_core [style=dashed]; - - "cross-platform application" [shape=box3d, style="solid", width=2.8, height=0.6, fontcolor="#474973"]; + "cross-platform application" [shape=box, width=2.8, height=0.6]; } diff --git a/docs/graphs/ecosystem.png b/docs/graphs/ecosystem.png index 647c22ab..03fe1130 100644 Binary files a/docs/graphs/ecosystem.png and b/docs/graphs/ecosystem.png differ diff --git a/docs/graphs/generate.sh b/docs/graphs/generate.sh new file mode 100755 index 00000000..45073820 --- /dev/null +++ b/docs/graphs/generate.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +for file in *.dot +do + dot -Tpng ${file} -o ${file%.*}.png +done diff --git a/docs/graphs/iced.dot b/docs/graphs/iced.dot index c049bf95..24dbb972 100644 --- a/docs/graphs/iced.dot +++ b/docs/graphs/iced.dot @@ -1,19 +1,19 @@ digraph G { fontname = "Roboto"; newrank=true; - node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"]; + edge[color="#333333"]; subgraph cluster_1 { label = "renderers "; labelloc = "b"; labeljust = "r"; - fontcolor = "#ffffff"; - color="#8797AF"; - bgcolor="#8797AF"; + fontcolor = "#0366d6"; + color="#f6f8fa"; + bgcolor="#f6f8fa"; style=rounded; - node [fillcolor=white, color=white, fontcolor=black]; - etc_1 [label="...", style=empty, shape=none, fontcolor=white]; + etc_1 [label="...", style=solid, shape=none]; iced_wgpu; } @@ -21,13 +21,12 @@ digraph G { label = "shells "; labelloc = "b"; labeljust = "r"; - fontcolor = "#ffffff"; - color="#8797AF"; - bgcolor="#8797AF"; + fontcolor = "#0366d6"; + color="#f6f8fa"; + bgcolor="#f6f8fa"; style=rounded; - node [fillcolor=white, color=white, fontcolor=black]; - etc_2 [label="...", style=empty, shape=none, fontcolor=white]; + etc_2 [label="...", style=solid, shape=none]; iced_winit; } @@ -43,5 +42,5 @@ digraph G { iced_wgpu -> iced; iced_web -> iced; - iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; + iced; } diff --git a/docs/graphs/iced.png b/docs/graphs/iced.png index dcdd9cd3..5d4a35bc 100644 Binary files a/docs/graphs/iced.png and b/docs/graphs/iced.png differ diff --git a/docs/graphs/native.dot b/docs/graphs/native.dot index 3bc654a5..b57736b5 100644 --- a/docs/graphs/native.dot +++ b/docs/graphs/native.dot @@ -1,19 +1,19 @@ digraph G { fontname = "Roboto"; newrank=true; - node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"]; + edge[color="#333333"]; subgraph cluster_1 { label = "renderers "; labelloc = "b"; labeljust = "r"; - fontcolor = "#ffffff"; - color="#8797AF"; - bgcolor="#8797AF"; + fontcolor = "#0366d6"; + color="#f6f8fa"; + bgcolor="#f6f8fa"; style=rounded; - node [fillcolor=white, color=white, fontcolor=black]; - etc_1 [label="...", style=empty, shape=none, fontcolor=white]; + etc_1 [label="...", style=solid, shape=none]; iced_wgpu; } @@ -21,13 +21,12 @@ digraph G { label = "shells "; labelloc = "b"; labeljust = "r"; - fontcolor = "#ffffff"; - color="#8797AF"; - bgcolor="#8797AF"; + fontcolor = "#0366d6"; + color="#f6f8fa"; + bgcolor="#f6f8fa"; style=rounded; - node [fillcolor=white, color=white, fontcolor=black]; - etc_2 [label="...", style=empty, shape=none, fontcolor=white]; + etc_2 [label="...", style=solid, shape=none]; iced_winit; } @@ -38,5 +37,5 @@ digraph G { iced_native -> iced_wgpu; iced_native -> iced_winit; - iced_core [style=dashed, fontcolor=black]; + iced_core [style=dashed]; } diff --git a/docs/graphs/native.png b/docs/graphs/native.png index fbcad808..892e4fee 100644 Binary files a/docs/graphs/native.png and b/docs/graphs/native.png differ diff --git a/docs/graphs/web.dot b/docs/graphs/web.dot index 06c05176..853ca398 100644 --- a/docs/graphs/web.dot +++ b/docs/graphs/web.dot @@ -1,12 +1,12 @@ digraph G { fontname = "Roboto"; newrank=true; - node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"]; + edge[color="#333333"]; iced_core -> iced_web [style=dashed]; iced_web -> iced; - iced_core [style=dashed, fontcolor=black]; - iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; + iced_core [style=dashed]; } diff --git a/docs/graphs/web.png b/docs/graphs/web.png index 6db04087..e6a1a5f6 100644 Binary files a/docs/graphs/web.png and b/docs/graphs/web.png differ diff --git a/docs/graphs/wgpu.dot b/docs/graphs/wgpu.dot index dc2d7cc8..410c2eeb 100644 --- a/docs/graphs/wgpu.dot +++ b/docs/graphs/wgpu.dot @@ -1,19 +1,19 @@ digraph G { fontname = "Roboto"; newrank=true; - node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"]; + edge[color="#333333"]; subgraph cluster_1 { label = "renderers "; labelloc = "b"; labeljust = "r"; - fontcolor = "#ffffff"; - color="#8797AF"; - bgcolor="#8797AF"; + fontcolor = "#0366d6"; + color="#f6f8fa"; + bgcolor="#f6f8fa"; style=rounded; - node [fillcolor=white, color=white, fontcolor=black]; - etc_1 [label="...", style=empty, shape=none, fontcolor=white]; + etc_1 [label="...", style=solid, shape=none]; iced_wgpu; } @@ -28,6 +28,4 @@ digraph G { iced_native -> iced_wgpu; iced_wgpu -> iced; - - iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; } diff --git a/docs/graphs/wgpu.png b/docs/graphs/wgpu.png index 00ae76ce..4831caba 100644 Binary files a/docs/graphs/wgpu.png and b/docs/graphs/wgpu.png differ diff --git a/docs/graphs/winit.dot b/docs/graphs/winit.dot index c31f869b..4ea5149a 100644 --- a/docs/graphs/winit.dot +++ b/docs/graphs/winit.dot @@ -1,19 +1,19 @@ digraph G { fontname = "Roboto"; newrank=true; - node[fontname = "Roboto", style=filled, fontcolor=white, color="#474973"]; + node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"]; + edge[color="#333333"]; subgraph cluster_2 { label = "shells "; labelloc = "b"; labeljust = "r"; - fontcolor = "#ffffff"; - color="#8797AF"; - bgcolor="#8797AF"; + fontcolor = "#0366d6"; + color="#f6f8fa"; + bgcolor="#f6f8fa"; style=rounded; - node [fillcolor=white, color=white, fontcolor=black]; - etc_2 [label="...", style=empty, shape=none, fontcolor=white]; + etc_2 [label="...", style=solid, shape=none]; iced_winit; } @@ -28,6 +28,4 @@ digraph G { iced_native -> iced_winit; iced_winit -> iced; - - iced [width=1, height=0.6, style="filled", fontcolor=white, color="#474973"]; } diff --git a/docs/graphs/winit.png b/docs/graphs/winit.png index ef8b98dc..1c028b29 100644 Binary files a/docs/graphs/winit.png and b/docs/graphs/winit.png differ -- cgit From 6543baa3d1e3f78ffa6aeb0c6317e65091e6bfc7 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 20 Nov 2019 06:35:00 +0100 Subject: Add image of `todos` in multiple platforms --- docs/images/todos_desktop.jpg | Bin 0 -> 309612 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 docs/images/todos_desktop.jpg (limited to 'docs') diff --git a/docs/images/todos_desktop.jpg b/docs/images/todos_desktop.jpg new file mode 100644 index 00000000..a604fd62 Binary files /dev/null and b/docs/images/todos_desktop.jpg differ -- cgit