Merged with master

This commit is contained in:
dosse91 2019-09-24 18:51:32 +02:00
commit 66f0bbc285
10 changed files with 9467 additions and 10 deletions

6632
.logo/LibreSpeed.ai Normal file

File diff suppressed because one or more lines are too long

2826
.logo/LibreSpeed.svg Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 247 KiB

BIN
.logo/icon_huge.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

BIN
.logo/logo1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

BIN
.logo/logo2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

BIN
.logo/logo3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

View file

@ -1,9 +1,8 @@
# HTML5 Speedtest # LibreSpeed (Node.js port)
This is a nodeJS Port from the original PHP-based [LibreSpeed](https://github.com/librespeed/speedtest)
This is a nodeJS Port from [adolfintel's HTML5 Speedtest](https://github.com/adolfintel/speedtest)
## Installation ## Installation
For any instructions and support please check out the [Wiki](https://github.com/adolfintel/speedtest/wiki) For any instructions and support please check out the [Wiki](https://github.com/librespeed/speedtest/wiki)
## Support ## Support
If you like this project and want to support our work you can either do pull requests or donate via [PayPal](https://paypal.me/dunklesToast) If you like this project and want to support our work you can either do pull requests or donate via [PayPal](https://paypal.me/dunklesToast)

View file

@ -218,10 +218,10 @@ function initUI(){
} }
} }
</style> </style>
<title>HTML5 Speedtest</title> <title>LibreSpeed Example</title>
</head> </head>
<body> <body>
<h1>HTML5 Speedtest</h1> <h1>LibreSpeed Example</h1>
<div id="testWrapper"> <div id="testWrapper">
<div id="startStopBtn" onclick="startStop()"></div> <div id="startStopBtn" onclick="startStop()"></div>
<div id="test"> <div id="test">
@ -255,7 +255,7 @@ function initUI(){
<span id="ip"></span> <span id="ip"></span>
</div> </div>
</div> </div>
<a href="https://github.com/adolfintel/speedtest">Source code</a> <a href="https://github.com/librespeed/speedtest">Source code</a>
</div> </div>
<script type="text/javascript">setTimeout(function(){initUI()},100);</script> <script type="text/javascript">setTimeout(function(){initUI()},100);</script>
</body> </body>

View file

@ -1,7 +1,7 @@
/* /*
HTML5 Speedtest - Main HTML5 Speedtest - Main
by Federico Dossena by Federico Dossena
https://github.com/adolfintel/speedtest/ https://github.com/librespeed/speedtest/
GNU LGPLv3 License GNU LGPLv3 License
*/ */
@ -49,7 +49,7 @@ function Speedtest() {
this._settings = {}; //settings for the speedtest worker this._settings = {}; //settings for the speedtest worker
this._state = 0; //0=adding settings, 1=adding servers, 2=server selection done, 3=test running, 4=done this._state = 0; //0=adding settings, 1=adding servers, 2=server selection done, 3=test running, 4=done
console.log( console.log(
"HTML5 Speedtest by Federico Dossena v5.0 - https://github.com/adolfintel/speedtest" "LibreSpeed by Federico Dossena v5.1 - https://github.com/librespeed/speedtest"
); );
} }

View file

@ -1,7 +1,7 @@
/* /*
HTML5 Speedtest - Worker HTML5 Speedtest - Worker
by Federico Dossena by Federico Dossena
https://github.com/adolfintel/speedtest/ https://github.com/librespeed/speedtest/
GNU LGPLv3 License GNU LGPLv3 License
*/ */