From a9ea9213835eb5c57fbcfed1cfbf97062503ad0e Mon Sep 17 00:00:00 2001
From: Héctor Ramón Jiménez <hector0193@gmail.com>
Date: Thu, 26 Nov 2020 06:43:37 +0100
Subject: Update `ECOSYSTEM`

---
 docs/graphs/core.dot        |  13 ----------
 docs/graphs/ecosystem.dot   |  56 --------------------------------------------
 docs/graphs/foundations.png | Bin 0 -> 18626 bytes
 docs/graphs/generate.sh     |   6 -----
 docs/graphs/iced.dot        |  46 ------------------------------------
 docs/graphs/iced.png        | Bin 26302 -> 100093 bytes
 docs/graphs/native.dot      |  41 --------------------------------
 docs/graphs/native.png      | Bin 24980 -> 59288 bytes
 docs/graphs/web.dot         |  12 ----------
 docs/graphs/wgpu.dot        |  31 ------------------------
 docs/graphs/winit.dot       |  31 ------------------------
 11 files changed, 236 deletions(-)
 delete mode 100644 docs/graphs/core.dot
 delete mode 100644 docs/graphs/ecosystem.dot
 create mode 100644 docs/graphs/foundations.png
 delete mode 100755 docs/graphs/generate.sh
 delete mode 100644 docs/graphs/iced.dot
 delete mode 100644 docs/graphs/native.dot
 delete mode 100644 docs/graphs/web.dot
 delete mode 100644 docs/graphs/wgpu.dot
 delete mode 100644 docs/graphs/winit.dot

(limited to 'docs')

