-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* master: chore: clean the code chore: add scripts to build and release feat: add configs for the email smtp chore: update the Makefile
- Loading branch information
Showing
18 changed files
with
263 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [1.1.1] - 2017-06-20 | ||
### Added | ||
- New visual identity by [@tylerfortune8](https://github.com/tylerfortune8). | ||
- Version navigation. | ||
|
||
### Changed | ||
- Start using "changelog" over "change log" since it's the common usage. | ||
|
||
### Removed | ||
- Section about "changelog" vs "CHANGELOG". | ||
|
||
## [1.0.5] - 2019-10-16 | ||
### Added | ||
- RU translation from [@aishek](https://github.com/aishek). | ||
- pt-BR translation from [@tallesl](https://github.com/tallesl). | ||
- es-ES translation from [@ZeliosAriex](https://github.com/ZeliosAriex). | ||
|
||
分享链接匿名用户无法访问 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
host: http://local.frpx.saltbo.cn:1080 | ||
mysqldsn: root:root@tcp(127.0.0.1:3306)/zpan?charset=utf8&interpolateParams=true | ||
|
||
provider: | ||
name: alioss | ||
bucket: saltbo-zpan-test | ||
endpoint: https://oss-cn-zhangjiakou.aliyuncs.com | ||
access_key: LTAI4FxxxxxxxxxxxxBXmS3 | ||
access_secret: Vt1FZgXxxxxxxxxxxxxxxx380AI | ||
access_secret: Vt1FZgXxxxxxxxxxxxxxxx380AI | ||
|
||
email: | ||
host: smtpdm.aliyun.com:25 | ||
user: zpan@mail.saltbo.cn | ||
password: SvNxxxxxxxxJZB |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[Unit] | ||
Description=zpan - A cloud disk base on the cloud storage. | ||
Documentation=https://github.com/saltbo/zpan | ||
After=network.target remote-fs.target nss-lookup.target | ||
|
||
[Service] | ||
Type=forking | ||
PIDFile=/run/zpan.pid | ||
ExecStart=/usr/local/bin/zpan -c /etc/zpan/config.yaml | ||
ExecReload=/bin/kill -s HUP $MAINPID | ||
ExecStop=/bin/kill -s QUIT $MAINPID | ||
PrivateTmp=true | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.