1. added multipath protocol and schema suport

2. added SCTP protocol and schema support
3. added set of NAS models support (Asustor, ReadyNAS, Drobo, QNAP, WD, Synology, Terramaster)
4. moved to fc00::/7 private segment
5. added Windows, MacOS and Linux UI for peers edit and current status
This commit is contained in:
vadym 2022-10-27 22:03:37 +03:00
parent cfa293d189
commit d8a4000141
198 changed files with 8589 additions and 697 deletions

31
appveyor.yml Normal file
View file

@ -0,0 +1,31 @@
version: '{build}'
pull_requests:
do_not_increment_build_number: true
os: Visual Studio 2022
shallow_clone: false
environment:
MSYSTEM: MINGW64
MSYS2_PATH_TYPE: inherit
CHERE_INVOKING: enabled_from_arguments
GO111MODULE: on
GOPATH: c:\gopath
stack: go 1.19
build_script:
- cmd: >-
cd %APPVEYOR_BUILD_FOLDER%
##### MinGW build
- set OPT_PATH=C:\msys64\mingw32\bin;C:\msys64\mingw64\bin;
- set PATH=%GOPATH%\bin;%OPT_PATH%%PATH%
- go install github.com/tc-hib/go-winres@latest
- c:\msys64\usr\bin\bash -lc "./contrib/msi/build-msi.sh x64"
- c:\msys64\usr\bin\bash -lc "./contrib/msi/build-msi.sh x86"
- c:\msys64\usr\bin\bash -lc "./contrib/msi/build-msi-gui.sh x64"
- c:\msys64\usr\bin\bash -lc "./contrib/msi/build-msi-gui.sh x86"
test: off
artifacts:
- path: '*.msi'