[PR #43] [MERGED] Templating #14

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

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/43
Author: @gschier
Created: 6/7/2024
Status: Merged
Merged: 6/7/2024
Merged by: @gschier

Base: masterHead: templating


📝 Commits (10+)

📊 Changes

13 files changed (+572 additions, -31 deletions)

View changed files

.github/workflows/ci-js.yml (+16 -0)
.github/workflows/ci-rust.yml (+30 -0)
📝 src-tauri/Cargo.lock (+5 -0)
📝 src-tauri/Cargo.toml (+3 -2)
📝 src-tauri/src/analytics.rs (+1 -1)
📝 src-tauri/src/http_request.rs (+1 -1)
📝 src-tauri/src/lib.rs (+2 -2)
📝 src-tauri/src/render.rs (+24 -23)
📝 src-tauri/src/window_menu.rs (+5 -2)
src-tauri/templates/Cargo.toml (+6 -0)
src-tauri/templates/src/lib.rs (+7 -0)
src-tauri/templates/src/parser.rs (+370 -0)
src-tauri/templates/src/renderer.rs (+102 -0)

📄 Description

Add new templating crate with custom parser/renderer for dealing with variables


🔄 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/43 **Author:** [@gschier](https://github.com/gschier) **Created:** 6/7/2024 **Status:** ✅ Merged **Merged:** 6/7/2024 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `master` ← **Head:** `templating` --- ### 📝 Commits (10+) - [`22f0ec1`](https://github.com/mountain-loop/yaak/commit/22f0ec13eab76f98245cb739b8016733d80303f6) Parser and renderer started - [`e58c9bd`](https://github.com/mountain-loop/yaak/commit/e58c9bd81a18f081b899b8836a8b8247a4d0586d) Replace render logic with new parser - [`8275d8e`](https://github.com/mountain-loop/yaak/commit/8275d8e5d6ce0e2d59dc2017a0d4181521f22fed) render function callback - [`d0c4312`](https://github.com/mountain-loop/yaak/commit/d0c4312da436c17d63db8d206b259eb15667c469) Rust and JS CI - [`d55e719`](https://github.com/mountain-loop/yaak/commit/d55e71961b85939b93dcb817d00f0b0e17c801a7) Try again - [`dc13c35`](https://github.com/mountain-loop/yaak/commit/dc13c35d9f2d57a8c17245283a78ddf36f0c82eb) Different format - [`b75e14f`](https://github.com/mountain-loop/yaak/commit/b75e14f0e803ed3b0f99c3a084fb22bdc1e4dbc9) Remove? - [`130309b`](https://github.com/mountain-loop/yaak/commit/130309b30e3c0514a11b3f3651e28c23bcddfab2) Checkout subdir - [`75ef32c`](https://github.com/mountain-loop/yaak/commit/75ef32cff2547e19a45bdd414bf40bcefe6a42a0) Bump checkout version - [`aeccdc4`](https://github.com/mountain-loop/yaak/commit/aeccdc462a82bc4a3d90598c168a2b6b1c2876f1) Fix? ### 📊 Changes **13 files changed** (+572 additions, -31 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/ci-js.yml` (+16 -0) ➕ `.github/workflows/ci-rust.yml` (+30 -0) 📝 `src-tauri/Cargo.lock` (+5 -0) 📝 `src-tauri/Cargo.toml` (+3 -2) 📝 `src-tauri/src/analytics.rs` (+1 -1) 📝 `src-tauri/src/http_request.rs` (+1 -1) 📝 `src-tauri/src/lib.rs` (+2 -2) 📝 `src-tauri/src/render.rs` (+24 -23) 📝 `src-tauri/src/window_menu.rs` (+5 -2) ➕ `src-tauri/templates/Cargo.toml` (+6 -0) ➕ `src-tauri/templates/src/lib.rs` (+7 -0) ➕ `src-tauri/templates/src/parser.rs` (+370 -0) ➕ `src-tauri/templates/src/renderer.rs` (+102 -0) </details> ### 📄 Description Add new `templating` crate with custom parser/renderer for dealing with variables --- <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:54 +01:00
adam closed this issue 2025-12-29 07:18:54 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/yaak#14