!cosmetic warnings fix

pull/1520/head
Jamie.Rees 7 years ago
parent 6e23d155de
commit f32b5546d0

@ -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]

@ -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 = {

@ -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;
}

Loading…
Cancel
Save