Skip to content
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
22fae61
fix: correct consolidate rules description display
hannesrudolph Jun 24, 2025
4ca7f0d
Fix Copilot review comments: localize hard-coded strings and remove u…
hannesrudolph Jun 24, 2025
b38aba9
feat: enhance custom modes handling by checking .roomodes file for mo…
daniel-lxs Jun 24, 2025
58bff48
fix: resolve cross-platform path separator issues in CustomModesManag…
daniel-lxs Jun 24, 2025
17399e8
Update button styling to match About section and fix lint warnings
hannesrudolph Jun 25, 2025
2f132a1
fix: address PR feedback - button spacing, directory persistence, and…
hannesrudolph Jun 25, 2025
0a0c716
fix: update export/import button layout and visibility
hannesrudolph Jun 25, 2025
6cfc067
fix: enable export of customized built-in modes
hannesrudolph Jun 25, 2025
83f8ef5
feat: add import level selection for mode imports
hannesrudolph Jun 25, 2025
1ca8ce2
fix: clarify project-level import description
hannesrudolph Jun 25, 2025
633fd7e
fix: completely replace rules folder contents on import
hannesrudolph Jun 25, 2025
008a328
fix: return proper error message when workspace is null in importMode…
hannesrudolph Jun 25, 2025
de8226f
fix: check workspace availability before using path.join in importMod…
hannesrudolph Jun 25, 2025
0649004
fix: reorder import mode dialog to show project level first
hannesrudolph Jun 25, 2025
4448228
fix: remove existing rules folder when importing mode without rules
hannesrudolph Jun 25, 2025
593655a
fix: address security vulnerabilities and type safety issues in impor…
hannesrudolph Jun 25, 2025
e873bae
Update src/i18n/locales/pt-BR/common.json
daniel-lxs Jun 26, 2025
daae3d7
fix: resolve import button stuck issue and missing translations
daniel-lxs Jun 26, 2025
147ca50
Fix Windows path handling in CustomModesManager test and remove unuse…
daniel-lxs Jun 26, 2025
c74bd6b
Fix Windows path handling in CustomModesManager tests
daniel-lxs Jun 26, 2025
9fffe16
fix: Update global import to preserve rules file structure
hannesrudolph Jun 29, 2025
2da5c5c
Fix CustomModesManager issues: replace entry.parentPath with path.joi…
daniel-lxs Jun 30, 2025
acc6bb3
Optimize mode export: merge custom prompts before YAML generation
daniel-lxs Jun 30, 2025
81c1d51
Improve type safety: Replace 'any' with PromptComponent type for cust…
daniel-lxs Jun 30, 2025
5d2d382
fix: remove unnecessary recursive flag from fs.readdir calls
daniel-lxs Jun 30, 2025
23f5bca
fix: make import/export button casing consistent in English translation
daniel-lxs Jul 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/types/src/global-settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ export const globalSettingsSchema = z.object({
historyPreviewCollapsed: z.boolean().optional(),
profileThresholds: z.record(z.string(), z.number()).optional(),
hasOpenedModeSelector: z.boolean().optional(),
lastModeExportPath: z.string().optional(),
lastModeImportPath: z.string().optional(),
})

export type GlobalSettings = z.infer<typeof globalSettingsSchema>
Expand Down
Loading