chore: regenerate predefined templates

This commit is contained in:
Aleix Soler 2026-03-18 15:07:41 +01:00
parent 26cb95b805
commit 2abccbc87d

View file

@ -1,9 +1,58 @@
import { StatusTemplate } from "types/pluginSettings";
/**
* Predefined status templates
* Predefined status templates generated from the templates directory
*/
export const PREDEFINED_TEMPLATES: StatusTemplate[] = [
{
id: "academic",
name: "Academic research",
description: "Status workflow for academic research and writing",
statuses: [
{
name: "research",
icon: "🔍",
color: "#2196F3",
templateId: "academic",
},
{
name: "outline",
icon: "📑",
color: "#9E9E9E",
templateId: "academic",
},
{
name: "draft",
icon: "✏️",
color: "#FFC107",
templateId: "academic",
},
{
name: "review",
icon: "🔬",
color: "#9C27B0",
templateId: "academic",
},
{
name: "revision",
icon: "📝",
color: "#FF5722",
templateId: "academic",
},
{
name: "final",
icon: "📚",
color: "#4CAF50",
templateId: "academic",
},
{
name: "published",
icon: "🎓",
color: "#795548",
templateId: "academic",
},
],
},
{
id: "colorful",
name: "Colorful workflow",
@ -66,6 +115,45 @@ export const PREDEFINED_TEMPLATES: StatusTemplate[] = [
},
],
},
{
id: "creative-writing",
name: "Creative Writing",
description: "Workflow for novelists and creative writers",
author: "Obsidian Community",
github: "https://github.com/obsidian-community",
statuses: [
{
name: "idea",
icon: "🧠",
color: "#FFD700",
templateId: "creative-writing",
},
{
name: "outline",
icon: "🗺️",
color: "#87CEEB",
templateId: "creative-writing",
},
{
name: "first-draft",
icon: "✍️",
color: "#FFA07A",
templateId: "creative-writing",
},
{
name: "revision",
icon: "🔍",
color: "#DA70D6",
templateId: "creative-writing",
},
{
name: "final-polish",
icon: "✨",
color: "#32CD32",
templateId: "creative-writing",
},
],
},
{
id: "minimal",
name: "Minimal workflow",
@ -97,55 +185,6 @@ export const PREDEFINED_TEMPLATES: StatusTemplate[] = [
},
],
},
{
id: "academic",
name: "Academic research",
description: "Status workflow for academic research and writing",
statuses: [
{
name: "research",
icon: "🔍",
color: "#2196F3",
templateId: "academic",
},
{
name: "outline",
icon: "📑",
color: "#9E9E9E",
templateId: "academic",
},
{
name: "draft",
icon: "✏️",
color: "#FFC107",
templateId: "academic",
},
{
name: "review",
icon: "🔬",
color: "#9C27B0",
templateId: "academic",
},
{
name: "revision",
icon: "📝",
color: "#FF5722",
templateId: "academic",
},
{
name: "final",
icon: "📚",
color: "#4CAF50",
templateId: "academic",
},
{
name: "published",
icon: "🎓",
color: "#795548",
templateId: "academic",
},
],
},
{
id: "project",
name: "Project management",