-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
895 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"name": "novelscraper", | ||
"version": "1.0.0", | ||
"version": "1.0.3", | ||
"description": "Educational app on how to web scrape novels from pirate sites.", | ||
"homepage": "https://github.com/dr-nyt/NovelScraper", | ||
"author": { | ||
"name": "dr_nyt", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type" : "git", | ||
"url" : "https://github.com/dr-nyt/NovelScraper.git" | ||
"type": "git", | ||
"url": "https://github.com/dr-nyt/NovelScraper.git" | ||
}, | ||
"keywords": [ | ||
"webscraper", | ||
|
@@ -63,7 +63,7 @@ | |
"@typescript-eslint/parser": "2.20.0", | ||
"chai": "4.2.0", | ||
"codelyzer": "5.1.2", | ||
"conventional-changelog-cli": "2.0.32", | ||
"conventional-changelog-cli": "2.0.34", | ||
"core-js": "3.1.4", | ||
"cross-env": "7.0.0", | ||
"electron": "8.0.1", | ||
|
@@ -94,10 +94,11 @@ | |
}, | ||
"dependencies": { | ||
"@angular/animations": "9.1.0", | ||
"@trodi/electron-splashscreen": "1.0.0", | ||
"cloudscraper": "4.6.0", | ||
"electron-updater": "4.2.5", | ||
"fs-extra": "9.0.0", | ||
"jquery": "3.4.1", | ||
"jquery": "3.5.1", | ||
"mime": "2.4.4", | ||
"nconf": "0.10.0", | ||
"nodepub": "2.2.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,183 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<html> | ||
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet"> | ||
<style> | ||
|
||
@keyframes yourAnimation { | ||
0%{ | ||
transform: rotate(0) translateX(0px); | ||
} | ||
50%{ | ||
transform: rotate(0) translateX(345px); | ||
} | ||
51%{ | ||
transform: rotate(0) translateX(-357px); | ||
} | ||
100%{ | ||
transform: rotate(0) translateX(0px); | ||
} | ||
} | ||
|
||
html { | ||
background-color: white; | ||
font-family: 'Open Sans', sans-serif; | ||
-webkit-user-select: none; | ||
} | ||
body { | ||
background-color: #033e63; | ||
width: 700px; | ||
height: 500px; | ||
margin: 0; | ||
-webkit-app-region: drag; | ||
} | ||
|
||
body center { | ||
color: white; | ||
margin: 0; | ||
font-size: 1.5rem; | ||
} | ||
|
||
body center h1 { | ||
margin: 0; | ||
padding-top: 30px; | ||
} | ||
|
||
body center h1 span { | ||
color: rgb(0, 153, 255); | ||
} | ||
|
||
body center img { | ||
width: 230px; | ||
margin-top: 70px; | ||
} | ||
|
||
body center p { | ||
font-size: 0.7em; | ||
margin-top: 68px; | ||
} | ||
|
||
.load { | ||
margin: 0; | ||
float: left; | ||
|
||
} | ||
|
||
#load1 { | ||
margin-left: 340px; | ||
animation: yourAnimation 2s infinite 0s; | ||
} | ||
#load2{ | ||
animation: yourAnimation 2.5s infinite 0s; | ||
} | ||
#load3{ | ||
animation: yourAnimation 3s infinite 0s; | ||
} | ||
body, | ||
html, | ||
.wrapper { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
.wrapper { | ||
position: relative; | ||
background: #e7f0f7; | ||
} | ||
.progressbar { | ||
display: block; | ||
position: absolute; | ||
z-index: 9; | ||
top: 100px; | ||
right: 0; | ||
bottom: 0; | ||
left: 0; | ||
margin: auto; | ||
width: 300px; | ||
height: 15px; | ||
} | ||
.progressbar::before, | ||
.progressbar::after { | ||
content: ''; | ||
display: block; | ||
position: absolute; | ||
z-index: 99; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
border-radius: 15px; | ||
background-image: linear-gradient(90deg, #e91e63 0%, #e91e63 20%, #03a9f4 20%, #03a9f4 40%, #8bc34a 40%, #8bc34a 60%, #ffeb3b 60%, #ffeb3b 80%, #ff5722 80%, #ff5722 100%); | ||
background-position: 0 0; | ||
background-repeat: repeat-x; | ||
-webkit-animation: movebar 5s linear infinite; | ||
animation: movebar 5s linear infinite; | ||
} | ||
.progressbar::before { | ||
box-shadow: 0 6px 10px 0 rgba(0,0,0,0.1); | ||
} | ||
.progressbar::after { | ||
z-index: 9; | ||
top: 6px; | ||
-webkit-filter: blur(16px); | ||
filter: blur(16px); | ||
opacity: 0.7; | ||
} | ||
.stylization { | ||
position: absolute; | ||
z-index: 999; | ||
height: 4px; | ||
width: 90%; | ||
left: 5%; | ||
top: 6px; | ||
opacity: 0.3; | ||
} | ||
.stylization::before, | ||
.stylization::after { | ||
content: ''; | ||
display: block; | ||
position: absolute; | ||
height: 4px; | ||
top: 0; | ||
border-radius: 2px; | ||
} | ||
.stylization::before { | ||
background: #fff; | ||
left: 0; | ||
right: 10px; | ||
} | ||
.stylization::after { | ||
width: 6px; | ||
background: #fff; | ||
right: 0; | ||
} | ||
@-webkit-keyframes movebar { | ||
from { | ||
background-position: 0 0; | ||
} to { | ||
background-position: 400px 0; | ||
} | ||
} | ||
@keyframes movebar { | ||
from { | ||
background-position: 0 0; | ||
} to { | ||
background-position: 400px 0; | ||
} | ||
} | ||
</style> | ||
<head></head> | ||
<body> | ||
<center> | ||
<img src="./logo.png"> | ||
<h1><span>Novel</span>Scraper</h1> | ||
|
||
<div class="wrapper"> | ||
<div class="progressbar"> | ||
<div class="stylization"></div> | ||
</div> | ||
</div> | ||
|
||
<p>CHECKING FOR UPDATES...</p> | ||
</center> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.