|
1 | 1 | /** |
2 | 2 | * First-party community plugins. Same shape as Inkdrop: one git repo per |
3 | 3 | * plugin, installed from its GitHub release tarball. Not a fake marketplace — |
4 | | - * only list plugins that actually exist as public repos with a release. |
| 4 | + * only list plugins that actually exist as public repos WITH a GitHub Release |
| 5 | + * tarball (`{id}-{version}.tar.gz`). A git tag alone is not enough. |
| 6 | + * |
| 7 | + * Live Browse comes from GET /plugins on the Worker (dripnex theme-* / |
| 8 | + * plugin-* repos with a packed Release tarball). This array is the offline |
| 9 | + * fallback when that API is unreachable — do not generate it from GitHub |
| 10 | + * in the renderer. |
5 | 11 | * |
6 | 12 | * Three strings are not interchangeable (#562): |
7 | 13 | * id — manifest.json / scan().id (folder name after install) |
@@ -54,6 +60,118 @@ export const COMMUNITY_CATALOG: CatalogPlugin[] = [ |
54 | 60 | author: 'Dripnex', |
55 | 61 | repository: 'dripnex/plugin-stamp', |
56 | 62 | }, |
| 63 | + { |
| 64 | + id: 'theme-parchment', |
| 65 | + name: 'Parchment', |
| 66 | + description: 'Warm paper palette. Official Dripnex theme.', |
| 67 | + version: '0.1.0', |
| 68 | + author: 'Dripnex', |
| 69 | + repository: 'dripnex/theme-parchment', |
| 70 | + }, |
| 71 | + { |
| 72 | + id: 'theme-harbor-dusk', |
| 73 | + name: 'Harbor Dusk', |
| 74 | + description: 'Coastal evening palette for long writing sessions.', |
| 75 | + version: '0.1.0', |
| 76 | + author: 'Dripnex', |
| 77 | + repository: 'dripnex/theme-harbor-dusk', |
| 78 | + }, |
| 79 | + { |
| 80 | + id: 'theme-wave', |
| 81 | + name: 'Wave', |
| 82 | + description: 'Ink and paper, after dark.', |
| 83 | + version: '0.1.0', |
| 84 | + author: 'Dripnex', |
| 85 | + repository: 'dripnex/theme-wave', |
| 86 | + }, |
| 87 | + { |
| 88 | + id: 'theme-night', |
| 89 | + name: 'Night', |
| 90 | + description: 'Violet dusk. Focused writing after hours.', |
| 91 | + version: '0.1.0', |
| 92 | + author: 'Dripnex', |
| 93 | + repository: 'dripnex/theme-night', |
| 94 | + }, |
| 95 | + { |
| 96 | + id: 'theme-solarized-dark', |
| 97 | + name: 'Solarized Dark', |
| 98 | + description: 'Ethan Schoonover. The Vim classic.', |
| 99 | + version: '0.1.0', |
| 100 | + author: 'Dripnex', |
| 101 | + repository: 'dripnex/theme-solarized-dark', |
| 102 | + }, |
| 103 | + { |
| 104 | + id: 'theme-solarized-light', |
| 105 | + name: 'Solarized Light', |
| 106 | + description: 'Cream paper, cyan marks. Same palette, daylight.', |
| 107 | + version: '0.1.0', |
| 108 | + author: 'Dripnex', |
| 109 | + repository: 'dripnex/theme-solarized-light', |
| 110 | + }, |
| 111 | + { |
| 112 | + id: 'theme-gruvbox', |
| 113 | + name: 'Gruvbox', |
| 114 | + description: 'Retro groove. The other Vim default.', |
| 115 | + version: '0.1.0', |
| 116 | + author: 'Dripnex', |
| 117 | + repository: 'dripnex/theme-gruvbox', |
| 118 | + }, |
| 119 | + { |
| 120 | + id: 'theme-glass', |
| 121 | + name: 'Glass', |
| 122 | + description: 'Ice. The desktop shows through.', |
| 123 | + version: '0.1.0', |
| 124 | + author: 'Dripnex', |
| 125 | + repository: 'dripnex/theme-glass', |
| 126 | + }, |
| 127 | + { |
| 128 | + id: 'theme-midnight', |
| 129 | + name: 'Midnight', |
| 130 | + description: 'OLED navy, electric blue. Frosted.', |
| 131 | + version: '0.1.0', |
| 132 | + author: 'Dripnex', |
| 133 | + repository: 'dripnex/theme-midnight', |
| 134 | + }, |
| 135 | + { |
| 136 | + id: 'theme-ember', |
| 137 | + name: 'Ember', |
| 138 | + description: 'Warm black, copper light. Frosted.', |
| 139 | + version: '0.1.0', |
| 140 | + author: 'Dripnex', |
| 141 | + repository: 'dripnex/theme-ember', |
| 142 | + }, |
| 143 | + { |
| 144 | + id: 'theme-ion', |
| 145 | + name: 'Ion', |
| 146 | + description: 'Violet glass. Linear-adjacent, frosted.', |
| 147 | + version: '0.1.0', |
| 148 | + author: 'Dripnex', |
| 149 | + repository: 'dripnex/theme-ion', |
| 150 | + }, |
| 151 | + { |
| 152 | + id: 'theme-matcha', |
| 153 | + name: 'Matcha', |
| 154 | + description: 'Green-tea paper. Calm reading.', |
| 155 | + version: '0.1.0', |
| 156 | + author: 'Dripnex', |
| 157 | + repository: 'dripnex/theme-matcha', |
| 158 | + }, |
| 159 | + { |
| 160 | + id: 'theme-phosphor', |
| 161 | + name: 'Phosphor', |
| 162 | + description: 'Amber CRT. Terminal glow after midnight.', |
| 163 | + version: '0.1.0', |
| 164 | + author: 'Dripnex', |
| 165 | + repository: 'dripnex/theme-phosphor', |
| 166 | + }, |
| 167 | + { |
| 168 | + id: 'theme-fog', |
| 169 | + name: 'Fog', |
| 170 | + description: 'Coastal gray morning. Muted blue marks.', |
| 171 | + version: '0.1.0', |
| 172 | + author: 'Dripnex', |
| 173 | + repository: 'dripnex/theme-fog', |
| 174 | + }, |
57 | 175 | ]; |
58 | 176 |
|
59 | 177 | export interface CatalogCard { |
|
0 commit comments