Compare commits

..

9 Commits

Author SHA1 Message Date
Dr_rOot 6ea3112691 fix: update version to 1.0.10 2019-01-03 10:19:13 +08:00
Dr_rOot 8c63f97d8e fix: change win32 aria2c to 32bit 2019-01-03 10:12:21 +08:00
Dr_rOot a749740900 fix: win32 & linux default aria2 conf 2019-01-02 19:46:44 +08:00
Dr_rOot cad03c1867 fix: update version 1.0.9 2019-01-02 19:45:52 +08:00
Dr_rOot c04f39318e fix: update win32 aria2 version 2019-01-02 19:45:24 +08:00
Dr_rOot a7fe65f24b doc: add build badge 2019-01-02 19:36:10 +08:00
Dr_rOot 7e494ae6cf fix: remove git lfs 2019-01-02 15:51:24 +08:00
Dr_rOot 23c61bcb14 fix: travis git lfs error on mac 2019-01-02 15:47:41 +08:00
Dr_rOot c408127d6e fix: travis before_install 2019-01-02 15:32:21 +08:00
7 changed files with 8 additions and 9 deletions
-3
View File
@@ -19,9 +19,6 @@ addons:
- libgnome-keyring-dev
- icnsutils
before_install:
- mkdir -p /tmp/git-lfs && curl -L https://github.com/github/git-lfs/releases/download/v1.2.1/git-lfs-$([
"$TRAVIS_OS_NAME" == "linux" ] && echo "linux" || echo "darwin")-amd64-1.2.1.tar.gz
| tar -xz -C /tmp/git-lfs --strip-components 1 && /tmp/git-lfs/git-lfs pull
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-utils; fi
install:
- nvm install 10
+3 -1
View File
@@ -5,6 +5,8 @@
</a>
## 一款全能的下载工具
[![Build Status](https://travis-ci.org/agalwood/Motrix.svg?branch=master)](https://travis-ci.org/agalwood/Motrix) [![Build status](https://ci.appveyor.com/api/projects/status/l11d5h05xwwcvoux/branch/master?svg=true)](https://ci.appveyor.com/project/agalwood/motrix/branch/master)
支持下载 HTTP、FTP、BT、磁力链、百度网盘等资源
@@ -17,7 +19,7 @@
## 🛠 技术栈
- [Electron](https://electronjs.org/)
- [Vue](https://vuejs.org/) + [VueX](https://vuex.vuejs.org/) + [Element](https://element.eleme.io)
- [Aria2](https://aria2.github.io/)
- [Aria2](https://aria2.github.io/) (注:macOS 和 Linux 版本使用的是 64 位的 aria2cWindows 版使用的 32 位的)
## 📦 自行编译
+1 -1
View File
@@ -13,7 +13,7 @@
# 预分配所需时间: none < falloc ? trunc < prealloc
# falloc和trunc则需要文件系统和内核支持
# NTFS建议使用falloc, EXT3/4建议trunc, MAC 下需要注释此项
# file-allocation=none
file-allocation=trunc
# 断点续传
#@continue=true
+1 -1
View File
@@ -13,7 +13,7 @@
# 预分配所需时间: none < falloc ? trunc < prealloc
# falloc和trunc则需要文件系统和内核支持
# NTFS建议使用falloc, EXT3/4建议trunc, MAC 下需要注释此项
# file-allocation=none
file-allocation=falloc
# 断点续传
#@continue=true
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "Motrix",
"version": "1.0.8",
"version": "1.0.10",
"description": "A full-featured download manager",
"homepage": "https://motrix.app",
"author": {
@@ -15,7 +15,7 @@
"url": "git@github.com:agalwood/Motrix.git"
},
"scripts": {
"release": "npm run build --publish always",
"release": "npm run build --publish onTagOrDraft",
"build": "node .electron-vue/build.js && electron-builder",
"build:dir": "node .electron-vue/build.js && electron-builder --dir",
"build:clean": "cross-env BUILD_TARGET=clean node .electron-vue/build.js",
+1 -1
View File
@@ -1,5 +1,5 @@
export default {
'darwin': 'aria2c',
'win32': 'aria2.exe',
'win32': 'aria2c.exe',
'linux': 'aria2c'
}