tabby-tabbyspaces 0.0.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +29 -2
- package/.github/workflows/ci.yml +26 -0
- package/.github/workflows/claude-code-review.yml +44 -0
- package/.github/workflows/claude.yml +81 -0
- package/.github/workflows/release.yml +30 -0
- package/CHANGELOG.md +92 -20
- package/CLAUDE.md +196 -15
- package/CONTRIBUTING.md +3 -1
- package/README.md +80 -61
- package/RELEASE.md +91 -0
- package/TODO.md +77 -0
- package/dist/build-config.d.ts +3 -3
- package/dist/components/deleteConfirmModal.component.d.ts +7 -0
- package/dist/components/deleteConfirmModal.component.d.ts.map +1 -0
- package/dist/components/paneEditor.component.d.ts +9 -13
- package/dist/components/paneEditor.component.d.ts.map +1 -1
- package/dist/components/splitPreview.component.d.ts +50 -35
- package/dist/components/splitPreview.component.d.ts.map +1 -1
- package/dist/components/workspaceEditor.component.d.ts +61 -28
- package/dist/components/workspaceEditor.component.d.ts.map +1 -1
- package/dist/components/workspaceList.component.d.ts +56 -27
- package/dist/components/workspaceList.component.d.ts.map +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +1 -1
- package/dist/index.js.map +1 -1
- package/dist/models/workspace.model.d.ts +118 -76
- package/dist/models/workspace.model.d.ts.map +1 -1
- package/dist/package.json +26 -0
- package/dist/providers/config.provider.d.ts +8 -8
- package/dist/providers/settings.provider.d.ts +7 -7
- package/dist/providers/settings.provider.d.ts.map +1 -1
- package/dist/providers/toolbar.provider.d.ts +23 -12
- package/dist/providers/toolbar.provider.d.ts.map +1 -1
- package/dist/services/startupCommand.service.d.ts +28 -0
- package/dist/services/startupCommand.service.d.ts.map +1 -0
- package/dist/services/workspaceBackground.service.d.ts +38 -0
- package/dist/services/workspaceBackground.service.d.ts.map +1 -0
- package/dist/services/workspaceEditor.service.d.ts +46 -24
- package/dist/services/workspaceEditor.service.d.ts.map +1 -1
- package/docs/DESIGN.md +57 -0
- package/docs/SESSION-2026-01-14-S1-DESIGN.md +134 -0
- package/docs/marketing_status.md +92 -0
- package/mockups/index.html +162 -0
- package/mockups/s1-tight-sharp.html +522 -0
- package/mockups/shared/base.css +216 -0
- package/mockups/v06-tabbed.html +643 -0
- package/package.json +3 -7
- package/screenshots/editor.png +0 -0
- package/screenshots/pane-edit.png +0 -0
- package/scripts/build-dev.js +2 -1
- package/scripts/build-prod.js +40 -0
- package/src/components/deleteConfirmModal.component.ts +23 -0
- package/src/components/paneEditor.component.pug +27 -43
- package/src/components/paneEditor.component.scss +37 -85
- package/src/components/paneEditor.component.ts +6 -16
- package/src/components/splitPreview.component.pug +36 -5
- package/src/components/splitPreview.component.scss +78 -45
- package/src/components/splitPreview.component.ts +83 -18
- package/src/components/workspaceEditor.component.pug +162 -74
- package/src/components/workspaceEditor.component.scss +261 -108
- package/src/components/workspaceEditor.component.ts +294 -31
- package/src/components/workspaceList.component.pug +32 -41
- package/src/components/workspaceList.component.scss +89 -74
- package/src/components/workspaceList.component.ts +181 -44
- package/src/index.ts +6 -0
- package/src/models/workspace.model.ts +113 -8
- package/src/providers/settings.provider.ts +2 -2
- package/src/providers/toolbar.provider.ts +113 -13
- package/src/services/startupCommand.service.ts +140 -0
- package/src/services/workspaceBackground.service.ts +167 -0
- package/src/services/workspaceEditor.service.ts +134 -65
- package/src/styles/_index.scss +3 -0
- package/src/styles/_mixins.scss +180 -0
- package/src/styles/_variables.scss +67 -0
- package/RELEASE_PLAN.md +0 -161
- package/screenshots/workspace-edit.png +0 -0
package/RELEASE_PLAN.md
DELETED
|
@@ -1,161 +0,0 @@
|
|
|
1
|
-
# TabbySpaces - Public Release Plan
|
|
2
|
-
|
|
3
|
-
## Cilj
|
|
4
|
-
|
|
5
|
-
Napraviti public repo koji omogućava:
|
|
6
|
-
1. Korisnicima da instaliraju plugin iz Tabby Plugin Manager-a
|
|
7
|
-
2. Developerima da doprinose (fork → develop → PR)
|
|
8
|
-
3. Maintaineru (Igor) da testira i dev i production verziju istovremeno
|
|
9
|
-
|
|
10
|
-
---
|
|
11
|
-
|
|
12
|
-
## 1. Package.json izmene
|
|
13
|
-
|
|
14
|
-
- [x] Verzija: `1.0.0` → `0.0.1`
|
|
15
|
-
- [x] Dodaj `repository` polje
|
|
16
|
-
- [x] Dodaj `homepage` polje
|
|
17
|
-
- [x] Dodaj `bugs` polje
|
|
18
|
-
- [x] Sredi `scripts` sekciju - uklonjena TABBY_PLUGINS zavisnost
|
|
19
|
-
|
|
20
|
-
---
|
|
21
|
-
|
|
22
|
-
## 2. Dev Workflow
|
|
23
|
-
|
|
24
|
-
**Pristup:** build:dev + instalacija u plugins folder
|
|
25
|
-
|
|
26
|
-
**Radi:**
|
|
27
|
-
- [x] `npm run build:dev` - kreira dist-dev/ sa izolovanim package-om
|
|
28
|
-
- [x] Instalacija u plugins folder
|
|
29
|
-
|
|
30
|
-
**Poznati problemi:**
|
|
31
|
-
- [x] ~~Prod i dev plugin imaju isto ime u Tabby UI~~ (REŠENO)
|
|
32
|
-
|
|
33
|
-
**TODO:**
|
|
34
|
-
- [x] ~~Popraviti izolaciju imena u UI~~ (DONE - toolbar, settings, profile groups)
|
|
35
|
-
- [ ] Testirati watch mode
|
|
36
|
-
- [ ] Dokumentovati u README
|
|
37
|
-
|
|
38
|
-
---
|
|
39
|
-
|
|
40
|
-
## 3. Testiranje
|
|
41
|
-
|
|
42
|
-
**Koegzistencija (maintainer)** ✅ RADI
|
|
43
|
-
```
|
|
44
|
-
tabby-tabbyspaces (prod) + tabby-tabbyspaces-dev (dev) u plugins folderu
|
|
45
|
-
Različiti config keys, različita imena u UI
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
**Napomene:**
|
|
49
|
-
- Contributor workflow će biti dokumentovan u CONTRIBUTING.md
|
|
50
|
-
- Production test će biti live npm publish
|
|
51
|
-
|
|
52
|
-
---
|
|
53
|
-
|
|
54
|
-
## 4. Potrebni fajlovi
|
|
55
|
-
|
|
56
|
-
| Fajl | Status | Prioritet |
|
|
57
|
-
|------|--------|-----------|
|
|
58
|
-
| `README.md` | DONE | P0 |
|
|
59
|
-
| `LICENSE` | DONE | P0 |
|
|
60
|
-
| `CHANGELOG.md` | DONE | P0 |
|
|
61
|
-
| `CONTRIBUTING.md` | DONE | P0 |
|
|
62
|
-
| `.github/ISSUE_TEMPLATE/*` | DONE | P0 |
|
|
63
|
-
| `CLAUDE.md` | DONE (EN) | P0 |
|
|
64
|
-
| `screenshots/` | DONE | P0 |
|
|
65
|
-
|
|
66
|
-
---
|
|
67
|
-
|
|
68
|
-
## 5. Distribucija
|
|
69
|
-
|
|
70
|
-
**Metod:** npm publish (jedini način da se pojavi u Tabby Plugin Manager-u)
|
|
71
|
-
|
|
72
|
-
**Proces:**
|
|
73
|
-
```bash
|
|
74
|
-
# Setup (jednom)
|
|
75
|
-
npm login
|
|
76
|
-
|
|
77
|
-
# Release
|
|
78
|
-
npm version patch # ili minor/major
|
|
79
|
-
npm publish
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
**Pre-publish checklist:**
|
|
83
|
-
- [ ] Verzija bump-ovana
|
|
84
|
-
- [ ] Build radi (`npm run build`)
|
|
85
|
-
- [ ] README ažuriran
|
|
86
|
-
- [ ] CHANGELOG ažuriran
|
|
87
|
-
|
|
88
|
-
---
|
|
89
|
-
|
|
90
|
-
## 6. GitHub Repo Setup
|
|
91
|
-
|
|
92
|
-
- [ ] Kreiraj repo: `github.com/halilc4/tabbyspaces`
|
|
93
|
-
- [ ] Dodaj opis
|
|
94
|
-
- [ ] Dodaj topics: `tabby`, `tabby-plugin`, `terminal`, `workspace`
|
|
95
|
-
- [ ] Uključi Issues
|
|
96
|
-
- [ ] Push koda
|
|
97
|
-
|
|
98
|
-
---
|
|
99
|
-
|
|
100
|
-
## 7. Redosled akcija
|
|
101
|
-
|
|
102
|
-
```
|
|
103
|
-
1. [x] Reši dev workflow → build:dev pristup
|
|
104
|
-
2. [x] Popravi dev vs prod izolaciju (ime u UI)
|
|
105
|
-
3. [x] Testiraj koegzistenciju (maintainer scenario)
|
|
106
|
-
4. [x] Napravi LICENSE (MIT, engleski)
|
|
107
|
-
5. [x] Napravi README.md (engleski, Claude Code attribution, screenshots)
|
|
108
|
-
6. [x] Napravi CHANGELOG.md
|
|
109
|
-
7. [x] Napravi CONTRIBUTING.md
|
|
110
|
-
8. [x] Napravi .github/ISSUE_TEMPLATE/*
|
|
111
|
-
9. [x] Prevedi CLAUDE.md na engleski
|
|
112
|
-
10. [ ] Kreiraj GitHub repo (halilc4/tabbyspaces)
|
|
113
|
-
11. [ ] Push
|
|
114
|
-
12. [ ] npm publish
|
|
115
|
-
13. [ ] Testiraj instalaciju iz Tabby Plugin Manager-a
|
|
116
|
-
```
|
|
117
|
-
|
|
118
|
-
---
|
|
119
|
-
|
|
120
|
-
## Odluke
|
|
121
|
-
|
|
122
|
-
1. **GitHub username** - `halilc4` → `github.com/halilc4/tabbyspaces`
|
|
123
|
-
2. **CHANGELOG** - DA, vodimo ga
|
|
124
|
-
3. **Jezici** - README i LICENSE na engleskom
|
|
125
|
-
4. **Attribution** - README mora jasno naglasiti:
|
|
126
|
-
- Kod 100% napisan od Claude Code-a
|
|
127
|
-
- Igor = ideja i product vision
|
|
128
|
-
- Igor toliko mrzi Angular da nije ni pogledao kod
|
|
129
|
-
|
|
130
|
-
---
|
|
131
|
-
|
|
132
|
-
## Otvorena pitanja
|
|
133
|
-
|
|
134
|
-
~~1. **CLAUDE.md jezik** - Prevesti na engleski za contributore?~~ → DA, engleski
|
|
135
|
-
|
|
136
|
-
---
|
|
137
|
-
|
|
138
|
-
## 8. Final Review (2026-01-03)
|
|
139
|
-
|
|
140
|
-
**Status:** ✅ PASS
|
|
141
|
-
|
|
142
|
-
**Pregledano:**
|
|
143
|
-
- [x] Struktura projekta - čista, standardni Angular pattern
|
|
144
|
-
- [x] Kod - tipiziran, bez `any`, čitljiv
|
|
145
|
-
- [x] README.md - jasan, sa screenshotovima
|
|
146
|
-
- [x] LICENSE, CONTRIBUTING.md, CHANGELOG.md - kompletno
|
|
147
|
-
- [x] package.json metapodaci - repo, bugs, homepage
|
|
148
|
-
- [x] .github/ISSUE_TEMPLATE/* - bug report, feature request
|
|
149
|
-
- [x] Dev/Prod izolacija - radi
|
|
150
|
-
|
|
151
|
-
**Zaključak:** Projekat je spreman za public release.
|
|
152
|
-
|
|
153
|
-
**Sledeća sesija:** Full publish (GitHub repo + npm publish)
|
|
154
|
-
|
|
155
|
-
---
|
|
156
|
-
|
|
157
|
-
## Stil dokumentacije
|
|
158
|
-
|
|
159
|
-
- Bez mainstream GitHub corporate stila
|
|
160
|
-
- Bez AI slop-a (generic, over-polished)
|
|
161
|
-
- Direktno, iskreno, sa karakterom
|
|
Binary file
|