Update README and ROADMAP and add ECOSYSTEM

This commit is contained in:
Héctor Ramón Jiménez 2019-11-19 11:39:49 +01:00
parent 5adefdf661
commit fdc99e5bf6
19 changed files with 404 additions and 224 deletions

View file

@ -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"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

13
docs/graphs/core.dot Normal file
View file

@ -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];
}

BIN
docs/graphs/core.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

59
docs/graphs/ecosystem.dot Normal file
View file

@ -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"];
}

BIN
docs/graphs/ecosystem.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

47
docs/graphs/iced.dot Normal file
View file

@ -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"];
}

BIN
docs/graphs/iced.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

42
docs/graphs/native.dot Normal file
View file

@ -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];
}

BIN
docs/graphs/native.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

12
docs/graphs/web.dot Normal file
View file

@ -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"];
}

BIN
docs/graphs/web.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

33
docs/graphs/wgpu.dot Normal file
View file

@ -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"];
}

BIN
docs/graphs/wgpu.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

33
docs/graphs/winit.dot Normal file
View file

@ -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"];
}

BIN
docs/graphs/winit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB