Limit library scan workers to four concurrent processes

* Formatting fixes

* Library scans are now limited to 4 worker processes
This commit is contained in:
Michael Green
2024-01-04 16:01:33 +11:00
committed by GitHub
parent eac35ee8a3
commit ce9ab91e5b
7 changed files with 73 additions and 11 deletions

View File

@@ -52,7 +52,7 @@
<div id="loginwindow_header_label" style="display: block; text-align: center;">Gaseous Games</div>
<button type="button" value="Get Started" onclick="document.getElementById('first_welcome').style.display = 'none'; document.getElementById('first_newadmin').style.display = '';" style="margin-top: 50px; width: 100%; font-size: 16px; border-radius: 10px; padding-top: 10px; padding-bottom: 10px;">Get Started</button>
<button type="button" value="Get Started" onclick="document.getElementById('first_welcome').style.display = 'none'; document.getElementById('first_newadmin').style.display = '';" class="bigbutton">Get Started</button>
</div>
</div>
<div class="loginwindow" id="first_newadmin" style="display: none;">
@@ -85,7 +85,7 @@
</tr>
<tr>
<td colspan="2" style="padding-top: 20px;">
<button id="login_createaccount" type="button" value="Create Account" onclick="registerAccount();" disabled="disabled" style="margin-top: 10px; width: 100%; font-size: 16px; border-radius: 10px; padding-top: 10px; padding-bottom: 10px;">Create Account</button>
<button id="login_createaccount" type="button" value="Create Account" onclick="registerAccount();" disabled="disabled" class="bigbutton">Create Account</button>
</td>
</tr>
</table>

View File

@@ -71,7 +71,7 @@
</tr>
<tr>
<td colspan="2" style="padding-top: 20px;">
<button type="button" value="Sign In" onclick="UserLogin();" style="margin-top: 10px; width: 100%; font-size: 16px; border-radius: 10px; padding-top: 10px; padding-bottom: 10px;">Sign In</button>
<button type="button" value="Sign In" onclick="UserLogin();" class="bigbutton">Sign In</button>
</td>
</tr>
</table>

View File

@@ -1014,7 +1014,7 @@ div[name="properties_toc_item"]:hover,div[name="properties_user_toc_item"]:hover
color: lightgray;
}
button:not(.select2-selection__choice__remove):not(.ejs_menu_button) {
button:not(.select2-selection__choice__remove):not(.ejs_menu_button):not(.bigbutton) {
background-color: #555;
color: white;
border-width: 1px;
@@ -1035,12 +1035,27 @@ button:not(.select2-selection__choice__remove):not(.ejs_menu_button):hover {
cursor: pointer;
}
button:disabled {
button:not(.select2-selection__choice__remove):not(.ejs_menu_button):disabled {
background-color: #555;
color: #888;
cursor: not-allowed;
}
.bigbutton {
background-color: #555;
color: white;
border-width: 1px;
border-color: #555;
border-style: solid;
margin-top: 10px;
width: 100%;
height: 42px;
font-size: 16px;
border-radius: 10px;
padding-top: 10px;
padding-bottom: 10px;
}
.redbutton {
background-color: darkred;
border-color: darkred;