Skip to content

Commit 14c52d0

Browse files
committed
Remove node update List
1 parent 8ae6048 commit 14c52d0

2 files changed

Lines changed: 88 additions & 6 deletions

File tree

JS/requires.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -316,12 +316,9 @@ function UpdateApp() {
316316
procressPanel.show('Checking Connection...')
317317

318318
let node_update = false
319-
for (let i = 0; i < new_update.node_modules_updates_number.length; i++) {
320-
if (new_update.node_modules_updates_number > update_number) {
321-
node_update = true
322-
procressPanel.changePercent(5)
323-
break
324-
}
319+
if (new_update.node_modules_updates_number > update_number) {
320+
node_update = true
321+
procressPanel.changePercent(5)
325322
}
326323

327324
procressPanel.add('Connected To Update Data.')

release-maker.html

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Release Maker v1.0.0</title>
8+
<style type="text/css">
9+
* {
10+
padding: 0;
11+
margin: 0;
12+
border: none;
13+
outline: none;
14+
box-sizing: border-box;
15+
}
16+
17+
:root {
18+
--color: #222;
19+
}
20+
21+
body {
22+
width: 100%;
23+
height: 100vh;
24+
padding: 20px 60px;
25+
background-color: #fff;
26+
color: var(--color);
27+
}
28+
29+
.btn {
30+
display: inline-block;
31+
padding: 10px;
32+
margin: 2px 4px;
33+
background-color: transparent;
34+
color: var(--color);
35+
border: 1px solid transparent;
36+
border-radius: 3px;
37+
cursor: pointer;
38+
transition: background-color .2s, border-color .2s, color .2s;
39+
}
40+
41+
.btn-primary {
42+
background-color: #3498DB;
43+
border-color: #2E86C1;
44+
color: #fff;
45+
}
46+
47+
.btn-primary:hover {
48+
background-color: #5DADE2;
49+
border-color: #3498DB;
50+
color: #fff;
51+
}
52+
53+
p {
54+
display: block;
55+
width: 100%;
56+
color: var(--color);
57+
padding: 5px 10px;
58+
}
59+
60+
.form-text {
61+
display: block;
62+
width: 100%;
63+
padding: 8px 10px;
64+
margin-bottom: 20px;
65+
background-color: #fff;
66+
color: var(--color);
67+
border: 1px solid #eee;
68+
border-radius: 4px;
69+
}
70+
</style>
71+
</head>
72+
<body>
73+
74+
<br>
75+
76+
<p>Version</p>
77+
<input type="text" class="form-text" placeholder="Version...">
78+
79+
<button type="button" class="btn btn-primary" onabort="">Make</button>
80+
</body>
81+
</html>
82+
83+
<script type="text/javascript">
84+
85+
</script>

0 commit comments

Comments
 (0)