├── .github └── workflows │ └── jekyll-gh-pages.yml ├── LICENSE ├── README.md ├── _config.yml ├── _includes └── head-custom.html ├── assets └── images │ ├── logo.png │ └── screenshot.png └── favicon.ico /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- 1 | # Sample workflow for building and deploying a Jekyll site to GitHub Pages 2 | name: Deploy Jekyll with GitHub Pages dependencies preinstalled 3 | 4 | on: 5 | # Runs on pushes targeting the default branch 6 | push: 7 | branches: ["main"] 8 | 9 | # Allows you to run this workflow manually from the Actions tab 10 | workflow_dispatch: 11 | 12 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 13 | permissions: 14 | contents: read 15 | pages: write 16 | id-token: write 17 | 18 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. 19 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. 20 | concurrency: 21 | group: "pages" 22 | cancel-in-progress: false 23 | 24 | jobs: 25 | # Build job 26 | build: 27 | runs-on: ubuntu-latest 28 | steps: 29 | - name: Checkout 30 | uses: actions/checkout@v4 31 | - name: Setup Pages 32 | uses: actions/configure-pages@v4 33 | - name: Build with Jekyll 34 | uses: actions/jekyll-build-pages@v1 35 | with: 36 | source: ./ 37 | destination: ./_site 38 | - name: Upload artifact 39 | uses: actions/upload-pages-artifact@v3 40 | 41 | # Deployment job 42 | deploy: 43 | environment: 44 | name: github-pages 45 | url: ${{ steps.deployment.outputs.page_url }} 46 | runs-on: ubuntu-latest 47 | needs: build 48 | steps: 49 | - name: Deploy to GitHub Pages 50 | id: deployment 51 | uses: actions/deploy-pages@v4 52 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 stevobm 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 维克日记 2 | 3 | 维克日记([官网链接](https://vic-diary.netlify.app/)) 4 | 是一款设计优雅的日记软件,支持Markdown语法输入和实时预览。 5 | ![image](assets/images/screenshot.png) 6 | 7 | ## 软件特性 8 | 9 | - 一目了然的用户界面,简单免配置、开箱即用 10 | - 支持Markdown语法输入,内容原地实时预览 11 | - 日记支持表格可视化编辑、本地图片插入/粘贴 12 | - 支持输入密码登录,日记隐私内容更有保障 13 | - 支持按目录批量操作日记(如:删除等) 14 | - 数据纯本地保存,无惧云端第三方安全风险 15 | - 支持Windows、Mac、Linux多个系统平台 16 | 17 | ## 下载地址 18 | 19 | ### 最新版本下载 20 | 21 | > 包含各系统架构版本(ARM等) 22 | 23 | - [WorkDrive](https://workdrive.zohopublic.com.cn/folder/qwvtha87ad103ba6444dbbad0c22c7de74137?layout=list)(推荐) 24 | - [Gitee](https://gitee.com/vo-soft/vic-diary-release/releases/tag/latest) 25 | 26 | ### 全部版本下载 27 | 28 | > 包含历史所有发布版本 29 | 30 | - [Github](https://github.com/vo-soft/vic-diary-releases/releases) 31 | - [百度网盘](https://pan.baidu.com/s/1t_JIbcJ_ZPK5D9o0NLJpDQ?pwd=7k2p) 提取码: 7k2p 32 | - [城通网盘](https://url43.ctfile.com/d/3173743-60448486-923c16?p=3701) 访问密码:3701 33 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | remote_theme: pages-themes/minimal@v0.2.0 2 | plugins: 3 | - jekyll-remote-theme # add this line to the plugins list if you already have one 4 | title: 维克日记 5 | logo: assets/images/logo.png 6 | description: An elegant diary for you. 7 | -------------------------------------------------------------------------------- /_includes/head-custom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vo-soft/vic-diary-releases/1abfd8c7292ac1961e1f0c2dbcc74b5aa926ba46/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vo-soft/vic-diary-releases/1abfd8c7292ac1961e1f0c2dbcc74b5aa926ba46/assets/images/screenshot.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vo-soft/vic-diary-releases/1abfd8c7292ac1961e1f0c2dbcc74b5aa926ba46/favicon.ico --------------------------------------------------------------------------------