diff --git a/docs/graphs/core.dot b/docs/graphs/core.dot
deleted file mode 100644
index 93724927..00000000
--- a/docs/graphs/core.dot
+++ /dev/null
@@ -1,13 +0,0 @@
-digraph G {
-  fontname = "Roboto";
-  newrank=true;
-  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];
-}
diff --git a/docs/graphs/ecosystem.dot b/docs/graphs/ecosystem.dot
deleted file mode 100644
index 609cf726..00000000
--- a/docs/graphs/ecosystem.dot
+++ /dev/null
@@ -1,56 +0,0 @@
-digraph G {
-  fontname = "Roboto";
-  newrank=true;
-  node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"];
-  edge[color="#333333"];
-
-  subgraph cluster_1 {
-    label = "renderers  ";
-    labelloc = "b";
-    labeljust = "r";
-    fontcolor = "#0366d6";
-    color="#f6f8fa";
-    bgcolor="#f6f8fa";
-    style=rounded;
-
-    etc_1 [label="...", style=solid, shape=none];
-    iced_wgpu;
-  }
-
-  subgraph cluster_2 {
-    label = "shells  ";
-    labelloc = "b";
-    labeljust = "r";
-    fontcolor = "#0366d6";
-    color="#f6f8fa";
-    bgcolor="#f6f8fa";
-    style=rounded;
-
-    etc_2 [label="...", style=solid, shape=none];
-    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];
-
-  "cross-platform application" [shape=box, width=2.8, height=0.6];
-}
diff --git a/docs/graphs/foundations.png b/docs/graphs/foundations.png
new file mode 100644
index 00000000..cc043c99
Binary files /dev/null and b/docs/graphs/foundations.png differ
diff --git a/docs/graphs/generate.sh b/docs/graphs/generate.sh
deleted file mode 100755
index 45073820..00000000
--- a/docs/graphs/generate.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/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
deleted file mode 100644
index 24dbb972..00000000
--- a/docs/graphs/iced.dot
+++ /dev/null
@@ -1,46 +0,0 @@
-digraph G {
-  fontname = "Roboto";
-  newrank=true;
-  node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"];
-  edge[color="#333333"];
-
-  subgraph cluster_1 {
-    label = "renderers  ";
-    labelloc = "b";
-    labeljust = "r";
-    fontcolor = "#0366d6";
-    color="#f6f8fa";
-    bgcolor="#f6f8fa";
-    style=rounded;
-
-    etc_1 [label="...", style=solid, shape=none];
-    iced_wgpu;
-  }
-
-  subgraph cluster_2 {
-    label = "shells  ";
-    labelloc = "b";
-    labeljust = "r";
-    fontcolor = "#0366d6";
-    color="#f6f8fa";
-    bgcolor="#f6f8fa";
-    style=rounded;
-
-    etc_2 [label="...", style=solid, shape=none];
-    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;
-}
diff --git a/docs/graphs/iced.png b/docs/graphs/iced.png
index 5d4a35bc..bf777e53 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
deleted file mode 100644
index b57736b5..00000000
--- a/docs/graphs/native.dot
+++ /dev/null
@@ -1,41 +0,0 @@
-digraph G {
-  fontname = "Roboto";
-  newrank=true;
-  node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"];
-  edge[color="#333333"];
-
-  subgraph cluster_1 {
-    label = "renderers  ";
-    labelloc = "b";
-    labeljust = "r";
-    fontcolor = "#0366d6";
-    color="#f6f8fa";
-    bgcolor="#f6f8fa";
-    style=rounded;
-
-    etc_1 [label="...", style=solid, shape=none];
-    iced_wgpu;
-  }
-
-  subgraph cluster_2 {
-    label = "shells  ";
-    labelloc = "b";
-    labeljust = "r";
-    fontcolor = "#0366d6";
-    color="#f6f8fa";
-    bgcolor="#f6f8fa";
-    style=rounded;
-
-    etc_2 [label="...", style=solid, shape=none];
-    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];
-}
diff --git a/docs/graphs/native.png b/docs/graphs/native.png
index 892e4fee..6a8759e0 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
deleted file mode 100644
index 853ca398..00000000
--- a/docs/graphs/web.dot
+++ /dev/null
@@ -1,12 +0,0 @@
-digraph G {
-  fontname = "Roboto";
-  newrank=true;
-  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];
-}
diff --git a/docs/graphs/wgpu.dot b/docs/graphs/wgpu.dot
deleted file mode 100644
index 410c2eeb..00000000
--- a/docs/graphs/wgpu.dot
+++ /dev/null
@@ -1,31 +0,0 @@
-digraph G {
-  fontname = "Roboto";
-  newrank=true;
-  node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"];
-  edge[color="#333333"];
-
-  subgraph cluster_1 {
-    label = "renderers  ";
-    labelloc = "b";
-    labeljust = "r";
-    fontcolor = "#0366d6";
-    color="#f6f8fa";
-    bgcolor="#f6f8fa";
-    style=rounded;
-
-    etc_1 [label="...", style=solid, shape=none];
-    iced_wgpu;
-  }
-
-  subgraph cluster_3 {
-    style=invis;
-    margin=20;
-    iced;
-  }
-
-  { rank = same; iced_wgpu etc_1  }
-
-  iced_native -> iced_wgpu;
-
-  iced_wgpu -> iced;
-}
diff --git a/docs/graphs/winit.dot b/docs/graphs/winit.dot
deleted file mode 100644
index 4ea5149a..00000000
--- a/docs/graphs/winit.dot
+++ /dev/null
@@ -1,31 +0,0 @@
-digraph G {
-  fontname = "Roboto";
-  newrank=true;
-  node[fontname = "Roboto", style="filled", fontcolor="#333333", fillcolor=white, color="#333333"];
-  edge[color="#333333"];
-
-  subgraph cluster_2 {
-    label = "shells  ";
-    labelloc = "b";
-    labeljust = "r";
-    fontcolor = "#0366d6";
-    color="#f6f8fa";
-    bgcolor="#f6f8fa";
-    style=rounded;
-
-    etc_2 [label="...", style=solid, shape=none];
-    iced_winit;
-  }
-
-  subgraph cluster_3 {
-    style=invis;
-    margin=20;
-    iced;
-  }
-
-  { rank = same; iced_winit  etc_2 }
-
-  iced_native -> iced_winit;
-
-  iced_winit -> iced;
-}
-- 
cgit