From f32b5546d00b158baaeb3e394e6a00ab0141ee33 Mon Sep 17 00:00:00 2001 From: "Jamie.Rees" Date: Mon, 25 Sep 2017 13:11:18 +0100 Subject: [PATCH] !cosmetic warnings fix --- CHANGELOG.md | 18 ++++++++++++++++-- src/Ombi/webpack.config.js | 2 +- src/Ombi/wwwroot/loading.css | 10 ++++++++++ 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42461bfff..2881151eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ### **New Features** +- Update Startup.cs. [Jamie] + +- Added an about page #865. [Jamie.Rees] + - Changelog. [Jamie.Rees] - Changed the way we download the updates #865. [Jamie.Rees] @@ -34,6 +38,18 @@ ### **Fixes** +- Optimized images, Update old compressed image with a new lossless one. (#1514) [camjac251] + +- #1513 #865 Fixed the issue where we do not send the requests to Radarr/Sonarr when approving. [tidusjar] + +- #1506 #865 Fixed an issue with the test buttons not working correctly. [tidusjar] + +- #865 Added donation link. [tidusjar] + +- Fixed a bunch of issues on #1513. [tidusjar] + +- #1460 Added the Updater, it all seems to be working correctly. #865. [Jamie.Rees] + - Removed percentage. [Jamie.Rees] - Fixed linter. [Jamie.Rees] @@ -109,8 +125,6 @@ - Build versioning. [Jamie.Rees] - - - Updated changelog. [Jamie.Rees] - Updated assembly versions. [Jamie.Rees] diff --git a/src/Ombi/webpack.config.js b/src/Ombi/webpack.config.js index 995ce1063..ed1793501 100644 --- a/src/Ombi/webpack.config.js +++ b/src/Ombi/webpack.config.js @@ -10,7 +10,7 @@ module.exports = function (env) { const prod = env && env.prod; console.log(prod ? 'Production' : 'Dev' + ' main build'); const analyse = env && env.analyse; - if (analyse) { console.log("Analysing build") }; + if (analyse) { console.log("Analysing build"); } const cssLoader = prod ? 'css-loader?minimize' : 'css-loader'; const outputDir = './wwwroot/dist'; const bundleConfig = { diff --git a/src/Ombi/wwwroot/loading.css b/src/Ombi/wwwroot/loading.css index 084715a25..02b33bfee 100644 --- a/src/Ombi/wwwroot/loading.css +++ b/src/Ombi/wwwroot/loading.css @@ -1,9 +1,13 @@ .app-loading-container { display: flex; -webkit-box-orient: vertical; + -moz-box-orient: vertical; -webkit-box-direction: normal; + -moz-box-direction: normal; -webkit-box-pack: center; + -moz-box-pack: center; -webkit-box-align: center; + -moz-box-align: center; position: absolute; top: 0; bottom: 0; @@ -21,7 +25,9 @@ .app-loading-one { opacity: 0; -webkit-animation: dot 1.3s infinite; + -moz-animation: dot 1.3s infinite; -webkit-animation-delay: 0.0s; + -moz-animation-delay: 0.0s; animation: app-loading-dot 1.3s infinite; animation-delay: 0.0s; } @@ -29,7 +35,9 @@ .app-loading-two { opacity: 0; -webkit-animation: dot 1.3s infinite; + -moz-animation: dot 1.3s infinite; -webkit-animation-delay: 0.2s; + -moz-animation-delay: 0.2s; animation: app-loading-dot 1.3s infinite; animation-delay: 0.2s; } @@ -37,7 +45,9 @@ .app-loading-three { opacity: 0; -webkit-animation: dot 1.3s infinite; + -moz-animation: dot 1.3s infinite; -webkit-animation-delay: 0.3s; + -moz-animation-delay: 0.3s; animation: app-loading-dot 1.3s infinite; animation-delay: 0.3s; }