Prepare v2.4 release
This commit is contained in:
parent
f0f263ebe0
commit
25ce2f6864
@ -53,7 +53,7 @@ A explanation of the `host`, `port`, `language` and `passwords` fields follows:
|
|||||||
|
|
||||||
`port`: A port where to run this plugin (cannot be the port you are using for Minecraft).
|
`port`: A port where to run this plugin (cannot be the port you are using for Minecraft).
|
||||||
|
|
||||||
You can modify `language` to view console and command messages in your preferred language. Valid languages are English (`en`), Spanish (`es`), Chinese (`zh`), Czech (`cs`), Deutsch (`de`), Dutch (`nl`), French (`fr`), Italian (`it`), Japanese (`ja`) Korean (`ko`), Portuguese (`pt`), Russian (`ru`) and Turkish (`tr`). **IMPORTANT: There is a known issue with Microsoft Windows cmd that shows weird characters when using a language different than English. If you are using Windows to host your server, check [this wiki page](https://github.com/mesacarlos/WebConsole/wiki/Show-local-characters-in-Windows-Console) to solve the problem**.
|
You can modify `language` to view console and command messages in your preferred language. Valid languages are English (`en`), Spanish (`es`), Chinese (`zh`), Czech (`cs`), Deutsch (`de`), Dutch (`nl`), French (`fr`), Italian (`it`), Japanese (`ja`) Korean (`ko`), Polskie (`pl`), Portuguese (`pt`), Russian (`ru`) and Turkish (`tr`). **IMPORTANT: There is a known issue with Microsoft Windows cmd that shows weird characters when using a language different than English. If you are using Windows to host your server, check [this wiki page](https://github.com/mesacarlos/WebConsole/wiki/Show-local-characters-in-Windows-Console) to solve the problem**.
|
||||||
|
|
||||||
From version 2.0 you can now create more than one user and set them as admin (Permission for both reading console and executing commands) or viewer (Permission for only reading console and CPU and RAM usage). This is configured using the `passwords` section:
|
From version 2.0 you can now create more than one user and set them as admin (Permission for both reading console and executing commands) or viewer (Permission for only reading console and CPU and RAM usage). This is configured using the `passwords` section:
|
||||||
- By default, a user called user1 with password mySecurePassword is created, please replace or remove it as it is only served as an example.
|
- By default, a user called user1 with password mySecurePassword is created, please replace or remove it as it is only served as an example.
|
||||||
|
@ -279,7 +279,7 @@
|
|||||||
<!-- Webpage footer -->
|
<!-- Webpage footer -->
|
||||||
<footer class="footer mt-auto py-3">
|
<footer class="footer mt-auto py-3">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<span class="text-muted">WebConsole v2.3 - <a href="https://github.com/mesacarlos/WebConsole">GitHub</a></span>
|
<span class="text-muted">WebConsole v2.4 - <a href="https://github.com/mesacarlos/WebConsole">GitHub</a></span>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
@ -289,15 +289,15 @@
|
|||||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||||
|
|
||||||
<!-- WebConsole JS Objects -->
|
<!-- WebConsole JS Objects -->
|
||||||
<script src="scripts/object/Setting.js?v=2.2.0"></script>
|
<script src="scripts/object/Setting.js?v=2.4.0"></script>
|
||||||
<script src="scripts/object/WSServer.js?v=2.2.0"></script>
|
<script src="scripts/object/WSServer.js?v=2.4.0"></script>
|
||||||
|
|
||||||
<!-- WebConsole JS Scripts -->
|
<!-- WebConsole JS Scripts -->
|
||||||
<script src="scripts/WebConsoleLanguage.js?v=2.2.0"></script>
|
<script src="scripts/WebConsoleLanguage.js?v=2.4.0"></script>
|
||||||
<script src="scripts/WebConsoleConnector.js?v=2.2.0"></script>
|
<script src="scripts/WebConsoleConnector.js?v=2.4.0"></script>
|
||||||
<script src="scripts/WebConsoleManager.js?v=2.2.0"></script>
|
<script src="scripts/WebConsoleManager.js?v=2.4.0"></script>
|
||||||
<script src="scripts/WebConsolePersistenceManager.js?v=2.2.0"></script>
|
<script src="scripts/WebConsolePersistenceManager.js?v=2.4.0"></script>
|
||||||
<script src="scripts/WebConsole.js?v=2.2.0"></script>
|
<script src="scripts/WebConsole.js?v=2.4.0"></script>
|
||||||
<script src="scripts/WebConsoleJqueryHandler.js?v=2.2.0"></script>
|
<script src="scripts/WebConsoleJqueryHandler.js?v=2.4.0"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
name: WebConsole
|
name: WebConsole
|
||||||
main: es.mesacarlos.webconsole.WebConsole
|
main: es.mesacarlos.webconsole.WebConsole
|
||||||
api-version: 1.13
|
api-version: 1.13
|
||||||
version: 2.3
|
version: 2.4
|
||||||
description: WebSocket-based web console
|
description: WebSocket-based web console
|
||||||
author: Carlos Mesa
|
author: Carlos Mesa
|
||||||
commands:
|
commands:
|
||||||
|
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>WebConsole</groupId>
|
<groupId>WebConsole</groupId>
|
||||||
<artifactId>WebConsole</artifactId>
|
<artifactId>WebConsole</artifactId>
|
||||||
<version>2.3</version>
|
<version>2.4</version>
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>src</sourceDirectory>
|
<sourceDirectory>src</sourceDirectory>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user