Update README with SVG wordmark and badge formats
Replaced the YTSage title in README with an SVG wordmark and updated release format tables to use shield badges for Windows, Linux, and macOS. Added the ytsage-wordmark.svg asset and documented its location in the project structure.
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
<div align="center">
|
||||
|
||||
# **YTSage**
|
||||
|
||||
<img src="assets\branding\svg\ytsage-wordmark.svg" width="400" alt="ytsage-wordmark">
|
||||
<img src="assets\branding\screenshots\main.png" width="800" alt="YTSage Interface"/>
|
||||
|
||||
[](https://badge.fury.io/py/ytsage)
|
||||
@@ -75,27 +74,27 @@ ytsage
|
||||
|
||||
| Format | Description |
|
||||
|--------|-------------|
|
||||
| `YTSage-v<version>.exe` | Standard installer |
|
||||
| `YTSage-v<version>-ffmpeg.exe` | With FFmpeg bundled |
|
||||
| `YTSage-v<version>-portable` | Portable version, no installation required |
|
||||
| `YTSage-v<version>-ffmpeg-portable.zip` | Portable with FFmpeg, zipped |
|
||||
|  | Standard installer |
|
||||
|  | With FFmpeg bundled |
|
||||
|  | Portable version, no installation required |
|
||||
|  | Portable with FFmpeg, zipped |
|
||||
|
||||
#### 🐧 Linux
|
||||
|
||||
| Format | Description |
|
||||
|--------|-------------|
|
||||
| `YTSage-v<version>-amd64.deb` | Debian package |
|
||||
| `YTSage-v<version>-x86_64.AppImage` | AppImage, portable |
|
||||
| `YTSage-v<version>-x86_64.rpm` | RPM package |
|
||||
|  | Debian package |
|
||||
|  | AppImage, portable |
|
||||
|  | RPM package |
|
||||
|
||||
#### 🍎 macOS
|
||||
|
||||
| Format | Description |
|
||||
|--------|-------------|
|
||||
| `YTSage-v<version>-arm64.app.zip` | Zipped application for ARM64 |
|
||||
| `YTSage-v<version>-arm64.dmg` | Disk image installer for ARM64 |
|
||||
| `YTSage-v<version>-x64.app.zip` | Zipped application for x64 |
|
||||
| `YTSage-v<version>-x64.dmg` | Disk image installer for x64 |
|
||||
|  | Zipped application for ARM64 |
|
||||
|  | Disk image installer for ARM64 |
|
||||
|  | Zipped application for x64 |
|
||||
|  | Disk image installer for x64 |
|
||||
|
||||
> [👉 Download Latest Release](https://github.com/oop7/YTSage/releases/latest)
|
||||
|
||||
@@ -325,6 +324,8 @@ YTSage/
|
||||
│ │ ├── main.png
|
||||
│ │ ├── playlist.png
|
||||
│ │ └── subtitle_options.png
|
||||
│ │ └── 📁 svg/ # SVG assets
|
||||
│ │ └── ytsage-wordmark.svg
|
||||
│ ├── 📁 Icon/ # Legacy icon directory
|
||||
│ │ └── icon.png
|
||||
│ └── 📁 sound/ # Audio files
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 700 160" role="img" aria-labelledby="title" fill="none">
|
||||
<title id="title">YTSage Logo</title>
|
||||
<defs>
|
||||
<!-- Match the hero gradient: white to accent red (#dc2626) -->
|
||||
<linearGradient id="ytGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
||||
<stop offset="0%" stop-color="#ffffff" />
|
||||
<stop offset="100%" stop-color="#dc2626" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<!-- Background transparent rectangle for easier clicking (optional) -->
|
||||
<rect width="700" height="160" fill="transparent" />
|
||||
<text x="50%" y="50%"
|
||||
font-family="Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif"
|
||||
font-size="120" font-weight="900"
|
||||
text-anchor="middle" dominant-baseline="central"
|
||||
fill="url(#ytGradient)">YTSage</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 826 B |
Reference in New Issue
Block a user