Skip to content

Commit

Permalink
add icon to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
0-don committed Feb 5, 2025
1 parent b44f297 commit 00dedbc
Show file tree
Hide file tree
Showing 8 changed files with 74 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: "publish"
on:
workflow_dispatch:
push:
branches: [mastera]
branches: [master]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
Expand Down Expand Up @@ -84,6 +84,7 @@ jobs:
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DATABASE_URL: sqlite://clippy.sqlite?mode=rwc
GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }}
GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }}
with:
Expand Down
79 changes: 68 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
</a>
<p align="center">
<br />
Clipboard Manager made with Tauri, Solid & Sea-Orm
clipboard manager with sync & encryption
<br />
<a href="https://github.com/0-don/clippy/releases/latest">Try it out</a>
·
Expand All @@ -18,20 +18,77 @@
</p>
</p>

<div align="center">

<a href="https://github.com/0-don/clippy/releases/download/v1.3.1/clippy_1.3.1_x64-setup.exe">
<img src="./public/windows.png"> Windows (x64)
</a>
<a href="https://github.com/0-don/clippy/releases/download/v1.3.1/clippy_1.3.1_x64-setup.exe">
Windows (arm64)
</a>
<br>
<a href="https://github.com/0-don/clippy/releases/download/v1.4.0/clippy_1.4.0_amd64.deb">
<img src="./public/linux.png"> Linux (deb)
</a>
<a href="https://github.com/0PandaDEV/Qopy/releases/download/v0.3.1/Qopy-0.3.1.rpm">
Linux (rpm)
</a>
<a href="https://github.com/0-don/clippy/releases/download/v1.4.0/clippy-bin-1.4.0-1-x86_64.pkg.tar.zst">
Linux (zst)
</a>
<a href="https://github.com/0-don/clippy/releases/download/v1.4.0/clippy_1.4.0_amd64.AppImage">
Linux (AppImage)
</a>
<br>
<a href="https://github.com/0-don/clippy/releases/download/v1.4.0/clippy_1.4.0_aarch64.dmg">
<img src="./public/apple.png"> macOS (Silicon)
</a>
<a href="https://github.com/0-don/clippy/releases/download/v1.4.0/clippy_1.4.0_aarch64.dmg">
macOS (Intel)
</a>
<br>
<br>

</div>

successor of [the electron clippy](https://github.com/0-don/clippy-ts)

### Features

- display/hide **ctrl+y** or **ctrl+d** (change in settings)
- type out clipboard **ctrl+b** (where pasting isn't allowed)
- text, html, rtf, image, file support
- keybinds for everything & custom keybinds
- add favorite clipboards
- smart search, for links, colors, images, hex, etc.
- change/sync database location
- dark mode / white mode
- multilanguage support
- display scale
- **Multi-content support:**
- Text, HTML, RTF support
- Image support with thumbnails
- File support with metadata
- **Smart clipboard features:**
- Type out clipboard content (where pasting isn't allowed) **ctrl+b**
- Smart search for links, colors, images, hex codes etc.
- Add favorite clipboards
- Clear history by type
- **Security & Privacy:**
- End-to-end encryption support
- Password protection
- Configurable size limits for different content types
- **Cloud sync:**
- Google Drive integration
- Sync favorites and history
- Configurable sync limits
- **Customization:**
- Global hotkeys for all functions
- Custom keybinds
- Adjustable display scale
- Dark/Light mode
- Multiple languages support
- Configurable window positions
- Database location customization
- **System Integration:**
- Autostart option
- System tray support
- Display toggle with **ctrl+y** or **ctrl+d**

### Prerequisites Development

Expand Down
Binary file added docs/src/assets/app-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions docs/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: Welcome to Clippy
description: Get started building your docs site with Starlight.
description: Get started with Clippy, modern clipboard mana
template: splash
hero:
tagline: Well done! Your Clippy project is up and running!
image:
file: ../../assets/Clippy.webp
file: ../../assets/app-icon.png
actions:
- text: Quick Start
link: /guides/installation/
Expand Down
Binary file added public/apple.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/windows.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
dotenvy::dotenv()?;
#[cfg(debug_assertions)]
dotenvy::dotenv().ok();

#[cfg(target_os = "linux")]
{
Expand Down

0 comments on commit 00dedbc

Please sign in to comment.