From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <a.lauterer@proxmox.com>
Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68])
 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
 key-exchange X25519 server-signature RSA-PSS (2048 bits))
 (No client certificate requested)
 by lists.proxmox.com (Postfix) with ESMTPS id D8C5561C32
 for <pve-devel@lists.proxmox.com>; Mon, 28 Sep 2020 14:28:26 +0200 (CEST)
Received: from firstgate.proxmox.com (localhost [127.0.0.1])
 by firstgate.proxmox.com (Proxmox) with ESMTP id D63142E160
 for <pve-devel@lists.proxmox.com>; Mon, 28 Sep 2020 14:28:26 +0200 (CEST)
Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com
 [212.186.127.180])
 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
 key-exchange X25519 server-signature RSA-PSS (2048 bits))
 (No client certificate requested)
 by firstgate.proxmox.com (Proxmox) with ESMTPS id 214942E150
 for <pve-devel@lists.proxmox.com>; Mon, 28 Sep 2020 14:28:26 +0200 (CEST)
Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1])
 by proxmox-new.maurer-it.com (Proxmox) with ESMTP id E25254549C
 for <pve-devel@lists.proxmox.com>; Mon, 28 Sep 2020 14:28:25 +0200 (CEST)
From: Aaron Lauterer <a.lauterer@proxmox.com>
To: pve-devel@lists.proxmox.com
Date: Mon, 28 Sep 2020 14:28:22 +0200
Message-Id: <20200928122825.21547-1-a.lauterer@proxmox.com>
X-Mailer: git-send-email 2.20.1
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-SPAM-LEVEL: Spam detection results:  0
 AWL -0.014 Adjusted score from AWL reputation of From: address
 KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment
 RCVD_IN_DNSWL_MED        -2.3 Sender listed at https://www.dnswl.org/,
 medium trust
 SPF_HELO_NONE           0.001 SPF: HELO does not publish an SPF Record
 SPF_PASS               -0.001 SPF: sender matches SPF record
Subject: [pve-devel] [PATCH pve_flutter_frontend 0/3] Add first welcome
 screen
X-BeenThere: pve-devel@lists.proxmox.com
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Proxmox VE development discussion <pve-devel.lists.proxmox.com>
List-Unsubscribe: <https://lists.proxmox.com/cgi-bin/mailman/options/pve-devel>, 
 <mailto:pve-devel-request@lists.proxmox.com?subject=unsubscribe>
List-Archive: <http://lists.proxmox.com/pipermail/pve-devel/>
List-Post: <mailto:pve-devel@lists.proxmox.com>
List-Help: <mailto:pve-devel-request@lists.proxmox.com?subject=help>
List-Subscribe: <https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel>, 
 <mailto:pve-devel-request@lists.proxmox.com?subject=subscribe>
X-List-Received-Date: Mon, 28 Sep 2020 12:28:26 -0000

This patch series introduces a "first welcome screen" shown on first
start.

Additionally, a class that stores the proxmox corporate identity (CI)
colors is introduced.

Feedback regarding content and design is welcome.

Aaron Lauterer (3):
  add class for Proxmox corporate identity colors
  add Proxmox symbol logo white orange
  Add first welcome screen

 .../2.0x/Proxmox-logo-symbol-white-orange.png | Bin 0 -> 18270 bytes
 .../3.0x/Proxmox-logo-symbol-white-orange.png | Bin 0 -> 44381 bytes
 .../Proxmox-logo-symbol-white-orange.png      | Bin 0 -> 9199 bytes
 .../ssl_validate/login_manager_screen.png     | Bin 0 -> 20389 bytes
 .../ssl_validate/login_manager_screen.png~    | Bin 0 -> 74433 bytes
 .../login_manager_screen_settings.png         | Bin 0 -> 37362 bytes
 .../login_manager_screen_settings.png~        | Bin 0 -> 66967 bytes
 lib/main.dart                                 |  17 +-
 lib/utils/dot_indicators.dart                 |  67 ++++++
 lib/utils/promox_colors.dart                  |  10 +
 .../pve_welcome_common.dart                   |  48 +++++
 .../firstWelcomeScreen/pve_welcome_faq.dart   |  56 +++++
 .../firstWelcomeScreen/pve_welcome_last.dart  |  66 ++++++
 .../firstWelcomeScreen/pve_welcome_logo.dart  |  33 +++
 .../pve_welcome_ssl_hint.dart                 |  51 +++++
 lib/widgets/pve_first_welcome_screen.dart     | 193 ++++++++++++++++++
 lib/widgets/pve_guest_overview_header.dart    |   3 +-
 lib/widgets/pve_node_overview.dart            |   3 +-
 pubspec.yaml                                  |   2 +
 19 files changed, 545 insertions(+), 4 deletions(-)
 create mode 100644 assets/images/2.0x/Proxmox-logo-symbol-white-orange.png
 create mode 100644 assets/images/3.0x/Proxmox-logo-symbol-white-orange.png
 create mode 100644 assets/images/Proxmox-logo-symbol-white-orange.png
 create mode 100644 assets/images/ssl_validate/login_manager_screen.png
 create mode 100644 assets/images/ssl_validate/login_manager_screen.png~
 create mode 100644 assets/images/ssl_validate/login_manager_screen_settings.png
 create mode 100644 assets/images/ssl_validate/login_manager_screen_settings.png~
 create mode 100644 lib/utils/dot_indicators.dart
 create mode 100644 lib/utils/promox_colors.dart
 create mode 100644 lib/widgets/firstWelcomeScreen/pve_welcome_common.dart
 create mode 100644 lib/widgets/firstWelcomeScreen/pve_welcome_faq.dart
 create mode 100644 lib/widgets/firstWelcomeScreen/pve_welcome_last.dart
 create mode 100644 lib/widgets/firstWelcomeScreen/pve_welcome_logo.dart
 create mode 100644 lib/widgets/firstWelcomeScreen/pve_welcome_ssl_hint.dart
 create mode 100644 lib/widgets/pve_first_welcome_screen.dart

-- 
2.20.1