Changed v2.0 to v2.1

This commit is contained in:
Carlos 2020-12-05 13:34:17 +01:00
parent dd9003190a
commit 383b0e3420
4 changed files with 12 additions and 15 deletions

View File

@ -1,3 +0,0 @@
If you are having issues with client not connecting and throwing random errors after a upgrade,
please force client reload on your browser by pressing Ctrl+F5 to reload the whole page.
This issue happens sometimes due to browsers caching JavaScript code.

View File

@ -264,7 +264,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.0 (rev. 3) - <a href="https://github.com/mesacarlos/WebConsole">GitHub</a></span> <span class="text-muted">WebConsole v2.1 - <a href="https://github.com/mesacarlos/WebConsole">GitHub</a></span>
</div> </div>
</footer> </footer>
@ -274,15 +274,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.0.3"></script> <script src="scripts/object/Setting.js?v=2.1.0"></script>
<script src="scripts/object/WSServer.js?v=2.0.3"></script> <script src="scripts/object/WSServer.js?v=2.1.0"></script>
<!-- WebConsole JS Scripts --> <!-- WebConsole JS Scripts -->
<script src="scripts/WebConsoleLanguage.js?v=2.0.3"></script> <script src="scripts/WebConsoleLanguage.js?v=2.1.0"></script>
<script src="scripts/WebConsoleConnector.js?v=2.0.3"></script> <script src="scripts/WebConsoleConnector.js?v=2.1.0"></script>
<script src="scripts/WebConsoleManager.js?v=2.0.3"></script> <script src="scripts/WebConsoleManager.js?v=2.1.0"></script>
<script src="scripts/WebConsolePersistenceManager.js?v=2.0.3"></script> <script src="scripts/WebConsolePersistenceManager.js?v=2.1.0"></script>
<script src="scripts/WebConsole.js?v=2.0.3"></script> <script src="scripts/WebConsole.js?v=2.1.0"></script>
<script src="scripts/WebConsoleJqueryHandler.js?v=2.0.3"></script> <script src="scripts/WebConsoleJqueryHandler.js?v=2.1.0"></script>
</body> </body>
</html> </html>

View File

@ -1,8 +1,8 @@
name: WebConsole name: WebConsole
main: es.mesacarlos.webconsole.WebConsole main: es.mesacarlos.webconsole.WebConsole
api-version: 1.13 api-version: 1.13
version: 2.0 version: 2.1
description: WebSockets-based web console description: WebSocket-based web console
author: Carlos Mesa author: Carlos Mesa
commands: commands:
WebConsole: WebConsole:

View File

@ -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.0</version> <version>2.1</version>
<build> <build>
<sourceDirectory>src</sourceDirectory> <sourceDirectory>src</sourceDirectory>
<plugins> <plugins>