From 630d65554f887e3f044e5048e8750cb73e4e0586 Mon Sep 17 00:00:00 2001
From: rbrunner7 <rbrunner@dreamshare.ch>
Date: Fri, 26 Oct 2018 20:47:01 +0200
Subject: [PATCH] Proposal: Adding Windows installer download

---
 _data/downloads.yml |  7 +++++--
 _i18n/ar.yml        |  1 +
 _i18n/de.yml        |  1 +
 _i18n/en.yml        |  1 +
 _i18n/es.yml        |  1 +
 _i18n/fr.yml        |  1 +
 _i18n/it.yml        |  1 +
 _i18n/pl.yml        |  1 +
 downloads/index.md  | 13 +++++++++++++
 9 files changed, 25 insertions(+), 2 deletions(-)

diff --git a/_data/downloads.yml b/_data/downloads.yml
index 107c9eed..e7e077a7 100644
--- a/_data/downloads.yml
+++ b/_data/downloads.yml
@@ -5,8 +5,11 @@
   cli_hash: ee68ef8d4b3309cca9e68ee272919c222021804e493c2549c910ef370dfe595a
   gui_url: win64
   gui_hash: c23c849a2a970370f2bf7e22aae34f633f51d8490b6130337e5fe9369aff77e0
+  gui_installer_url: win64install
+  gui_installer_hash: 4c0ceb81361a4b69bff6cd5a47ef94cfd2992796fb25ca3923aed51d6fcd48bd
   cli_version: 0.14.0.2
   gui_version: 0.14.0.0
+  gui_installer_version: 0.14.0.0
   tag: Boron Butterfly
   blockchain: win
 
@@ -87,9 +90,9 @@
   mirror1: https://git.pwned.systems/monero-project/monero
   cli_hash: source
   version: Bleeding edge (possibly unstable)
-  
+
 - platform: Mobile & Light Wallets
   id: mobilelight
-  
+
 - platform: Hardware Wallets
   id: hardware
diff --git a/_i18n/ar.yml b/_i18n/ar.yml
index d1a2f7ac..ea831951 100644
--- a/_i18n/ar.yml
+++ b/_i18n/ar.yml
@@ -185,6 +185,7 @@ downloads:
   mobilelight2:   الملتقي
   mobilelight3:  للتواصل معنا
   clionly: معدات سطر الأوامر فقط
+  installer: Installer
 
 monero-project:
   translated: "yes"
diff --git a/_i18n/de.yml b/_i18n/de.yml
index 546d7cd8..0819c9ca 100644
--- a/_i18n/de.yml
+++ b/_i18n/de.yml
@@ -185,6 +185,7 @@ downloads:
   mobilelight2: Hangouts
   mobilelight3: ", um zu sehen, wo wir so sind."
   clionly: ausschließlich Befehlszeilenprogramme
+  installer: Installationsprogramm
 
 monero-project:
   translated: "yes"
diff --git a/_i18n/en.yml b/_i18n/en.yml
index 9e2e66b4..e72cb0c7 100644
--- a/_i18n/en.yml
+++ b/_i18n/en.yml
@@ -186,6 +186,7 @@ downloads:
   mobilelight2: Hangouts
   mobilelight3:  page to see where we are.
   clionly: Command-Line Tools Only
+  installer: Installer
 
 monero-project:
   translated: "yes"
diff --git a/_i18n/es.yml b/_i18n/es.yml
index b9288986..f1ad116d 100644
--- a/_i18n/es.yml
+++ b/_i18n/es.yml
@@ -185,6 +185,7 @@ downloads:
   mobilelight2: Medios de Comunicación
   mobilelight3:  para ver en dónde realizar la petición.
   clionly: v. Consola de Comandos
+  installer: Instalador
 
 monero-project:
   translated: "yes"
diff --git a/_i18n/fr.yml b/_i18n/fr.yml
index f6a11b84..70e7ff72 100644
--- a/_i18n/fr.yml
+++ b/_i18n/fr.yml
@@ -187,6 +187,7 @@ downloads:
   mobilelight2: Rencontres
   mobilelight3:  pour voir où nous sommes.
   clionly: Outils Ligne de Commande uniquement
+  installer: Installateur
 
 monero-project:
   translated: "yes"
diff --git a/_i18n/it.yml b/_i18n/it.yml
index 3a31b2a5..02b743c6 100644
--- a/_i18n/it.yml
+++ b/_i18n/it.yml
@@ -185,6 +185,7 @@ downloads:
   mobilelight2: Lista canali
   mobilelight3:  per vedere dove trovarci.
   clionly: Command-Line Tools Only
+  installer: Programma di installazione
 
 monero-project:
   translated: "yes"
diff --git a/_i18n/pl.yml b/_i18n/pl.yml
index 3c5b23b1..13593ff0 100644
--- a/_i18n/pl.yml
+++ b/_i18n/pl.yml
@@ -185,6 +185,7 @@ downloads:
   mobilelight2: Hangoutami
   mobilelight3:  i zobacz, gdzie można nas spotkać.
   clionly: (Wyłącznie narzędzia wiersza poleceń)
+  installer: Instalator
 
 monero-project:
   translated: "yes"
diff --git a/downloads/index.md b/downloads/index.md
index ab3bbc39..c40b1b22 100644
--- a/downloads/index.md
+++ b/downloads/index.md
@@ -124,6 +124,19 @@ permalink: /downloads/index.html
                                 <p class="hash"> {{ data_downloads.cli_hash }}</p>
                             </div>
                         </div>
+                        <br/>
+                        {% if data_downloads.gui_installer_hash != nil %}
+                        <div class="row">
+                            <div class="col-md-6 col-sm-12" >
+                                <h3 id="{{ data_downloads.platform | slugify }}">
+                                    <a href="//downloads.getmonero.org/gui/{{ data_downloads.gui_installer_url }}">{{ data_downloads.platform }} {% t downloads.installer %}</a>
+                                </h3>
+                                <p>{% t downloads.currentversion %}: {{ data_downloads.gui_installer_version }} {{ data_downloads.tag }}</p>
+                                <p class="prehash">SHA256 Hash (GUI Installer):</p>
+                                <p class="hash"> {{ data_downloads.gui_installer_hash }}</p>
+                            </div>
+                        </div>
+                        {% endif %}
                     {% endif %}
                 </div>
             </section>
-- 
GitLab