[PR #37] [CLOSED] v2024.5.0 #10

Closed
opened 2025-12-29 07:18:53 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/37
Author: @gschier
Created: 5/26/2024
Status: Closed

Base: releaseHead: master


📝 Commits (10+)

📊 Changes

189 files changed (+12124 additions, -3405 deletions)

View changed files

📝 .github/workflows/release.yml (+3 -3)
📝 index.html (+4 -4)
📝 package-lock.json (+3 -3)
📝 package.json (+5 -5)
src-tauri/.sqlx/query-48ec5fdf20f34add763c540061caa25054545503704e19f149987f99b1a0e4f0.json (+0 -12)
src-tauri/.sqlx/query-b32994b09ae7a06eb0f031069d327e55127a5bce60cbb499b83d1701386a23cb.json (+0 -56)
src-tauri/.sqlx/query-ca3485d87b060cd77c4114d2af544adf18f6f15341d9d5db40865e92a80da4e2.json (+92 -0)
src-tauri/.sqlx/query-efd8ba41ea909b18dd520c57c1d464c5ae057b720cbbedcaec1513d43535632c.json (+12 -0)
📝 src-tauri/Cargo.lock (+862 -867)
📝 src-tauri/Cargo.toml (+10 -1)
📝 src-tauri/capabilities/capabilities.json (+2 -0)
src-tauri/gen/apple/.gitignore (+0 -3)
src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png (+0 -0)
src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png (+0 -0)
src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png (+0 -0)
src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png (+0 -0)
src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png (+0 -0)
src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png (+0 -0)
src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png (+0 -0)
src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png (+0 -0)

...and 80 more files

📄 Description

Theme System

  • Add theme type
  • Theme Zod schema
  • Generate CSS for theme
  • Support switching between multiple themes
  • Add way to preview themes
  • Refactor Tailwind variables
  • Add protocol handler for yaak://
  • Handle yaak://app/install-theme to install from browser/button
  • Add DB table to store user-added themes
  • Button to edit theme in theme studio

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mountain-loop/yaak/pull/37 **Author:** [@gschier](https://github.com/gschier) **Created:** 5/26/2024 **Status:** ❌ Closed **Base:** `release` ← **Head:** `master` --- ### 📝 Commits (10+) - [`6b373b5`](https://github.com/mountain-loop/yaak/commit/6b373b598501eb4df5688c78a5da71e1ef6cb5c1) Fix autocomplete - [`0f7969d`](https://github.com/mountain-loop/yaak/commit/0f7969d10a1fcea8b09d29a5b7539bb738254acb) Fix maximize permission - [`9360fd7`](https://github.com/mountain-loop/yaak/commit/9360fd7e438c57c76e8b4a1dce9ec6fdb8073ddb) Oops - [`dab7ee2`](https://github.com/mountain-loop/yaak/commit/dab7ee2492a0835835c4724f7820dad5a8f1ee9a) Bump version - [`57d5487`](https://github.com/mountain-loop/yaak/commit/57d548743f8e8858e7106641b7d4561c3b15ed26) Merge remote-tracking branch 'refs/remotes/origin/release' - [`8606940`](https://github.com/mountain-loop/yaak/commit/8606940dee080d5e62187cef18e88c3efcbf49ff) Move is_dev check for updates - [`83aaeb9`](https://github.com/mountain-loop/yaak/commit/83aaeb94f69432f04421d3ec9ed0f040bd9894c0) Theme system refactor (#31) - [`8e662e6`](https://github.com/mountain-loop/yaak/commit/8e662e6feb35015f2a5c28885406a8a9678ba36f) A bunch more theme stuff - [`5c8b472`](https://github.com/mountain-loop/yaak/commit/5c8b47288af60b629d813ed9fe4c5b19617a6e5a) Tweak Yaak default themes - [`d32b462`](https://github.com/mountain-loop/yaak/commit/d32b462bd957dfad468ab5af8d0322c76a64484c) More tweaks ### 📊 Changes **189 files changed** (+12124 additions, -3405 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/release.yml` (+3 -3) 📝 `index.html` (+4 -4) 📝 `package-lock.json` (+3 -3) 📝 `package.json` (+5 -5) ➖ `src-tauri/.sqlx/query-48ec5fdf20f34add763c540061caa25054545503704e19f149987f99b1a0e4f0.json` (+0 -12) ➖ `src-tauri/.sqlx/query-b32994b09ae7a06eb0f031069d327e55127a5bce60cbb499b83d1701386a23cb.json` (+0 -56) ➕ `src-tauri/.sqlx/query-ca3485d87b060cd77c4114d2af544adf18f6f15341d9d5db40865e92a80da4e2.json` (+92 -0) ➕ `src-tauri/.sqlx/query-efd8ba41ea909b18dd520c57c1d464c5ae057b720cbbedcaec1513d43535632c.json` (+12 -0) 📝 `src-tauri/Cargo.lock` (+862 -867) 📝 `src-tauri/Cargo.toml` (+10 -1) 📝 `src-tauri/capabilities/capabilities.json` (+2 -0) ➖ `src-tauri/gen/apple/.gitignore` (+0 -3) ➖ `src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@1x.png` (+0 -0) ➖ `src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x-1.png` (+0 -0) ➖ `src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@2x.png` (+0 -0) ➖ `src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-20x20@3x.png` (+0 -0) ➖ `src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@1x.png` (+0 -0) ➖ `src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x-1.png` (+0 -0) ➖ `src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@2x.png` (+0 -0) ➖ `src-tauri/gen/apple/Assets.xcassets/AppIcon.appiconset/AppIcon-29x29@3x.png` (+0 -0) _...and 80 more files_ </details> ### 📄 Description ## Theme System - [x] Add theme type - [ ] Theme Zod schema - [x] Generate CSS for theme - [x] Support switching between multiple themes - [x] Add way to preview themes - [x] Refactor Tailwind variables - [x] Add protocol handler for `yaak://` - [ ] Handle `yaak://app/install-theme` to install from browser/button - [ ] Add DB table to store user-added themes - [ ] Button to edit theme in theme studio --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 07:18:53 +01:00
adam closed this issue 2025-12-29 07:18:53 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/yaak#10