Skip to content

Commit 48f4121

Browse files
committed
Renamed to LibreSpeed
1 parent 24c16f9 commit 48f4121

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
![Speedtest-Android Logo](https://github.com/adolfintel/speedtest-android/blob/master/.github/Readme-Logo.png?raw=true)
1+
![LibreSpeed-Android Logo](https://github.com/adolfintel/speedtest-android/blob/master/.github/Readme-Logo.png?raw=true)
22

3-
# Speedtest Android Template
4-
The Speedtest Android template allows you to configure and distribute an Android app that performs a speedtest using your existing [HTML5 Speedtest](https://github.com/adolfintel/speedtest) server(s).
3+
# LibreSpeed Android Template
4+
The Speedtest Android template allows you to configure and distribute an Android app that performs a speedtest using your existing [LibreSpeed](https://github.com/librespeed/speedtest) server(s).
55

66
The template is easy to configure, customize and distribute.
77

@@ -23,10 +23,10 @@ Android 4.0.3 and up (SDK 15), all architectures.
2323
* Results sharing (optional)
2424
* Multiple Points of Test (optional)
2525

26-
![Screenshot](https://github.com/adolfintel/speedtest-android/blob/master/.github/screenshots.png?raw=true)
26+
![Screenshot](https://github.com/librespeed/speedtest-android/blob/master/.github/screenshots.png?raw=true)
2727

2828
## Server requirements
29-
One or more servers with [HTML5 Speedtest](https://github.com/adolfintel/speedtest) installed.
29+
One or more servers with [LibreSpeed](https://github.com/librespeed/speedtest) installed.
3030

3131
## Donate
3232
[![Donate with Liberapay](https://liberapay.com/assets/widgets/donate.svg)](https://liberapay.com/fdossena/donate)

Speedtest-Android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "your.name.here.speedtest"
88
minSdkVersion 15
99
targetSdkVersion 28
10-
versionCode 2
11-
versionName '1.1'
10+
versionCode 3
11+
versionName '1.1.1'
1212
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1313
}
1414
buildTypes {

Speedtest-Android/app/src/main/res/values/strings.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<resources>
2-
<string name="app_name">Speedtest Android Template</string>
3-
<string name="logo_inapp_link">https://github.com/adolfintel/speedtest-android</string>
2+
<string name="app_name">LibreSpeed Android Template</string>
3+
<string name="logo_inapp_link">https://github.com/librespeed/speedtest-android</string>
44
<string name="privacy_policy">file:///android_asset/privacy_en.html</string>
55

66

doc.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# Speedtest Android template
1+
# LibreSpeed Android template
22

3-
The Speedtest Android template allows you to configure and distribute an Android app that performs a speedtest using your existing [HTML5 Speedtest](https://github.com/adolfintel/speedtest) server(s).
3+
The LibreSpeed Android template allows you to configure and distribute an Android app that performs a speedtest using your existing [LibreSpeed](https://github.com/librespeed/speedtest) server(s).
44

55
## Configuring the template
66
Here's an overview of the structure of the template, configured with the default settings. Click to expand.
77

8-
[![Overview of the template](https://github.com/adolfintel/speedtest-android/blob/master/.github/template_fsm.png?raw=true)](https://github.com/adolfintel/speedtest-android/blob/master/.github/template_fsm.png?raw=true)
8+
[![Overview of the template](https://github.com/librespeed/speedtest-android/blob/master/.github/template_fsm.png?raw=true)](https://github.com/librespeed/speedtest-android/blob/master/.github/template_fsm.png?raw=true)
99

1010
### Download the template
1111
The first thing to do is download latest version of the template:
1212
```
13-
git clone https://github.com/adolfintel/speedtest-android
13+
git clone https://github.com/librespeed/speedtest-android
1414
```
1515

1616
Now you will have a directory containing the template project and some documentation. Open the Speedtest-Android project in Android Studio.
@@ -52,7 +52,7 @@ Expand app > assets and open ServerList.json. Here you will find a list of test
5252

5353
Here's a more in-depth explanation of what the individual fields for each servers are:
5454
* __`"name"`__: User friendly name (eg. `"Milan, Italy"`)
55-
* __`"server"`__: URL to the server where HTML5 Speedtest is installed. If it only supports HTTP or HTTPS, specify it; if it supports both, simply use // followed by the address
55+
* __`"server"`__: URL to the server where LibreSpeed is installed. If it only supports HTTP or HTTPS, specify it; if it supports both, simply use // followed by the address
5656
* __`"dlURL"`__: Path on your server where the download test can be performed (typically `"garbage.php"` or `"backend/garbage.php"`)
5757
* __`"urURL"`__: Path on your server where the upload test can be performed (typically `"empty.php"` or `"backend/empty.php"`)
5858
* __`"pingURL"`__: Path on your server where the ping/jitter test can be performed (typically `"empty.php"` or `"backend/empty.php"`)
@@ -61,7 +61,7 @@ Here's a more in-depth explanation of what the individual fields for each server
6161
__Important__: This app DOES NOT handle HTTP redirects (3xx codes)!
6262

6363
### Telemetry and results sharing
64-
If you want to enable telemetry and results sharing, edit TelemetryConfig.json. Here you need to add the information about your telemetry server (HTML5 Speedtest frontend server). This feature is disabled by default.
64+
If you want to enable telemetry and results sharing, edit TelemetryConfig.json. Here you need to add the information about your telemetry server (LibreSpeed frontend server). This feature is disabled by default.
6565

6666
* Follow this syntax:
6767
```json
@@ -81,7 +81,7 @@ Here's a more in-depth explanation of what the individual fields are:
8181
* `"basic"`: Stores results for completed tests without log
8282
* `"full"`: Stores results and log for all tests, even if they are aborted or if they fail
8383
* Default: `"disabled"`
84-
* __`"server"`__: URL to the server where the HTML5 Speedtest telemetry is installed (the frontend server). If it only supports HTTP or HTTPS, specify it; if it supports both, simply use // followed by the address
84+
* __`"server"`__: URL to the server where the LibreSpeed telemetry is installed (the frontend server). If it only supports HTTP or HTTPS, specify it; if it supports both, simply use // followed by the address
8585
* __`"path"`__: Path on your server where telemetry can be stored (typically `results/telemetry.php`)
8686
* __`"shareURL"`__: Path on your server where the results sharing links point to (typically `results/?id=%s` or an empty string if you don't want to enable this feature). %s will be replaced by the test ID. Omit this if you don't want to use results sharing
8787

@@ -262,7 +262,7 @@ Here's a description of each string:
262262
* __`privacy_close`__: Text of the link that closes the privacy policy
263263

264264
### The end
265-
Your template is now fully configured for your HTML5 Speedtest server(s). Enjoy!
265+
Your template is now fully configured for your LibreSpeed server(s). Enjoy!
266266

267267
This template is licensed under the [GNU LGPLv3 License](https://www.gnu.org/licenses/lgpl-3.0.en.html). In short, you are free to use, study, modify, and distribute modified copies of this application, but they must remain under the same GNU LGPLv3 license. This means that if you make any modification to the application, the source code must be made publicly available. Merely changing the configuration of this template as we did in this chapter does NOT count as a modified version, so you are free to distribute it as an APK, but any other change made to the app does count as a modification and you MUST provide the source code.
268268

@@ -419,7 +419,7 @@ Note: aborting the test is not instantaneous. This is done asynchronously. If th
419419
## Implementation details
420420
This chapter is dedicated to the inner workings of the `com.fdossena.speedtest.core` package. You don't need to read this section if you're just customizing the template or making a custom UI, it's only here if you need to make changes to how the speedtest client works.
421421

422-
If you also need to know how the speedtest server works, see [here](https://github.com/adolfintel/speedtest/wiki/Implementation-details).
422+
If you also need to know how the speedtest server works, see [here](https://github.com/librespeed/speedtest/wiki/Implementation-details).
423423

424424
__Remember that both the server and this client are under a GNU LGPLv3 license, so any modification you make to it MUST be publicly available in source form! No exceptions.__
425425

@@ -725,7 +725,7 @@ public TestPoint(String name, String server, String dlURL, String ulURL, String
725725
```
726726

727727
* `name`: User friendly name (eg. `"Milan, Italy"`)
728-
* `server`: URL to the server where HTML5 Speedtest is installed. If it only supports HTTP or HTTPS, specify it; if it supports both, simply use // followed by the address
728+
* `server`: URL to the server where LibreSpeed is installed. If it only supports HTTP or HTTPS, specify it; if it supports both, simply use // followed by the address
729729
* `dlURL`: Path on your server where the download test can be performed (typically `"garbage.php"` or `"backend/garbage.php"`)
730730
* `urURL`: Path on your server where the upload test can be performed (typically `"empty.php"` or `"backend/empty.php"`)
731731
* `pingURL`: Path on your server where the ping/jitter test can be performed (typically `"empty.php"` or `"backend/empty.php"`)

0 commit comments

Comments
 (0)