Manage the local movies
# install dependencies
npm install
# serve with hot reload at localhost:9080
npm run dev
# build electron application for production
npm run build
P.S. The node module pinyin
requires VS 2015 or MSBuild 14.0 to build up (on Windows).
If it says MSBUILD : error MSB3428 Could not load the Visual C++ component "VCBuild.exe"
, use the following command to fix:
npm install --global --production windows-build-tools
P.S. The node module drivelist
may need rebuild (electron-builder install-app-deps
or npm run postinstall
) after install.
如果出现无法build的情况请为npm设置代理服务器。
- Add logo for app
- Add integration of douban services
- Add shortcuts for searching subtitles
- Fix cannot add the same directory just deleted
- Fix cannot generate screenshots properly
- Optimize the config JSON structure
- Optimize using experience
- The explorer of local movies
- Auto-generate screenshots for movies
{
"theme": "light",
"VF": [0, 2, 4],
"ffmpeg": "path/to/ffmpeg/executable/file",
"volumes": [
{
"isPortable": false,
"volume": "D:\\",
"directories": [
{
"path": "path/to/your/directory",
"recursive": false,
"files": [
{
"fileName": "something中文.ext",
"nameSlice": [
["something"],
["中", "zhong"],
["文", "wen"]
],
"hasViewed": true,
"md5": "some md5 hex"
}
]
}
]
},
{
"isPortable": true,
"description": "WD Elements 10B8 USB Device",
"mountIndex": 0,
"partitions": 1,
"size": 2000365289472,
"directories": [
{
"path": "path/to/your/directory",
"recursive":true,
"directories": [
{
"path": "subdirectory",
"recursive": false,
"files": []
}
],
"files": []
}
]
}
]
}
Due to binding to USB device dynamically, change the number of usb partition will cause corresponding data loss.
{
"version": "2.0",
"theme": "light",
"VF": [0, 2, 4],
"ffmpeg": "path/to/ffmpeg/executable/file",
"volumes": [
{
"isPortable": false,
"volume": "D:\\",
"uuid": "somethingIdForVolume",
"directories": [
{
"path": "path/to/your/directory",
"uuid": "somethingIdForPath"
}
]
},
{
"isPortable": true,
"description": "WD Elements 10B8 USB Device",
"mountIndex": 0,
"partitions": 1,
"size": 2000365289472,
"uuid": "somethingIdForVolume",
"directories": [
{
"path": "path/to/your/directory",
"uuid": "somethingIdForPath"
}
]
}
],
"files": [
{
"uuid": "somethingIdForFile",
"fileName": "something中文.ext",
"nameSlice": [
["something"],
["中", "zhong"],
["文", "wen"]
],
"hasViewed": true
}
],
"locates": [
{
"vid": "somethingIdForVolume",
"pid": "somethingIdForPath",
"fid": "somethingIdForFile"
}
],
"binds": [
{
"fid": "somethingIdForFile",
"did": "somethingIdForDouban"
}
]
}
- Migrate to SQLite
- Test Available Video Formats
- Theme
- Recursive Directory Index
- Customize Sort
- Efficient Thumbnail
- Rebind USB + Thumbnail Rename
- Clear Thumbnail
- i18n
- Performance
This project was generated with electron-vue@1c165f7 using vue-cli. Documentation about the original structure can be found here.