9 Commits

Author SHA1 Message Date
xrayrgoon
974abc9a98
xray-core v25.3.6 and other updates (#748)
Some checks failed
CodeQL / Analyze (go) (push) Failing after 4m49s
Build and Release / build (386, freebsd) (push) Failing after 8m40s
Build and Release / build (386, linux) (push) Failing after 7m10s
Build and Release / build (386, windows) (push) Failing after 6m49s
Build and Release / build (amd64, darwin) (push) Failing after 7m8s
Build and Release / build (amd64, freebsd) (push) Failing after 7m31s
Build and Release / build (amd64, linux) (push) Failing after 7m20s
Build and Release / build (amd64, openbsd) (push) Failing after 7m4s
Build and Release / build (amd64, windows) (push) Failing after 7m9s
Build and Release / build (arm, 5, linux) (push) Failing after 6m44s
Build and Release / build (arm, 6, linux) (push) Failing after 6m42s
Build and Release / build (arm, 7, freebsd) (push) Failing after 6m32s
Build and Release / build (arm, 7, linux) (push) Failing after 6m43s
Build and Release / build (arm64, android) (push) Failing after 6m59s
Build and Release / build (arm64, darwin) (push) Failing after 6m54s
Build and Release / build (arm64, freebsd) (push) Failing after 6m52s
Build and Release / build (arm64, linux) (push) Failing after 7m5s
Build and Release / build (mips, linux) (push) Failing after 12m35s
Build and Release / build (mips64, linux) (push) Failing after 7m4s
Build and Release / build (mips64le, linux) (push) Failing after 6m39s
Build and Release / build (mipsle, linux) (push) Failing after 11m56s
Build and Release / build (ppc64le, linux) (push) Failing after 6m54s
Build and Release / build (riscv64, linux) (push) Failing after 8m10s
Build and Release / build (s390x, linux) (push) Failing after 6m56s
Close inactive issues / close-issues (push) Successful in 25s
2025-03-21 02:07:22 +08:00
RyarX
9391c759c9
New transports and api changes for V2RaySocks (#685)
* New transports and api changes for V2RaySocks

* version++
2024-10-19 22:03:05 +08:00
mengxin239
944e8cd6a8 version++ 2024-07-21 13:12:31 +08:00
MengXin239
dbde0c24fc version++ 2024-06-09 22:19:33 +08:00
Senis
4a234d50e2
Add debug level logging option
This update introduces the ability to enable logging from the caller when the log level is set to "debug". This additional logging feature will provide more specificity and context for debugging tasks, aiding in quicker issue resolution.
2023-12-29 12:25:33 +08:00
Senis
115d7bad6f
Replace standard log package with logrus
The standard "log" package was replaced by the structured logger "github.com/sirupsen/logrus" for better log control in various files. This change will allow to tailor the logging information more precisely and make logs easier to read and analyze. All calls of standard log methods were replaced by their logrus counterparts.
2023-12-28 13:40:31 +08:00
Senis John
97d89549dd
Update application version and enhance error handling
The commit increases the version number from 0.9.1 to 0.9.2 in version.go. Additionally, an error check has been added in x25519.go to validate the private key size. Also, panel.go has been modified to accept both "NewV2board" and "V2board" as valid panel types.
2023-10-17 15:36:32 +08:00
Senis John
fd0a23bf6c
"Add option to input private key for x25519 command"
Added a command line flag to allow the user to provide an input for the private key while utilizing the x25519 command. The function `x25519` was also modified to account for the possibility of a user-inputted private key. If no private key is provided, random bytes will be generated for the private key as before. This feature provides flexibility for the user in key management.
2023-10-14 21:46:00 +08:00
Senis John
b1bfd04895
Refactor main to use Cobra command line framework and package restructure
Reorganized the Go package structure, moving the main package to 'cmd'. Upgraded the flag library to Cobra for better management of CLI commands. This included moving the X25519 key generation from a flag to its own standalone Cobra command, which improves user interaction and code modularity. This structural change will benefit future additions and code maintainability.
2023-10-14 11:21:45 +08:00