-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
68 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
# idea 配置文件 | ||
# Idea Project | ||
*.iml | ||
.idea/* | ||
.idea/ | ||
|
||
*.nb | ||
# yarn | ||
node_modules/ | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Build Temp | ||
.DS_Store | ||
dist/ | ||
demo/ | ||
|
||
|
||
# Notebook | ||
*.nb |
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,42 @@ | ||
sudo: required | ||
dist: trusty | ||
branches: | ||
only: | ||
- master | ||
# 只需要自定义下面五个量 | ||
env: | ||
global: | ||
- GITHUB_NAME: Gal@Builder # 瞎填都可以 | ||
- GITHUB_MAIL: [email protected] # 瞎填都可以 | ||
- GITHUB_USER: Moe-Net # 你的用户名 | ||
- GITHUB_REPO: BilibiliLink # 你的项目名 | ||
# 还有一个 TRAVIS_KEY 填在 travis settings 里! | ||
# 教程: https://github.com/settings/tokens | ||
before_script: | ||
- git config --global user.name "${GITHUB_NAME}" | ||
- git config --global user.email "${GITHUB_MAIL}" | ||
- export TZ='Asia/Shanghai' | ||
- git tag "$(date +'%Y%m%d%H%M%S')-$(git log --format=%h -1)" | ||
script: | ||
# 记录搜索深度 10 | ||
- git clone --depth 10 --branch master --single-branch https://github.com/${GITHUB_USER}/${GITHUB_REPO} | ||
- cd ${GITHUB_REPO} | ||
- ver=`git tag | awk 'END {print}'` | ||
- nVer=`echo $ver | awk -F. '{printf "%s.%s.%s\n",$1,$2,$3+1}'` | ||
- echo $ver | ||
before_deploy: | ||
- rm -rf .git | ||
- rm -rf Documentation | ||
- rm -rf Packages/_* | ||
- cd .. | ||
- tar -cJf ${GITHUB_REPO}.tar.xz ${GITHUB_REPO} | ||
deploy: | ||
provider: releases | ||
api_key: | ||
secure: ${TRAVIS_KEY} | ||
name: AutoBuild-$nVer | ||
file: | ||
- ${GITHUB_REPO}.tar.xz | ||
skip_cleanup: true | ||
on: | ||
repo: ${GITHUB_USER}/${GITHUB_REPO} |
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,5 +1,6 @@ | ||
$BilibiliDataServer::usage = "远程数据服务器"; | ||
|
||
Begin["`Server`"]; | ||
$BilibiliDataServer = "https://mma.vers.site"; | ||
$BilibiliDataServer = "https://m.vers.site"; | ||
|
||
End[] |
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