diff --git a/.cursorindexingignore b/.cursorindexingignore new file mode 100644 index 0000000..953908e --- /dev/null +++ b/.cursorindexingignore @@ -0,0 +1,3 @@ + +# Don't index SpecStory auto-save files, but allow explicit context inclusion via @ references +.specstory/** diff --git a/.specstory/.gitignore b/.specstory/.gitignore new file mode 100644 index 0000000..c5b4129 --- /dev/null +++ b/.specstory/.gitignore @@ -0,0 +1,4 @@ +# SpecStory project identity file +/.project.json +# SpecStory explanation file +/.what-is-this.md diff --git a/fix-downloads-tab.patch b/fix-downloads-tab.patch new file mode 100644 index 0000000..c5d2b82 --- /dev/null +++ b/fix-downloads-tab.patch @@ -0,0 +1,15 @@ +--- a/src/components/tabs/DownloadsTab.tsx ++++ b/src/components/tabs/DownloadsTab.tsx +@@ -133,9 +133,9 @@ export function DownloadsTab() { + + // Profile picture download options + const profileOptions: DownloadOptionOrDivider[] = [ +- { label: '400x400', sublabel: 'Standard - Twitter, LinkedIn', action: () => downloadPng('icon', darkMode ? 'dark' : 'light', 400, 'white', 'actionkitnow-profile-400x400.png') }, +- { label: '800x800', sublabel: 'High-res - Retina displays', action: () => downloadPng('icon', darkMode ? 'dark' : 'light', 800, 'white', 'actionkitnow-profile-800x800.png') }, +- { label: '1024x1024', sublabel: 'Extra large - High DPI', action: () => downloadPng('icon', darkMode ? 'dark' : 'light', 1024, 'white', 'actionkitnow-profile-1024x1024.png') }, ++ { label: '400x400', sublabel: 'Standard - Twitter, LinkedIn', action: () => downloadPng('icon', darkMode ? 'dark' : 'light', 400, 'white', 2, 'actionkitnow-profile-400x400.png') }, ++ { label: '800x800', sublabel: 'High-res - Retina displays', action: () => downloadPng('icon', darkMode ? 'dark' : 'light', 800, 'white', 2, 'actionkitnow-profile-800x800.png') }, ++ { label: '1024x1024', sublabel: 'Extra large - High DPI', action: () => downloadPng('icon', darkMode ? 'dark' : 'light', 1024, 'white', 2, 'actionkitnow-profile-1024x1024.png') }, + ]; + + // Banner platforms