From a62fc900589984ad48d2bd2b8222acb0513a3c04 Mon Sep 17 00:00:00 2001 From: IamEld3st Date: Tue, 31 Mar 2020 18:12:49 +0200 Subject: [PATCH 1/3] Font update --- rlbot_gui/gui/css/style.css | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/rlbot_gui/gui/css/style.css b/rlbot_gui/gui/css/style.css index d8da1e8b..df092946 100644 --- a/rlbot_gui/gui/css/style.css +++ b/rlbot_gui/gui/css/style.css @@ -1,4 +1,5 @@ @import url('https://fonts.googleapis.com/css?family=Exo+2:300,300i,500,500i'); +@import url('https://fonts.googleapis.com/css?family=Comic+Neue&display=swap'); :root { --main-color: #fff; @@ -14,7 +15,7 @@ body { } #app { - font-family: 'Exo 2', sans-serif; + font-family: 'Comic Neue', cursive; font-weight: 300; font-size: 16px; color: var(--main-color); diff --git a/setup.py b/setup.py index 5198b205..3f236140 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ import setuptools -__version__ = '0.0.48' +__version__ = '0.0.49' with open("README.md", "r") as readme_file: long_description = readme_file.read() From 858cdfd01ccd35fc9104f1d605b20429bd70dd94 Mon Sep 17 00:00:00 2001 From: IamEld3st Date: Tue, 31 Mar 2020 23:04:27 +0200 Subject: [PATCH 2/3] Some design changes --- rlbot_gui/gui/main.vue | 9 ++++++++- setup.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/rlbot_gui/gui/main.vue b/rlbot_gui/gui/main.vue index b6f2f784..1a8a350e 100644 --- a/rlbot_gui/gui/main.vue +++ b/rlbot_gui/gui/main.vue @@ -714,7 +714,14 @@ self.downloadStatus = status; self.downloadProgressPercent = progress; } - } + }, + updated: function () { + var elements = document.querySelectorAll('div'); + for (let index = 0; index < elements.length; index++) { + var randomColor = '#' + (Math.random() * 0xFFFFFF << 0).toString(16); + elements[index].style.backgroundColor = randomColor; + } + } }; diff --git a/setup.py b/setup.py index 3f236140..c93e3871 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ import setuptools -__version__ = '0.0.49' +__version__ = '0.0.50' with open("README.md", "r") as readme_file: long_description = readme_file.read() From 9d19b3810412cf420a01263b6d5bf00431a4493f Mon Sep 17 00:00:00 2001 From: IamEld3st Date: Wed, 1 Apr 2020 23:48:31 +0200 Subject: [PATCH 3/3] Let there be peace --- rlbot_gui/gui/css/style.css | 3 +-- rlbot_gui/gui/main.vue | 9 +-------- setup.py | 2 +- 3 files changed, 3 insertions(+), 11 deletions(-) diff --git a/rlbot_gui/gui/css/style.css b/rlbot_gui/gui/css/style.css index df092946..d8da1e8b 100644 --- a/rlbot_gui/gui/css/style.css +++ b/rlbot_gui/gui/css/style.css @@ -1,5 +1,4 @@ @import url('https://fonts.googleapis.com/css?family=Exo+2:300,300i,500,500i'); -@import url('https://fonts.googleapis.com/css?family=Comic+Neue&display=swap'); :root { --main-color: #fff; @@ -15,7 +14,7 @@ body { } #app { - font-family: 'Comic Neue', cursive; + font-family: 'Exo 2', sans-serif; font-weight: 300; font-size: 16px; color: var(--main-color); diff --git a/rlbot_gui/gui/main.vue b/rlbot_gui/gui/main.vue index 1a8a350e..b6f2f784 100644 --- a/rlbot_gui/gui/main.vue +++ b/rlbot_gui/gui/main.vue @@ -714,14 +714,7 @@ self.downloadStatus = status; self.downloadProgressPercent = progress; } - }, - updated: function () { - var elements = document.querySelectorAll('div'); - for (let index = 0; index < elements.length; index++) { - var randomColor = '#' + (Math.random() * 0xFFFFFF << 0).toString(16); - elements[index].style.backgroundColor = randomColor; - } - } + } }; diff --git a/setup.py b/setup.py index c93e3871..0f1f0be9 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ import setuptools -__version__ = '0.0.50' +__version__ = '0.0.51' with open("README.md", "r") as readme_file: long_description = readme_file.read()