Version 6.1.14

This commit is contained in:
Chrystian Huot 2022-02-24 09:10:14 -05:00
parent e09a227590
commit f8fef4ada2
16 changed files with 1409 additions and 1221 deletions

View file

@ -86,6 +86,12 @@ _v6.1.13_
- Fix too many open files (issue #129).
- Remove net.http error messages from the output (issue #131).
_v6.1.14_
- Fix FAQ section not being added to the PDF documents.
- Bump delay before killing unauthenticated clients from 10 seconds to 60 seconds.
- Remove the gitter.im support forum from the documentation and prefer github discussions.
## Version 6.0
- Backend server rewritten in Go for better performance and ease of installation.

View file

@ -24,13 +24,13 @@ Clone the official repository on your computer and start the build process.
When finished, you will find the precompiled versions for various platforms in the `dist` folder.
rdio-scanner-darwin-amd64-v6.1.13.zip
rdio-scanner-darwin-arm64-v6.1.13.zip
rdio-scanner-freebsd-amd64-v6.1.13.zip
rdio-scanner-linux-386-v6.1.13.zip
rdio-scanner-linux-amd64-v6.1.13.zip
rdio-scanner-linux-arm64-v6.1.13.zip
rdio-scanner-linux-arm-v6.1.13.zip
rdio-scanner-windows-amd64-v6.1.13.zip
rdio-scanner-darwin-amd64-v6.1.14.zip
rdio-scanner-darwin-arm64-v6.1.14.zip
rdio-scanner-freebsd-amd64-v6.1.14.zip
rdio-scanner-linux-386-v6.1.14.zip
rdio-scanner-linux-amd64-v6.1.14.zip
rdio-scanner-linux-arm64-v6.1.14.zip
rdio-scanner-linux-arm-v6.1.14.zip
rdio-scanner-windows-amd64-v6.1.14.zip
**Happy Rdio scanning !**

View file

@ -4,7 +4,7 @@ Please follow these simple guidelines to contribute to [Rdio Scanner](https://gi
## Support requests or general question
Support requests or general questions are welcome on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) or on the [Gitter Rdio Scanner Lobby](https://gitter.im/rdio-scanner/Lobby). Do not create an issue for this, it will be rejected and closed immediately.
Support requests or general questions are welcome on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions). Do not create an issue for this, it will be rejected and closed immediately.
Helping others on the (https://github.com/chuot/rdio-scanner/wiki) is a good way for contributing to the project.

View file

@ -16,14 +16,14 @@
################################################################################
app := rdio-scanner
date := 2022/02/17
ver := 6.1.13
date := 2022/02/24
ver := 6.1.14
client := $(wildcard client/*.json client/*.ts)
server := $(wildcard server/*.go)
build = @cd server && GOOS=$(1) GOARCH=$(2) go build -o ../dist/$(1)-$(2)/$(3)
pandoc = @test -d dist/$(1)-$(2) || mkdir -p dist/$(1)-$(2) && pandoc -f markdown -o dist/$(1)-$(2)/$(3) --resource-path docs:docs/platforms $(4) docs/webapp.md docs/webapp.md CHANGELOG.md
pandoc = @test -d dist/$(1)-$(2) || mkdir -p dist/$(1)-$(2) && pandoc -f markdown -o dist/$(1)-$(2)/$(3) --resource-path docs:docs/platforms $(4) docs/webapp.md docs/webapp.md docs/faq.md CHANGELOG.md
zip = @cd dist/$(1)-$(2) && zip -q ../$(app)-$(1)-$(2)-v$(ver).zip * && cd ..
.PHONY: all clean container dist sed
@ -62,12 +62,12 @@ darwin-amd64: webapp dist/$(app)-darwin-amd64-v$(ver).zip
darwin-arm64: webapp dist/$(app)-darwin-arm64-v$(ver).zip
dist/$(app)-darwin-amd64-v$(ver).zip: $(server)
$(call pandoc,darwin,amd64,rdio-scanner.pdf,docs/platforms/darwin.md,CHANGELOG.md)
$(call pandoc,darwin,amd64,rdio-scanner.pdf,docs/platforms/darwin.md)
$(call build,darwin,amd64,$(app))
$(call zip,darwin,amd64,$(app))
dist/$(app)-darwin-arm64-v$(ver).zip: $(server)
$(call pandoc,darwin,arm64,rdio-scanner.pdf,docs/platforms/darwin.md,CHANGELOG.md)
$(call pandoc,darwin,arm64,rdio-scanner.pdf,docs/platforms/darwin.md)
$(call build,darwin,arm64,$(app))
$(call zip,darwin,arm64,$(app))
@ -75,7 +75,7 @@ freebsd: freebsd-amd64
freebsd-amd64: webapp dist/$(app)-freebsd-amd64-v$(ver).zip
dist/$(app)-freebsd-amd64-v$(ver).zip: $(server)
$(call pandoc,freebsd,amd64,rdio-scanner.pdf,docs/platforms/freebsd.md,CHANGELOG.md)
$(call pandoc,freebsd,amd64,rdio-scanner.pdf,docs/platforms/freebsd.md)
$(call build,freebsd,amd64,$(app))
$(call zip,freebsd,amd64,$(app))
@ -86,22 +86,22 @@ linux-arm: webapp dist/$(app)-linux-arm-v$(ver).zip
linux-arm64: webapp dist/$(app)-linux-arm64-v$(ver).zip
dist/$(app)-linux-386-v$(ver).zip: $(server)
$(call pandoc,linux,386,rdio-scanner.pdf,docs/platforms/linux.md,CHANGELOG.md)
$(call pandoc,linux,386,rdio-scanner.pdf,docs/platforms/linux.md)
$(call build,linux,386,$(app))
$(call zip,linux,386,$(app))
dist/$(app)-linux-amd64-v$(ver).zip: $(server)
$(call pandoc,linux,amd64,rdio-scanner.pdf,docs/platforms/linux.md,CHANGELOG.md)
$(call pandoc,linux,amd64,rdio-scanner.pdf,docs/platforms/linux.md)
$(call build,linux,amd64,$(app))
$(call zip,linux,amd64,$(app))
dist/$(app)-linux-arm-v$(ver).zip: $(server)
$(call pandoc,linux,arm,rdio-scanner.pdf,docs/platforms/linux.md,CHANGELOG.md)
$(call pandoc,linux,arm,rdio-scanner.pdf,docs/platforms/linux.md)
$(call build,linux,arm,$(app))
$(call zip,linux,arm,$(app))
dist/$(app)-linux-arm64-v$(ver).zip: $(server)
$(call pandoc,linux,arm64,rdio-scanner.pdf,docs/platforms/linux.md,CHANGELOG.md)
$(call pandoc,linux,arm64,rdio-scanner.pdf,docs/platforms/linux.md)
$(call build,linux,arm64,$(app))
$(call zip,linux,arm64,$(app))
@ -109,6 +109,6 @@ windows: windows-amd64
windows-amd64: webapp dist/$(app)-windows-amd64-v$(ver).zip
dist/$(app)-windows-amd64-v$(ver).zip: $(server)
$(call pandoc,windows,amd64,rdio-scanner.pdf,docs/platforms/windows.md,CHANGELOG.md)
$(call pandoc,windows,amd64,rdio-scanner.pdf,docs/platforms/windows.md)
$(call build,windows,amd64,$(app).exe)
$(call zip,windows,amd64,$(app))

View file

@ -35,7 +35,7 @@ If you are updating from version 5, please refer to [docs/update-from-v5.md](doc
# Need help ?
You can ask your questions or post your comments on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) at **[https://github.com/chuot/rdio-scanner/discussions](https://github.com/chuot/rdio-scanner/discussions)** or on the [Gitter Rdio Scanner Lobby](https://gitter.im/rdio-scanner/Lobby) at **[https://gitter.im/rdio-scanner/Lobby](https://gitter.im/rdio-scanner/Lobby)**.
You can ask your questions or post your comments on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) at **[https://github.com/chuot/rdio-scanner/discussions](https://github.com/chuot/rdio-scanner/discussions)**.
# Show your appreciation, support the author

2328
client/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,31 +1,31 @@
{
"author": "Chrystian Huot <chrystian.huot@saubeo.solutions>",
"dependencies": {
"@angular/animations": "^13.2.0",
"@angular/cdk": "^13.2.0",
"@angular/common": "~13.2.0",
"@angular/compiler": "~13.2.0",
"@angular/core": "~13.2.0",
"@angular/forms": "~13.2.0",
"@angular/material": "^13.2.0",
"@angular/platform-browser": "~13.2.0",
"@angular/platform-browser-dynamic": "~13.2.0",
"@angular/router": "^13.2.0",
"@angular/service-worker": "^13.2.0",
"@angular/animations": "^13.2.4",
"@angular/cdk": "^13.2.4",
"@angular/common": "~13.2.4",
"@angular/compiler": "~13.2.4",
"@angular/core": "~13.2.4",
"@angular/forms": "~13.2.4",
"@angular/material": "^13.2.4",
"@angular/platform-browser": "~13.2.4",
"@angular/platform-browser-dynamic": "~13.2.4",
"@angular/router": "^13.2.4",
"@angular/service-worker": "^13.2.4",
"rxjs": "~7.4.0",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.2.1",
"@angular/cli": "^13.2.1",
"@angular/compiler-cli": "~13.2.0",
"@types/node": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"@angular-devkit/build-angular": "^13.2.5",
"@angular/cli": "^13.2.5",
"@angular/compiler-cli": "~13.2.4",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"ajv-keywords": "^5.1.0",
"eslint": "^8.8.0",
"ts-node": "~10.4.0",
"eslint": "^8.9.0",
"ts-node": "~10.5.0",
"typescript": "~4.4.4"
},
"engines": {
@ -38,5 +38,5 @@
"build": "ng build --base-href ./ --configuration production",
"start": "ng serve"
},
"version": "6.1.13"
"version": "6.1.14"
}

View file

@ -10,9 +10,9 @@ A: Due to the ACME protocol used by Let's Encrypt, ports 80 and 443 must be open
**Q: I did not find an answer to my question in this FAQ**
A: No problem, just drop us a line at **[rdio-scanner@saubeo.solutions](mailto:rdio-scanner@saubeo.solutions)** and we'll make sure to add the relevant information in this document in the next release. In the meantime, You can ask your questions on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) at **[https://github.com/chuot/rdio-scanner/discussions](https://github.com/chuot/rdio-scanner/discussions)** or on the [Gitter Rdio Scanner Lobby](https://gitter.im/rdio-scanner/Lobby) at **[https://gitter.im/rdio-scanner/Lobby](https://gitter.im/rdio-scanner/Lobby)**.
A: No problem, just drop us a line at **[rdio-scanner@saubeo.solutions](mailto:rdio-scanner@saubeo.solutions)** and we'll make sure to add the relevant information in this document in the next release. In the meantime, You can ask your questions on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) at **[https://github.com/chuot/rdio-scanner/discussions](https://github.com/chuot/rdio-scanner/discussions)**.
**Q: How do I update to version 6 from version 5**
**Q: How do I update from version 5 to version 6**
A: First, don't use the update.js script, it won't work since the server portion of version 6 as been completely rewritten in GO. Simply unzip the archive that contains the Rdio Scanner executable and its PDF document to a new folder, then copy the database.sqlite from version 5 to the new folder that contains version 6 and make sure to rename it to _rdio-scanner.db_.

View file

@ -42,8 +42,8 @@ ALWAYS DOWNLOAD THE LATEST VERSION OF [RDIO SCANNER](https://github.com/chuot/rd
rdio@macos ~ % mkdir rdio-scanner
rdio@macos ~ % cd rdio-scanner
rdio@macos rdio-scanner % unzip \
> ~/Downloads/rdio-scanner-darwin-arm64-v6.1.13.zip
Archive: /Users/rdio/Downloads/rdio-scanner-darwin-arm64-v6.1.13.zip
> ~/Downloads/rdio-scanner-darwin-arm64-v6.1.14.zip
Archive: /Users/rdio/Downloads/rdio-scanner-darwin-arm64-v6.1.14.zip
inflating: rdio-scanner
inflating: rdio-scanner.pdf
@ -51,11 +51,11 @@ ALWAYS DOWNLOAD THE LATEST VERSION OF [RDIO SCANNER](https://github.com/chuot/rd
rdio@macos rdio-scanner % ./rdio-scanner
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 08:38:06 server started
2022/02/17 08:38:06 main interface at http://macos.local:3000
2022/02/17 08:38:06 admin interface at http://macos.local:3000/admin
2022/02/24 08:38:06 server started
2022/02/24 08:38:06 main interface at http://macos.local:3000
2022/02/24 08:38:06 admin interface at http://macos.local:3000/admin
4. Access the administrative dashboard to finalize the configuration.
@ -77,11 +77,11 @@ Here we want our [Rdio Scanner](https://guthub.com/chuot/rdio-scanner) instance
rdio@macos rdio-scanner % ./rdio-scanner --listen :80
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 08:48:03 server started
2022/02/17 08:48:03 main interface at http://macos.local
2022/02/17 08:48:03 admin interface at http://macos.local/admin
2022/02/24 08:48:03 server started
2022/02/24 08:48:03 main interface at http://macos.local
2022/02/24 08:48:03 admin interface at http://macos.local/admin
## Listening with SSL with self-signed certificates
@ -90,8 +90,8 @@ It is advised to share your [Rdio Scanner](https://github.com/chuot/rdio-scanner
We can create such self-signed certificates by running [Rdio Scanner](https://github.com/chuot/rdio-scanner) with the **-ssl_create** argument.
rdio@macos rdio-scanner % ./rdio-scanner -ssl_create
2022/02/17 08:49:16 generating ssl certificate files
2022/02/17 08:49:17 ssl files created
2022/02/24 08:49:16 generating ssl certificate files
2022/02/24 08:49:17 ssl files created
This has generated these files in the same folder as your [Rdio Scanner](https://github.com/chuot/rdio-scanner) executable.
@ -108,12 +108,12 @@ Now we use the self-signed server certificate to run our instance.
> -ssl_key_file server.key \
> -ssl_listen :443
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 08:50:58 server started
2022/02/17 08:50:58 main interface at http://macos.local
2022/02/17 08:50:58 main interface at https://macos.local
2022/02/17 08:50:58 admin interface at https://macos.local/admin
2022/02/24 08:50:58 server started
2022/02/24 08:50:58 main interface at http://macos.local
2022/02/24 08:50:58 main interface at https://macos.local
2022/02/24 08:50:58 admin interface at https://macos.local/admin
## Save your advanced configuration to a config file
@ -125,7 +125,7 @@ You don't want to have to type everytime a long list of arguments. No problem, y
> -ssl_key_file server.key \
> -ssl_listen :443 \
> -config_save
2022/02/17 08:52:24 rdio-scanner.ini file created
2022/02/24 08:52:24 rdio-scanner.ini file created
All of your parameters passed as arguments to [Rdio Scanner](https://github.com/chuot/rdio-scanner) have been saved to an INI file which has the same arguments/values list.
@ -140,12 +140,12 @@ Then simply run [Rdio Scanner](https://github.com/chuot/rdio-scanner) without an
rdio@macos rdio-scanner % ./rdio-scanner
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 08:54:08 server started
2022/02/17 08:54:08 main interface at http://macos.local
2022/02/17 08:54:08 main interface at https://macos.local
2022/02/17 08:54:08 admin interface at https://macos.local/admin
2022/02/24 08:54:08 server started
2022/02/24 08:54:08 main interface at http://macos.local
2022/02/24 08:54:08 main interface at https://macos.local
2022/02/24 08:54:08 admin interface at https://macos.local/admin
## Install Rdio Scanner as a service
@ -210,7 +210,7 @@ To get the whole list of arguments you can pass to [Rdio Scanner](https://github
# Need help ?
You can ask your questions or post your comments on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) at **[https://github.com/chuot/rdio-scanner/discussions](https://github.com/chuot/rdio-scanner/discussions)** or on the [Gitter Rdio Scanner Lobby](https://gitter.im/rdio-scanner/Lobby) at **[https://gitter.im/rdio-scanner/Lobby](https://gitter.im/rdio-scanner/Lobby)**.
You can ask your questions or post your comments on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) at **[https://github.com/chuot/rdio-scanner/discussions](https://github.com/chuot/rdio-scanner/discussions)**.
# Show your appreciation, support the author

View file

@ -42,8 +42,8 @@ ALWAYS DOWNLOAD THE LATEST VERSION OF [RDIO SCANNER](https://github.com/chuot/rd
rdio@pc-freebsd:~ $ mkdir rdio-scanner
rdio@pc-freebsd:~ $ cd rdio-scanner
rdio@pc-freebsd:~/rdio-scanner $ unzip \
> ~/rdio-scanner-freebsd-amd64-v6.1.13.zip
Archive: ../rdio-scanner-freebsd-amd64-v6.1.13.zip
> ~/rdio-scanner-freebsd-amd64-v6.1.14.zip
Archive: ../rdio-scanner-freebsd-amd64-v6.1.14.zip
extracting: rdio-scanner
extracting: rdio-scanner.pdf
@ -51,11 +51,11 @@ ALWAYS DOWNLOAD THE LATEST VERSION OF [RDIO SCANNER](https://github.com/chuot/rd
rdio@pc-freebsd:~/rdio-scanner $ ./rdio-scanner
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 08:16:36 server started
2022/02/17 08:16:36 main interface at http://pc-freebsd:3000
2022/02/17 08:16:36 admin interface at http://pc-freebsd:3000/admin
2022/02/24 08:16:36 server started
2022/02/24 08:16:36 main interface at http://pc-freebsd:3000
2022/02/24 08:16:36 admin interface at http://pc-freebsd:3000/admin
4. Access the administrative dashboard to finalize the configuration.
@ -81,11 +81,11 @@ Here we want our [Rdio Scanner](https://guthub.com/chuot/rdio-scanner) instance
Password:
root@pc-freebsd:/home/rdio/rdio-scanner # ./rdio-scanner -listen :80
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 08:19:38 server started
2022/02/17 08:19:38 main interface at http://pc-freebsd
2022/02/17 08:19:38 admin interface at http://pc-freebsd/admin
2022/02/24 08:19:38 server started
2022/02/24 08:19:38 main interface at http://pc-freebsd
2022/02/24 08:19:38 admin interface at http://pc-freebsd/admin
## Listening with SSL with self-signed certificates
@ -94,8 +94,8 @@ It is advised to share your [Rdio Scanner](https://github.com/chuot/rdio-scanner
We can create such self-signed certificates by running [Rdio Scanner](https://github.com/chuot/rdio-scanner) with the **-ssl_create** argument.
rdio@pc-freebsd:~/rdio-scanner $ ./rdio-scanner -ssl_create
2022/02/17 10:32:17 generating ssl certificate files
2022/02/17 10:32:19 ssl files created
2022/02/24 10:32:17 generating ssl certificate files
2022/02/24 10:32:19 ssl files created
This has generated these files in the same folder as your [Rdio Scanner](https://github.com/chuot/rdio-scanner) executable.
@ -114,12 +114,12 @@ Now we use the self-signed server certificate to run our instance.
> -ssl_key_file server.key \
> -ssl_listen :443
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 10:34:29 server started
2022/02/17 10:34:29 main interface at http://pc-freebsd
2022/02/17 10:34:29 main interface at https://pc-freebsd
2022/02/17 10:34:29 admin interface at https://pc-freebsd/admin
2022/02/24 10:34:29 server started
2022/02/24 10:34:29 main interface at http://pc-freebsd
2022/02/24 10:34:29 main interface at https://pc-freebsd
2022/02/24 10:34:29 admin interface at https://pc-freebsd/admin
## Save your advanced configuration to a config file
@ -131,7 +131,7 @@ You don't want to have to type everytime a long list of arguments. No problem, y
> -ssl_key_file server.key \
> -ssl_listen :443 \
> -config_save
2022/02/17 10:37:00 rdio-scanner.ini file created
2022/02/24 10:37:00 rdio-scanner.ini file created
All of your parameters passed as arguments to [Rdio Scanner](https://github.com/chuot/rdio-scanner) have been saved to an INI file which has the same arguments/values list.
@ -148,12 +148,12 @@ Then simply run [Rdio Scanner](https://github.com/chuot/rdio-scanner) without an
Password:
root@pc-freebsd:/home/rdio/rdio-scanner # ./rdio-scanner
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 10:38:28 server started
2022/02/17 10:38:29 main interface at http://pc-freebsd
2022/02/17 10:38:29 main interface at https://pc-freebsd
2022/02/17 10:38:29 admin interface at https://pc-freebsd/admin
2022/02/24 10:38:28 server started
2022/02/24 10:38:29 main interface at http://pc-freebsd
2022/02/24 10:38:29 main interface at https://pc-freebsd
2022/02/24 10:38:29 admin interface at https://pc-freebsd/admin
## Install Rdio Scanner as a service
@ -221,7 +221,7 @@ To get the whole list of arguments you can pass to [Rdio Scanner](https://github
# Need help ?
You can ask your questions or post your comments on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) at **[https://github.com/chuot/rdio-scanner/discussions](https://github.com/chuot/rdio-scanner/discussions)** or on the [Gitter Rdio Scanner Lobby](https://gitter.im/rdio-scanner/Lobby) at **[https://gitter.im/rdio-scanner/Lobby](https://gitter.im/rdio-scanner/Lobby)**.
You can ask your questions or post your comments on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) at **[https://github.com/chuot/rdio-scanner/discussions](https://github.com/chuot/rdio-scanner/discussions)**.
# Show your appreciation, support the author

View file

@ -42,8 +42,8 @@ ALWAYS DOWNLOAD THE LATEST VERSION OF [RDIO SCANNER](https://github.com/chuot/rd
[rdio@pc-linux ~]$ mkdir rdio-scanner
[rdio@pc-linux ~]$ cd rdio-scanner
[rdio@pc-linux rdio-scanner]$ unzip \
> ~/Downloads/rdio-scanner-linux-amd64-v6.1.13.zip
Archive: /home/rdio/Downloads/rdio-scanner-linux-amd64-v6.1.13.zip
> ~/Downloads/rdio-scanner-linux-amd64-v6.1.14.zip
Archive: /home/rdio/Downloads/rdio-scanner-linux-amd64-v6.1.14.zip
inflating: rdio-scanner
inflating: rdio-scanner.pdf
@ -51,11 +51,11 @@ ALWAYS DOWNLOAD THE LATEST VERSION OF [RDIO SCANNER](https://github.com/chuot/rd
[rdio@pc-linux rdio-scanner]$ ./rdio-scanner
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 09:11:48 server started
2022/02/17 09:11:48 main interface at http://pc-linux:3000
2022/02/17 09:11:48 admin interface at http://pc-linux:3000/admin
2022/02/24 09:11:48 server started
2022/02/24 09:11:48 main interface at http://pc-linux:3000
2022/02/24 09:11:48 admin interface at http://pc-linux:3000/admin
4. Access the administrative dashboard to finalize the configuration.
@ -78,11 +78,11 @@ Here we want our [Rdio Scanner](https://guthub.com/chuot/rdio-scanner) instance
[rdio@pc-linux rdio-scanner]$ sudo ./rdio-scanner -listen :80
[sudo] password for rdio:
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 09:14:00 server started
2022/02/17 09:14:00 main interface at http://pc-linux
2022/02/17 09:14:00 admin interface at http://pc-linux/admin
2022/02/24 09:14:00 server started
2022/02/24 09:14:00 main interface at http://pc-linux
2022/02/24 09:14:00 admin interface at http://pc-linux/admin
## Listening with SSL with self-signed certificates
@ -91,8 +91,8 @@ It is advised to share your [Rdio Scanner](https://github.com/chuot/rdio-scanner
We can create such self-signed certificates by running [Rdio Scanner](https://github.com/chuot/rdio-scanner) with the **-ssl_create** argument.
[rdio@pc-linux rdio-scanner]$ ./rdio-scanner -ssl_create
2022/02/17 09:15:03 generating ssl certificate files
2022/02/17 09:15:05 ssl files created
2022/02/24 09:15:03 generating ssl certificate files
2022/02/24 09:15:05 ssl files created
This has generated these files in the same folder as your [Rdio Scanner](https://github.com/chuot/rdio-scanner) executable.
@ -110,12 +110,12 @@ Now we use the self-signed server certificate to run our instance.
> -ssl_listen :443
[sudo] password for rdio:
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 09:16:47 server started
2022/02/17 09:16:47 main interface at http://pc-linux
2022/02/17 09:16:47 main interface at https://pc-linux
2022/02/17 09:16:47 admin interface at https://pc-linux/admin
2022/02/24 09:16:47 server started
2022/02/24 09:16:47 main interface at http://pc-linux
2022/02/24 09:16:47 main interface at https://pc-linux
2022/02/24 09:16:47 admin interface at https://pc-linux/admin
## Save your advanced configuration to a config file
@ -127,7 +127,7 @@ You don't want to have to type everytime a long list of arguments. No problem, y
> -ssl_key_file server.key \
> -ssl_listen :443 \
> -config_save
2022/02/17 09:19:29 rdio-scanner.ini file created
2022/02/24 09:19:29 rdio-scanner.ini file created
All of your parameters passed as arguments to [Rdio Scanner](https://github.com/chuot/rdio-scanner) have been saved to an INI file which has the same arguments/values list.
@ -143,12 +143,12 @@ Then simply run [Rdio Scanner](https://github.com/chuot/rdio-scanner) without an
[rdio@pc-linux rdio-scanner]$ sudo ./rdio-scanner
[sudo] Mot de passe de rdio :
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 09:20:40 server started
2022/02/17 09:20:40 main interface at http://pc-linux
2022/02/17 09:20:40 main interface at https://pc-linux
2022/02/17 09:20:40 admin interface at https://pc-linux/admin
2022/02/24 09:20:40 server started
2022/02/24 09:20:40 main interface at http://pc-linux
2022/02/24 09:20:40 main interface at https://pc-linux
2022/02/24 09:20:40 admin interface at https://pc-linux/admin
## Install Rdio Scanner as a service
@ -213,7 +213,7 @@ To get the whole list of arguments you can pass to [Rdio Scanner](https://github
# Need help ?
You can ask your questions or post your comments on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) at **[https://github.com/chuot/rdio-scanner/discussions](https://github.com/chuot/rdio-scanner/discussions)** or on the [Gitter Rdio Scanner Lobby](https://gitter.im/rdio-scanner/Lobby) at **[https://gitter.im/rdio-scanner/Lobby](https://gitter.im/rdio-scanner/Lobby)**.
You can ask your questions or post your comments on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) at **[https://github.com/chuot/rdio-scanner/discussions](https://github.com/chuot/rdio-scanner/discussions)**.
# Show your appreciation, support the author

View file

@ -44,7 +44,7 @@ ALWAYS DOWNLOAD THE LATEST VERSION OF [RDIO SCANNER](https://github.com/chuot/rd
C:\Users\rdio> cd rdio-scanner
C:\Users\rdio\rdio-scanner> tar -xvf ^
..\downloads\rdio-scanner-windows-amd64-v6.1.13.zip
..\downloads\rdio-scanner-windows-amd64-v6.1.14.zip
x rdio-scanner.exe
x rdio-scanner.pdf
@ -52,11 +52,11 @@ ALWAYS DOWNLOAD THE LATEST VERSION OF [RDIO SCANNER](https://github.com/chuot/rd
C:\Users\rdio\rdio-scanner>rdio-scanner
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 13:48:48 server started
2022/02/17 13:48:48 main interface at http://pc-windows:3000
2022/02/17 13:48:48 admin interface at http://pc-windows:3000/admin
2022/02/24 13:48:48 server started
2022/02/24 13:48:48 main interface at http://pc-windows:3000
2022/02/24 13:48:48 admin interface at http://pc-windows:3000/admin
4. Access the administrative dashboard to finalize the configuration.
@ -78,11 +78,11 @@ Here we want our [Rdio Scanner](https://guthub.com/chuot/rdio-scanner) instance
C:\Users\rdio\rdio-scanner>rdio-scanner -listen :80
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 10:53:31 server started
2022/02/17 10:53:31 main interface at http://pc-windows
2022/02/17 10:53:31 admin interface at http://pc-windows/admin
2022/02/24 10:53:31 server started
2022/02/24 10:53:31 main interface at http://pc-windows
2022/02/24 10:53:31 admin interface at http://pc-windows/admin
## Listening with SSL with self-signed certificates
@ -91,8 +91,8 @@ It is advised to share your [Rdio Scanner](https://github.com/chuot/rdio-scanner
We can create such self-signed certificates by running [Rdio Scanner](https://github.com/chuot/rdio-scanner) with the **-ssl_create** argument.
C:\Users\rdio\rdio-scanner>rdio-scanner -ssl_create
2022/02/17 10:58:51 generating ssl certificate files
2022/02/17 10:58:54 ssl files created
2022/02/24 10:58:51 generating ssl certificate files
2022/02/24 10:58:54 ssl files created
This has generated these files in the same folder as your [Rdio Scanner](https://github.com/chuot/rdio-scanner) executable.
@ -109,12 +109,12 @@ Now we use the self-signed server certificate to run our instance.
-ssl_key_file server.key ^
-ssl_listen :443
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 11:05:43 server started
2022/02/17 11:05:43 main interface at http://pc-windows
2022/02/17 11:05:43 main interface at https://pc-windows
2022/02/17 11:05:43 admin interface at https://pc-windows/admin
2022/02/24 11:05:43 server started
2022/02/24 11:05:43 main interface at http://pc-windows
2022/02/24 11:05:43 main interface at https://pc-windows
2022/02/24 11:05:43 admin interface at https://pc-windows/admin
## Save your advanced configuration to a config file
@ -126,7 +126,7 @@ You don't want to have to type everytime a long list of arguments. No problem, y
-ssl_key_file server.key ^
-ssl_listen :443 ^
-config_save
2022/02/17 11:08:28 rdio-scanner.ini file created
2022/02/24 11:08:28 rdio-scanner.ini file created
All of your parameters passed as arguments to [Rdio Scanner](https://github.com/chuot/rdio-scanner) have been saved to an INI file which has the same arguments/values list.
@ -141,12 +141,12 @@ Then simply run [Rdio Scanner](https://github.com/chuot/rdio-scanner) without an
C:\Users\rdio\rdio-scanner>rdio-scanner
Rdio Scanner v6.1.13
Rdio Scanner v6.1.14
----------------------------------
2022/02/17 11:11:28 server started
2022/02/17 11:11:28 main interface at http://pc-windows
2022/02/17 11:11:28 main interface at https://pc-windows
2022/02/17 11:11:28 admin interface at https://pc-windows/admin
2022/02/24 11:11:28 server started
2022/02/24 11:11:28 main interface at http://pc-windows
2022/02/24 11:11:28 main interface at https://pc-windows
2022/02/24 11:11:28 admin interface at https://pc-windows/admin
\pagebreak{}
@ -211,7 +211,7 @@ To get the whole list of arguments you can pass to [Rdio Scanner](https://github
# Need help ?
You can ask your questions or post your comments on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) at **[https://github.com/chuot/rdio-scanner/discussions](https://github.com/chuot/rdio-scanner/discussions)** or on the [Gitter Rdio Scanner Lobby](https://gitter.im/rdio-scanner/Lobby) at **[https://gitter.im/rdio-scanner/Lobby](https://gitter.im/rdio-scanner/Lobby)**.
You can ask your questions or post your comments on the [Rdio Scanner Discussions](https://github.com/chuot/rdio-scanner/discussions) at **[https://github.com/chuot/rdio-scanner/discussions](https://github.com/chuot/rdio-scanner/discussions)**.
# Show your appreciation, support the author

View file

@ -97,7 +97,7 @@ func (client *Client) Init(controller *Controller, conn *websocket.Conn) error {
go func() {
ticker := time.NewTicker(pingPeriod)
timer := time.AfterFunc(writeWait, func() {
timer := time.AfterFunc(pongWait, func() {
client.Conn.Close()
})

View file

@ -8,9 +8,9 @@ require (
github.com/go-sql-driver/mysql v1.6.0
github.com/golang-jwt/jwt/v4 v4.3.0
github.com/google/uuid v1.3.0
github.com/gorilla/websocket v1.4.2
github.com/gorilla/websocket v1.5.0
github.com/kardianos/service v1.2.1
golang.org/x/crypto v0.0.0-20220213190939-1e6e3497d506
golang.org/x/crypto v0.0.0-20220214200702-86341886e292
gopkg.in/ini.v1 v1.66.4
modernc.org/sqlite v1.14.6
)
@ -21,8 +21,8 @@ require (
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/mod v0.5.1 // indirect
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/sys v0.0.0-20220224120231-95c6836cb0e7 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.9 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect

View file

@ -16,6 +16,8 @@ github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/gorilla/websocket v1.4.2 h1:+/TMaTYc4QFitKJxsQ7Yye35DkWvkdLcvGKqM+x0Ufc=
github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
github.com/kardianos/service v1.2.1 h1:AYndMsehS+ywIS6RB9KOlcXzteWUzxgMgBymJD7+BYk=
github.com/kardianos/service v1.2.1/go.mod h1:CIMRFEJVL+0DS1a3Nx06NaMn4Dz63Ng6O7dl0qH0zVM=
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 h1:Z9n2FFNUXsshfwJMBgNA0RU6/i7WVaAegv3PtuIHPMs=
@ -39,6 +41,8 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
golang.org/x/crypto v0.0.0-20220213190939-1e6e3497d506 h1:EuGTJDfeg/PGZJp3gq1K+14eSLFTsrj1eg8KQuiUyKg=
golang.org/x/crypto v0.0.0-20220213190939-1e6e3497d506/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 h1:f+lwQ+GtmgoY+A2YaQxlSOnDjXcQ7ZRLWOHbC6HtRqE=
golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
golang.org/x/mod v0.5.1 h1:OJxoQ/rynoF0dcCdI7cLPktw/hR2cueqYfjm43oqK38=
golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro=
@ -48,6 +52,8 @@ golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwY
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 h1:CIJ76btIcR3eFI5EgSo6k1qKw9KJexJuRLI9G7Hp5wE=
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd h1:O7DYs+zxREGLKzKoMQrtrEacpb0ZVXA5rIwylE2Xchk=
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@ -66,6 +72,8 @@ golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBc
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 h1:rm+CHSpPEEW2IsXUib1ThaHIjuBVZjxNgSKmBLFfD4c=
golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220224120231-95c6836cb0e7 h1:BXxu8t6QN0G1uff4bzZzSkpsax8+ALqTGUtz08QrV00=
golang.org/x/sys v0.0.0-20220224120231-95c6836cb0e7/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=

View file

@ -15,4 +15,4 @@
package main
const Version = "6.1.13"
const Version = "6.1.14"