X9 Dev
0c4c8d82fa
web: fix curl command – add https:// prefix (required on Windows)
...
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 14:10:05 +02:00
X9 Dev
7976ae7b62
Add Forgejo CI/CD: auto-build and publish xetup.exe on push
...
- Forgejo Actions workflow: builds Windows x64 exe on push to main
- Runner config: golang:1.24-alpine container on xetup Docker network
- docker-compose.yml: runner with docker socket + config mount
- nginx: /dl shortlink + /forgejo-api proxy for landing page
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 12:07:02 +02:00
X9 Dev
c3c8d8e501
Simplify install command to plain curl, add /dl shortlink
...
- nginx.conf: add /dl -> latest xetup.exe release redirect (update on each release)
- index.html: replace irm/iex command with 'curl -Lo xetup.exe xetup.x9.cz/dl'
works with built-in curl.exe on Win10/11, no PowerShell execution policy needed
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 11:30:22 +02:00
X9 Dev
82349dbe31
Add install command box and fix Forgejo API proxy on landing page
...
- nginx.conf: add /forgejo-api/ proxy location to xetup-forgejo:3000
- index.html: add install command box (irm xetup.x9.cz/get.ps1 | iex)
with one-click copy button; remove broken API token from JS
- get.ps1: PowerShell installer that fetches latest release URL and runs exe
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 11:28:28 +02:00
X9 Dev
a10a3a8aa2
fix: move Dell Command | Update card to 'Stavajici kroky' section
...
Was incorrectly placed under 'Nove kroky (planovane)'.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 10:51:33 +02:00
X9 Dev
be7a7236df
feat: Dell Command | Update step (step 11) + download link on landing page
...
scripts/11-dell-update.ps1:
- Detects Dell via Win32_ComputerSystem.Manufacturer (skips silently on non-Dell)
- Installs Dell.CommandUpdate.Universal via winget (silent)
- Runs dcu-cli.exe /applyUpdates -silent -reboot=disable (all categories)
- BIOS/firmware staged, completes on restart after deployment
- Exit codes 0/1/5 all treated as success
Deploy-Windows.ps1:
- Added Step 11 - Dell Command | Update (dellUpdate=true default)
internal/runner/runner.go, internal/config/config.go:
- dellUpdate step registered in AllSteps() and DefaultConfig
web/spec/index.html:
- Step 11 card with flag-done rows, sidebar link, comment-widget issue #16
- STEP_SCRIPT map updated for step-dell
web/index.html:
- Dynamic download strip: fetches latest Forgejo release via API,
shows Download xetup.exe with version + file size
- Updated Go TUI card text (no longer "zatim ve vyvoji")
web/data/descriptions.json: regenerated (13 scripts, 80 items)
Forgejo: issue #16 created, release v0.1.0 published with xetup.exe (5.2 MB)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 10:49:15 +02:00
X9 Dev
1198de3c49
feat: Go TUI launcher (xetup.exe) + spec page new-request section
...
- embed.go: root package exposes Scripts/Assets embed.FS
- internal/config: Config struct, Load/Save/Default
- internal/runner: Step list, Runner with context cancel, log streaming
- internal/tui: bubbletea model - huh form (phase 1) + live log view (phase 2) + summary (phase 3)
- cmd/xetup/main.go: main binary, extracts embedded content to tmpdir, runs TUI
- Builds to 5.2 MB xetup.exe (GOOS=windows GOARCH=amd64)
spec/index.html:
- arch-xetup section: mark 5 items flag-done (code now exists)
- Add "Nove nastaveni" section linked to Forgejo issue #15
- Add sidebar link for new-requests
- Add CSS + JS for request widget (loads/posts to issue #15 comments)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 10:35:22 +02:00
X9 Dev
3ce582c0fb
Implement steps 09 (PC identity), 10 (network), taskbar profiles; cleanup
...
02-software: remove 'seznam neuplny' item (SW list is complete)
04-default-profile: add -ProfileType param; taskbar XML varies by profile
(default=empty, admin=Explorer+PS+Edge, user=Explorer+Edge)
09-pc-identity: new script - Rename-Computer, computer description,
C:\X9 dir structure, Desktop.ini + X9 icon for custom folder appearance
10-network: new script - Set-NetConnectionProfile Private, enable ICMP,
enable Network Discovery (Set-NetFirewallRule + netsh fallback)
Deploy-Windows.ps1: -ProfileType param, steps 9+10 added, ProfileType
threaded through to 04-default-profile.ps1
web/spec: steps 02/09/10/taskbar marked OK, remove noise rows
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 10:15:55 +02:00
X9 Dev
3a7c0afc43
Remove noise rows, implement powercfg + proxy, clean up Edge docs
...
01-bloatware: remove 'do not remove RDP/OneDrive' items from header
(documenting what we don't do is noise)
web/spec step-01: remove two flag-warn rows
03-system-registry: implement powercfg (standby-ac 0, monitor-ac 60,
standby-dc 30, monitor-dc 15) and proxy auto-detect disable (AutoDetect=0)
web/spec step-03: powercfg + proxy rows flag-todo -> flag-done, badge OK,
remove old Edge policies note (already implemented)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 10:09:40 +02:00
X9 Dev
108a22e7cb
Fix all remaining mustfix items + Edge policies
...
00-admin-account: empty password (SecureString), FullName via ADSI SetInfo()
07-backinfo: new script replacing 07-desktop-info - copies assets, sets
registry OSName, creates Startup shortcut, launches BackInfo immediately
Deploy-Windows.ps1: step 7 now calls 07-backinfo.ps1 (desktopInfo->backinfo)
03-system-registry: full Edge policy set - favorites bar, Google search,
show/hide toolbar buttons per spec, telemetry/content policies, removed
old Edge policies TODO note
web/spec: step-00 OK, step-07 OK, step-03 Edge rows updated
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 09:45:49 +02:00
X9 Dev
f5a5de943a
Implement Forgejo review changes: Atera, UCPD, PDF default, OA3, dedup
...
02-software: add Atera RMM agent install (Invoke-WebRequest + msiexec /qn),
stop UCPD driver before PDF association write, restart after; remove
reference to PDF-DefaultApp scheduled task in header
03-system-registry: correct OneDrive uninstall description - intentional
(pre-installed consumer version only, no policy key, M365 can reinstall)
04-default-profile: OneDrive RunOnce blocking removed, ShowRecent=0,
ShowFrequent=0, FullPath=1 in CabinetState already added in prior session
06-scheduled-tasks: PDF-DefaultApp task removed - PDF set once in step 02
08-activation: add OA3/BIOS embedded key check via SoftwareLicensingService
WMI; key priority: config.json > OA3 firmware > GVLK
web/spec: update all status badges, remove mustfix flags, deduplicate
OneDrive entries across steps 01/03/04, add OA3 row to step-08
web/data/descriptions.json: regenerated (65 items)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-16 09:29:32 +02:00