Skip to content

Commit

Permalink
fix: change binary & prevent second instance
Browse files Browse the repository at this point in the history
  • Loading branch information
7Red4 committed Jan 4, 2022
1 parent d57deca commit 12b4065
Show file tree
Hide file tree
Showing 15 changed files with 10,779 additions and 113 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
# YT 下載器

可以下載 youtube 影片的跨平台桌面應用程式
使用 [ytdl-core]('https://github.com/fent/node-ytdl-core') 作為核心 [youtube-dl]('https://github.com/ytdl-org/youtube-dl') 作為副核心 [ffmpeg]('https://www.ffmpeg.org/') 做影像處理
使用 [ytdl-core]('https://github.com/fent/node-ytdl-core') 作為核心 [yt-dlp]('https://github.com/ytdl-org/yt-dlp') 作為副核心 [ffmpeg]('https://www.ffmpeg.org/') 做影像處理

ver 2.4.0
ver 2.4.1

[載點](https://github.com/7Red4/ytDownloader/releases)

Expand Down Expand Up @@ -54,7 +54,7 @@ ver 2.4.0
- [x] 只下載 音/視訊
- [x] 大量下載
- [x] 只下載 音/視訊
- [x] 可選擇使用 [youtube-dl](https://github.com/ytdl-org/youtube-dl) 的方法下載
- [x] 可選擇使用 [yt-dlp](https://github.com/ytdl-org/yt-dlp) 的方法下載
- [ ] 可以選定下載片段
- [x] 可以設定時間自動錄製直播中節目
- [ ] 狀態列進度
Expand Down
2 changes: 1 addition & 1 deletion README_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

A cross-platform desktop app for downloading youtube videos

ver 2.4.0
ver 2.4.1

[download](https://github.com/7Red4/ytDownloader/releases)

Expand Down
116 changes: 57 additions & 59 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,59 +1,57 @@
{
"name": "yt-downloader",
"version": "2.4.0",
"description": "A youtube downloader by ytdl-core",
"private": true,
"scripts": {
"vues": "vue-cli-service serve",
"vueb": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build": "vue-cli-service electron:build",
"dev": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"author": "7Red4",
"main": "background.js",
"dependencies": {
"app-root-dir": "^1.0.2",
"cookiefile": "^1.0.10",
"core-js": "^3.6.5",
"dayjs": "^1.10.7",
"filenamify": "^4.3.0",
"lowdb": "^1.0.0",
"stream-to-blob": "^2.0.1",
"vue": "^2.6.11",
"vue-router": "^3.2.0",
"vuetify": "^2.4.0",
"vuex": "^3.4.0",
"ytdl-core": "^4.9.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.0.0",
"consola": "^2.15.3",
"electron": "^12.0.0",
"electron-devtools-installer": "^3.1.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.2.2",
"node-sass": "^4.12.0",
"prettier": "^2.2.1",
"sass": "~1.32.0",
"sass-loader": "^10.0.0",
"vue-cli-plugin-electron-builder": "~2.0.0",
"vue-cli-plugin-vuetify": "~2.4.1",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.7.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}
{
"name": "yt-downloader",
"version": "2.4.1",
"description": "A youtube downloader by ytdl-core",
"private": true,
"scripts": {
"vues": "vue-cli-service serve",
"vueb": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build": "vue-cli-service electron:build",
"dev": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"author": "7Red4",
"main": "background.js",
"dependencies": {
"app-root-dir": "^1.0.2",
"cookiefile": "^1.0.10",
"core-js": "^3.20.2",
"dayjs": "^1.10.7",
"filenamify": "^4.3.0",
"lowdb": "^1.0.0",
"stream-to-blob": "^2.0.1",
"vue": "^2.6.14",
"vue-router": "^3.5.3",
"vuetify": "^2.6.2",
"vuex": "^3.6.2",
"ytdl-core": "^4.9.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-eslint": "~4.5.15",
"@vue/cli-plugin-router": "~4.5.15",
"@vue/cli-plugin-vuex": "~4.5.15",
"@vue/cli-service": "~4.5.15",
"@vue/eslint-config-prettier": "^6.0.0",
"consola": "^2.15.3",
"electron": "^12.2.3",
"electron-devtools-installer": "^3.2.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "^6.2.2",
"prettier": "^2.5.1",
"sass": "~1.32.13",
"sass-loader": "^10.2.0",
"vue-cli-plugin-electron-builder": "~2.0.0",
"vue-cli-plugin-vuetify": "~2.4.5",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.3"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}
Loading

0 comments on commit 12b4065

Please sign in to comment.