From 1d4b9ac1cb780c64bc59df5e38c034ee49251bb8 Mon Sep 17 00:00:00 2001 From: Lorchr Date: Fri, 4 Aug 2023 11:05:29 +0800 Subject: [PATCH] update --- docs/electron/vite-vue-ts-electron.md | 13 +++++-- docs/index.html | 16 +++++++++ docs/zh-cn/git/Git-Base.md | 50 +++++++++++++++++++++++++++ docs/zh-cn/guide/Docsify-Usage.md | 3 ++ docs/zh-cn/guide/Docusaurus-Usage.md | 30 ++++++++++++++++ docs/zh-cn/windows.md | 19 +++++++--- 6 files changed, 124 insertions(+), 7 deletions(-) create mode 100644 docs/zh-cn/git/Git-Base.md create mode 100644 docs/zh-cn/guide/Docusaurus-Usage.md diff --git a/docs/electron/vite-vue-ts-electron.md b/docs/electron/vite-vue-ts-electron.md index b3845f0..709dbb3 100644 --- a/docs/electron/vite-vue-ts-electron.md +++ b/docs/electron/vite-vue-ts-electron.md @@ -254,6 +254,8 @@ npm run electron:dev 2. 在`package.json`中指定 `main` ```diff +- "type": "module", ++ "type": "commonjs", + "main": "dist-electron/main.js" ``` @@ -308,7 +310,9 @@ npm run electron:build ## 最终的`package.json` -**注意:** 需要将 `"type": "module"` 改为 `"type": "commonjs"`否则打包出来的程序运行会报错 +**注意:** +1. 需要将 `"type": "module"` 改为 `"type": "commonjs"`否则打包出来的程序运行会报错 +2. 在最后添加上程序的作者、描述、License等信息 ```json { "name": "torch-web", @@ -336,7 +340,10 @@ npm run electron:build "vite-plugin-electron": "^0.11.2", "vite-plugin-electron-renderer": "^0.14.5" }, - "main": "dist-electron/main.js" + "main": "dist-electron/main.js", + "description": "https://github.com/lorchr/torch-web", + "author": "Lorch", + "license": "Apache-2.0" } ``` @@ -357,6 +364,6 @@ npm install npm run dev ``` -参考文档 +## 参考文档 - [Electron + Vue3 + TS + Vite项目搭建教程!](https://zhuanlan.zhihu.com/p/521239144) - [Vue3 + TS + Vite2 + Electron16项目梳理](https://juejin.cn/post/7038467111441661960) diff --git a/docs/index.html b/docs/index.html index 30948ba..da47fff 100644 --- a/docs/index.html +++ b/docs/index.html @@ -19,6 +19,7 @@
+
@@ -98,6 +99,21 @@ ] } + diff --git a/docs/zh-cn/git/Git-Base.md b/docs/zh-cn/git/Git-Base.md new file mode 100644 index 0000000..e40c13c --- /dev/null +++ b/docs/zh-cn/git/Git-Base.md @@ -0,0 +1,50 @@ +## 1. 本地与Github +1. 初始化本地Git仓库 +```shell +# 初始化Git仓库 +git init + +# 设置用户信息 +git config user.name "Hui Liu" +git config user.email "whitetulips@163.com" + +# 编写gitignore +vim .gitignore + +# 添加文件 +git add . + +# 提交 +git commit -m "Init commit" +``` + +2. 推送到新建Github仓库 +```shell +# 新建仓库 https://github.com/new +git remote add origin git@github.com:lorchr/torch-web.git +git branch -M main +git push -u origin main +``` + +3. 推送到已有Gitee仓库 +```shell +# 添加新的仓库地址源 +git remote add gitee git@gitee.com:lorchr/torch-web.git +git remote set-url --add gitee git@gitee.com:lorchr/torch-web.git + +# 更新到当前分支,允许两边有无关的提交记录 +git pull gitee main --allow-unrelated-histories +git push gitee main:main +``` + +4. 其他操作 +```shell +# 查看提交记录 +git log -10 main + +# 查看git状态 +git status + +# 合并分支 +git merge +``` diff --git a/docs/zh-cn/guide/Docsify-Usage.md b/docs/zh-cn/guide/Docsify-Usage.md index db3be1e..fecc001 100644 --- a/docs/zh-cn/guide/Docsify-Usage.md +++ b/docs/zh-cn/guide/Docsify-Usage.md @@ -1,3 +1,6 @@ +- [Docsify 官网](https://docsify.js.org) +- [Docsify Github](https://github.com/docsifyjs/docsify/) + ## 1. 环境 - node 12 - npm 6.14.16 diff --git a/docs/zh-cn/guide/Docusaurus-Usage.md b/docs/zh-cn/guide/Docusaurus-Usage.md new file mode 100644 index 0000000..3b83c4f --- /dev/null +++ b/docs/zh-cn/guide/Docusaurus-Usage.md @@ -0,0 +1,30 @@ +[Docusaurus 官网](https://docusaurus.io/) +[Docusaurus 中文网](https://www.docusaurus.cn/) +[Docusaurus Github](https://github.com/facebook/docusaurus) + +## 1. 环境 +- Node.js 16.14+ + +```shell +node -v + +npm -v +``` + +## 2. 初始化 +```shell +npx create-docusaurus@latest light-docusaurus classic --typescript + +# 或者 +npm init docusaurus ./light-docusaurus classic --typescript +``` + +## 3. 运行 +```shell +npm run start +``` + +## 4. 推送仓库 + + +## 5. 部署站点 diff --git a/docs/zh-cn/windows.md b/docs/zh-cn/windows.md index d8b7768..2ecd276 100644 --- a/docs/zh-cn/windows.md +++ b/docs/zh-cn/windows.md @@ -3,19 +3,27 @@ ## 写盘工具 - [Rufus](http://rufus.ie/zh/) +- [Balena Etcher](https://etcher.balena.io/) +- [UNetbootin](https://github.com/unetbootin/unetbootin) - [UltralSO](https://www.ultraiso.com/download.html) -- [MicroSoftInstaller](https://www.microsoft.com/zh-cn/software-download/windows11) -- [WinPE](https://www.wepe.com.cn/) +- [Ventoy](www.ventoy.net) +- [MicroSoftInstaller](https://www.microsoft.com/zh-cn/software-download/windows11) +- [Windows USB/DVD Download Tool](https://www.microsoft.com/zh-cn/download/windows-usb-dvd-download-tool) +- [MicroSoftWindowsPE](https://learn.microsoft.com/zh-cn/windows-hardware/get-started/adk-install#other-adk-downloads) +- [Windows To Go](https://learn.microsoft.com/zh-cn/windows/deployment/planning/windows-to-go-overview) +- [WePE](https://www.wepe.com.cn/) - [WinToGo](https://www.disktool.cn/wintogo.html) ## 磁盘清理工具 1. [SpaceSniffer](https://www.fosshub.com) 2. [WizTree](https://www.diskanalyzer.com/) -3. [Dism++](https://www.chuyu.me/zh-Hans/index.html) +3. [Dism++](https://www.chuyu.me/zh-Hans/index.html) [Github](https://github.com/Chuyu-Team/Dism-Multi-language) +4. [ChipGenius](https://chipgenius.en.softonic.com/) +5. [DiskGenius](https://www.diskgenius.com/) ## 一些软件 1. 7-zip,大道至简,别说它界面丑,他就是Windows原生的样子,原生的样子就是美。 -2. Oracle VM VirtualBox,支持快照、高级网络配置、跨平台,支持后台运行,VMware买不起,Windows又不是高级的,只能用这个维持一下生活。 +2. VirtualBox,支持快照、高级网络配置、跨平台,支持后台运行,VMware买不起,Windows又不是高级的,只能用这个维持一下生活。 3. Greenshot,开源、轻巧且强大的截图工具,自带简单的图片编辑功能。 4. Motrix,开源的基于aria2的多线程下载工具,IDM好是好,可如果有免费、开源、跨平台的替代,我是一分钱都不愿意多花的。 5. MobaXterm,同样免费版,比Xshell强大得多,SSH、SFTP、VNC、RDP一站式服务,还支持Multi-Exec,体会一下指挥千军万马的感觉。 @@ -37,6 +45,8 @@ 21. VeraCrypt,开源、跨平台的加密软件,继承TrueCrypt的遗产。 22. AESCrypt,开源、跨平台的加密软件,支持256位AES加密,没有界面,右键加密解密完事 +--- + 1. AnyTxt 秒速打开大文本 2. Hibit Uninstaller 这是一款神级卸载软件 3. bandicam录屏 @@ -49,6 +59,7 @@ 9. Blackbird Player 不知道大家喜欢用电脑看电视直播吗?说实话那些电视直播的网站效果实在是差的离谱,而黑鸟播放器就是一款非常优秀的看电视直播的软件,它内置的频道非常丰富,央视、卫视、一些地方台都有覆盖。 10. Universal Viewer 电脑文件的格式实在是多,我们经常会遇到无法打开文件的情况,比如psd格式的图片文件你没有photoshop就打不开,难道就没有一个文件可以打开所有格式的文件吗? +--- 1. Inpaint——去水印,体积小功能全 2. QuickLook——万能预览之王