简体中文 | English
PicList is an efficient cloud storage and image hosting platform management tool. Building upon the foundation of PicGo, it has been deeply modified and enhanced. Not only does it retain all of PicGo's features, but it also adds many new ones. For instance, the album now supports synchronized deletion of files in the cloud. Built-in image hosting options have been expanded to include WebDav, local image hosting, and SFTP. Additionally, PicList introduces comprehensive cloud storage management functions, including cloud directory viewing, file search, batch uploading, downloading, and file deletion, copying links in various formats, and previews for images, markdown, text, and videos. Moreover, it boasts a more powerful album function and numerous other improvements and enhancements.
PicList V1.5.0
and above versions provide the one-click migration
function. Enter the Settings
page, and then click the right button on the Migrate from PicGo
option to migrate. Please restart the application to take effect after migration.
The core of PicList is based on the original PicGo-Core PicList-core, which is adapted for cloud deletion and other functions, and adds watermark addition and image compression / scaling / rotation / format conversion functions, which can be called through CLI command line, support starting the built-in upload server through picgo-server
,as well as some other function changes.
if you want to use PicList-core, please go to https://github.com/Kuingsmile/PicList-Core, or go to npm official address to view the installation instructions.
Please install my matching plugin VS-PicList, compared with the vs-picgo plugin, the plugin directly depends on the PicList desktop software, supports a variety of uploads and direct cloud deletion in Vscode and other functions.
Typora 1.6.0-dev and above versions now support PicList natively if you set language of Typora to Chinese.
If your Typora version is lower than 1.8.0, you need to set the upload service PicList and PicGo (app) to the installation path of PicList at the same time.
For windows, Enter the Typora settings page, select the image, set the upload service to PicGo(app)
, and then fill in the installation path of PicList in PicGo path
, as shown below:
Or, you can also use the npm install piclist
command to install PicList-core, and then set the upload service to PicGo-Core(command line)
.
In the community plugins, search for and install the Image auto upload Plugin. Next, go to the plugin settings page and change the default uploader to PicGo(app). Set the PicGo server to http://127.0.0.1:36677/upload
as shown in the image below. Additionally, this plugin also supports cloud-based deletion through PicList. To use this feature, enter http://127.0.0.1:36677/delete
in the deletion interface.
Change the ./piclist
to your own path, this is the path where you put your config.json
file, and change the piclist123456
to your own secret key.
docker run -d \
--name piclist \
--restart always \
-p 36677:36677 \
-v "./piclist:/root/.piclist" \
kuingsmile/piclist:latest \
node /usr/local/bin/picgo-server -k piclist123456
download docker-compose.yml
from piclist-core repo, or copy the following content to docker-compose.yml
:
version: '3.3'
services:
node:
image: 'kuingsmile/piclist:latest'
container_name: piclist
restart: always
ports:
- 36677:36677
volumes:
- './piclist:/root/.piclist'
command: node /usr/local/bin/picgo-server -k piclist123456
You can change the ./piclist
to your own path, this is the path where you put your config.json
file, and change the command
to your own secret key.
Then run:
docker-compose up -d
Platform | Album cloud deletion | Cloud storage management |
---|---|---|
Built-in AList | ✔️ | ✔️ |
SM.MS | ✔️ | ✔️ |
Github | ✔️ | ✔️ |
Imgur | ✔️ | ✔️ |
Tencent COS V5 | ✔️ | ✔️ |
Aliyun OSS | ✔️ | ✔️ |
Upyun | ✔️ | ✔️ |
Qiniu | ✔️ | ✔️ |
S3 API compatible platform | ✔️ | ✔️ |
WebDAV | ✔️ | ✔️ |
Local | ✔️ | ✔️ |
Built-in SFTP | ✔️ | ✔️ |
Doge Cloud | ✔️ | ✔️ |
PicList(Lasso-Doll) | ✔️ | ✔️ |
Lsky Pro | ✔️ | ✔️ |
Custom API platform | × | × |
Plugin | Album cloud deletion |
---|---|
picgo-plugin-s3 | ✔️ |
picgo-plugin-alist | ✔️ |
picgo-plugin-huawei-uploader | ✔️ |
picgo-plugin-dogecloud | ✔️ |
https://github.com/Kuingsmile/PicList/releases/latest
Thanks to scoop-lemon, you can use Scoop to install PicList, just execute the following command:
scoop bucket add lemon https://github.com/hoilc/scoop-lemon
scoop install lemon/piclist
MacOS users can now use Homebrew to install PicList, just execute the following command:
brew install piclist --cask
Uninstall:
brew uninstall piclist
If the macOS system installs PicList and displays "file is damaged" or installs and opens without response, please upgrade to PicList V1.4.1 or above.
After V1.4.1, all mac installation packages have been signed by my developer certificate, will not be recognized by the macOS system as "malicious software", will not appear "file is damaged" prompt.
yarn
download dependencies
Note that if you don't have yarn
, please go to the official website to download and install it before using it. Using npm install
will cause unknown errors!Xcode
environment, Windows needs VS
environment.Enter yarn run dev
to enter development mode, which has hot reload feature. However, it should be noted that the development mode is unstable and there will be process crashes. At this time, you need to:
ctrl+c
# Exit development mode
yarn run dev
# Re-enter development mode
Note: After the development mode is running, the application icon of PicList will appear in the application area of the taskbar in the lower right corner of the bottom bar.
If you need to build it yourself, you can start building with yarn run build
. After the build is successful, the corresponding installation file will appear in the dist_electron
directory.
If you have any questions, you can join the TG group for communication.
This project is open source under the MIT license. Welcome everyone to use and contribute code. Thank you for the open source spirit of the original author Molunerfinn.
Copyright (c) 2017-present Molunerfinn
Copyright (c) 2023-present Kuingsmile