From 43896aeb941d6e7bd5e67bdd7b8d3797a32178e8 Mon Sep 17 00:00:00 2001 From: lencx Date: Thu, 8 Dec 2022 12:22:27 +0800 Subject: [PATCH] readme --- README.md | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 021ef13..29c6dec 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,17 @@ > ChatGPT Desktop Application -[🚀 Download ChatGPT](https://github.com/lencx/ChatGPT/releases) +## Downloads + +[![ChatGPT downloads](https://img.shields.io/github/downloads/lencx/ChatGPT/total.svg?style=flat-square)](https://github.com/lencx/ChatGPT/releases) + +**Latest:** + +- `Mac`: [chat-gpt_0.1.5_amd64.deb](https://github.com/lencx/ChatGPT/releases/download/v0.1.5/chat-gpt_0.1.5_amd64.deb) +- `Linux`: [ChatGPT_0.1.5_x64.dmg](https://github.com/lencx/ChatGPT/releases/download/v0.1.5/ChatGPT_0.1.5_x64.dmg) +- `Windows`: [ChatGPT_0.1.5_x64_en-US.msi](https://github.com/lencx/ChatGPT/releases/download/v0.1.5/ChatGPT_0.1.5_x64_en-US.msi) + +[Other version...](https://github.com/lencx/ChatGPT/releases) ## Features @@ -26,3 +36,38 @@ - [ ] export chat history - [ ] ... + +## FAQ + +### Is it safe? + +It's safe, just a wrapper around openai, no other data transfer exists (you can check the source code). + +### How do i build it? + +#### PreInstall + +- [Rust](https://www.rust-lang.org/) +- [VS Code](https://code.visualstudio.com/) + - [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer) + - [tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + +#### Start + +```bash +# step1: +git clone https://github.com/lencx/ChatGPT.git + +# step2: +cd ChatGPT + +# step3: install deps +yarn + +# step4: +yarn dev + +# step5: +# bundle path: src-tauri/target/release/bundle +yarn build +```