mirror of
https://github.com/qaiu/netdisk-fast-download.git
synced 2025-12-16 04:13:03 +00:00
- 更新版本号: 0.1.5->0.1.6
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
[](https://github.com/qaiu/netdisk-fast-download/actions/workflows/maven.yml)
|
[](https://github.com/qaiu/netdisk-fast-download/actions/workflows/maven.yml)
|
||||||
[](https://www.oracle.com/cn/java/technologies/downloads/)
|
[](https://www.oracle.com/cn/java/technologies/downloads/)
|
||||||
[](https://vertx-china.github.io/)
|
[](https://vertx-china.github.io/)
|
||||||
[](https://github.com/qaiu/netdisk-fast-download/releases/tag/0.1.5-releases)
|
[](https://github.com/qaiu/netdisk-fast-download/releases/tag/0.1.6-releases)
|
||||||
|
|
||||||
## 网盘支持情况:
|
## 网盘支持情况:
|
||||||
`网盘名称(网盘标识):`
|
`网盘名称(网盘标识):`
|
||||||
@@ -127,7 +127,7 @@ mvn package
|
|||||||
> 注意: netdisk-fast-download.service中的ExecStart的路径改为实际路径
|
> 注意: netdisk-fast-download.service中的ExecStart的路径改为实际路径
|
||||||
```shell
|
```shell
|
||||||
cd ~
|
cd ~
|
||||||
wget -O netdisk-fast-download-0.1.5-bin.zip https://github.com/qaiu/netdisk-fast-download/releases/download/0.1.5-releases/netdisk-fast-download-0.1.5-bin.zip
|
wget -O netdisk-fast-download-0.1.6-bin.zip https://github.com/qaiu/netdisk-fast-download/releases/download/0.1.6-releases/netdisk-fast-download-0.1.6-bin.zip
|
||||||
unzip netdisk-fast-download-*-bin.zip
|
unzip netdisk-fast-download-*-bin.zip
|
||||||
cd netdisk-fast-download-*-bin
|
cd netdisk-fast-download-*-bin
|
||||||
bash service-install.sh
|
bash service-install.sh
|
||||||
@@ -153,8 +153,8 @@ systemctl enable netdisk-fast-download.servic
|
|||||||
systemctl disable netdisk-fast-download.servic
|
systemctl disable netdisk-fast-download.servic
|
||||||
|
|
||||||
## Windows服务部署
|
## Windows服务部署
|
||||||
1. 下载并解压releases版本netdisk-fast-download-0.1.5-bin.zip
|
1. 下载并解压releases版本netdisk-fast-download-0.1.6-bin.zip
|
||||||
2. 进入netdisk-fast-download-0.1.5-bin目录
|
2. 进入netdisk-fast-download-0.1.6-bin目录
|
||||||
3. 使用管理员权限运行nfd-service-install.bat
|
3. 使用管理员权限运行nfd-service-install.bat
|
||||||
如果不想使用服务运行可以直接运行run.bat
|
如果不想使用服务运行可以直接运行run.bat
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ Wants=network-online.target
|
|||||||
Type=simple
|
Type=simple
|
||||||
# User=USER
|
# User=USER
|
||||||
# 需要JDK17及以上版本 注意修改为自己的路径
|
# 需要JDK17及以上版本 注意修改为自己的路径
|
||||||
ExecStart=/root/java/jdk-17.0.2/bin/java -server -Xmx128m -jar /root/java/netdisk-fast-download-0.1.5/netdisk-fast-download-0.1.5.jar
|
ExecStart=/root/java/jdk-17.0.2/bin/java -server -Xmx128m -jar /root/java/netdisk-fast-download-0.1.6/netdisk-fast-download-0.1.6.jar
|
||||||
ExecStop=/bin/kill -s QUIT $MAINPID
|
ExecStop=/bin/kill -s QUIT $MAINPID
|
||||||
Restart=always
|
Restart=always
|
||||||
StandOutput=syslog
|
StandOutput=syslog
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# set -x
|
# set -x
|
||||||
LAUNCH_JAR="netdisk-fast-download-0.1.5.jar"
|
LAUNCH_JAR="netdisk-fast-download-0.1.6.jar"
|
||||||
nohup java -Xmx512M -jar "$LAUNCH_JAR" "$@" >startup.log 2>&1 &
|
nohup java -Xmx512M -jar "$LAUNCH_JAR" "$@" >startup.log 2>&1 &
|
||||||
tail -f startup.log
|
tail -f startup.log
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>netdisk-fast-download</artifactId>
|
<artifactId>netdisk-fast-download</artifactId>
|
||||||
<groupId>cn.qaiu</groupId>
|
<groupId>cn.qaiu</groupId>
|
||||||
<version>0.1.5</version>
|
<version>0.1.6</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>netdisk-fast-download</artifactId>
|
<artifactId>netdisk-fast-download</artifactId>
|
||||||
<groupId>cn.qaiu</groupId>
|
<groupId>cn.qaiu</groupId>
|
||||||
<version>0.1.5</version>
|
<version>0.1.6</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<version>1.0.8</version>
|
<version>1.0.8</version>
|
||||||
|
|||||||
2
pom.xml
2
pom.xml
@@ -7,7 +7,7 @@
|
|||||||
<groupId>cn.qaiu</groupId>
|
<groupId>cn.qaiu</groupId>
|
||||||
<artifactId>netdisk-fast-download</artifactId>
|
<artifactId>netdisk-fast-download</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>0.1.5</version>
|
<version>0.1.6</version>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>core</module>
|
<module>core</module>
|
||||||
|
|||||||
@@ -5,10 +5,10 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>netdisk-fast-download</artifactId>
|
<artifactId>netdisk-fast-download</artifactId>
|
||||||
<groupId>cn.qaiu</groupId>
|
<groupId>cn.qaiu</groupId>
|
||||||
<version>0.1.5</version>
|
<version>0.1.6</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<version>0.1.5</version>
|
<version>0.1.6</version>
|
||||||
<artifactId>web-service</artifactId>
|
<artifactId>web-service</artifactId>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>cn.qaiu</groupId>
|
<groupId>cn.qaiu</groupId>
|
||||||
<artifactId>core-database</artifactId>
|
<artifactId>core-database</artifactId>
|
||||||
<version>0.1.5</version>
|
<version>0.1.6</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,6 @@
|
|||||||
active: dev
|
active: dev
|
||||||
# 框架版本号 和主版本号
|
# 框架版本号 和主版本号
|
||||||
version_vertx: 4.4.1
|
version_vertx: 4.4.1
|
||||||
version_app: 0.1.5
|
version_app: 0.1.6
|
||||||
# 公司名称 -> LOGO版权文字
|
# 公司名称 -> LOGO版权文字
|
||||||
copyright: QAIU
|
copyright: QAIU
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ https://musetransfer.com/s/a85hmqm1g
|
|||||||
# 'L3RyYW5zZmVyL3NoYXJlL2Rvd25sb2Fk|eyJjb2RlIjoiODFucTRnbThqIiwgICJwd2QiOiIzMTg0In0=|xz9ynai8bi|'
|
# 'L3RyYW5zZmVyL3NoYXJlL2Rvd25sb2Fk|eyJjb2RlIjoiODFucTRnbThqIiwgICJwd2QiOiIzMTg0In0=|xz9ynai8bi|'
|
||||||
|
|
||||||
###
|
###
|
||||||
https://transfer.musecdn1.com/a85hmqm1g/d43a1b3baf646501368a7cc2a087ae8e.zip?auth_key=1686790800-YTg1aG1xbTFnOjE1OTU1NA-0-19b281e3e5fefedac6c57272deb6e747&response-content-type=application/octet-stream&response-content-disposition=attachment%3B%20filename%3D%22netdisk-fast-download-0.1.5-bin.zip%22%3B%20filename%2A%3DUTF-8%27%27netdisk-fast-download-0.1.5-bin.zip
|
https://transfer.musecdn1.com/a85hmqm1g/d43a1b3baf646501368a7cc2a087ae8e.zip?auth_key=1686790800-YTg1aG1xbTFnOjE1OTU1NA-0-19b281e3e5fefedac6c57272deb6e747&response-content-type=application/octet-stream&response-content-disposition=attachment%3B%20filename%3D%22netdisk-fast-download-0.1.6-bin.zip%22%3B%20filename%2A%3DUTF-8%27%27netdisk-fast-download-0.1.6-bin.zip
|
||||||
Referer:https://musetransfer.com/
|
Referer:https://musetransfer.com/
|
||||||
|
|
||||||
###
|
###
|
||||||
|
|||||||
Reference in New Issue
Block a user