Skip to content

New package: nek0der.CodexBarWin version 0.1.0#333453

Closed
nek0der wants to merge 4 commits into
microsoft:masterfrom
nek0der:nek0der.CodexBarWin-0.1.0
Closed

New package: nek0der.CodexBarWin version 0.1.0#333453
nek0der wants to merge 4 commits into
microsoft:masterfrom
nek0der:nek0der.CodexBarWin-0.1.0

Conversation

@nek0der
Copy link
Copy Markdown

@nek0der nek0der commented Jan 24, 2026

Description

This PR adds CodexBarWin version 0.1.0 to the Windows Package Manager Community Repository.

Package Information

Overview

CodexBarWin is a Windows 11 native application built with WinUI 3 that monitors and displays usage limits for AI coding tools (Claude, Codex, Gemini) in the system tray.

Testing Performed

  • Manifest validation passed (winget validate)
  • Download URLs are accessible
  • SHA256 checksums verified
  • Package metadata is accurate
  • Tested installation on Windows 11
Microsoft Reviewers: Open in CodeFlow

@wingetbot
Copy link
Copy Markdown
Collaborator

Validation Pipeline Run WinGetSvc-Validation-128-333453-20260124-1

@wingetbot wingetbot added the Manifest-Installer-Validation-Error Manifest installer validation failed label Jan 24, 2026
@microsoft-github-policy-service microsoft-github-policy-service Bot added the Needs-Author-Feedback This needs a response from the author. label Jan 24, 2026
@nek0der
Copy link
Copy Markdown
Author

nek0der commented Jan 24, 2026

@microsoft-github-policy-service agree

@microsoft-github-policy-service microsoft-github-policy-service Bot added Needs-Attention This work item needs to be reviewed by a member of the core team. and removed Needs-Author-Feedback This needs a response from the author. labels Jan 24, 2026
@wingetbot
Copy link
Copy Markdown
Collaborator

Validation Pipeline Run WinGetSvc-Validation-128-333453-20260124-2

@microsoft-github-policy-service microsoft-github-policy-service Bot removed Manifest-Installer-Validation-Error Manifest installer validation failed Needs-Attention This work item needs to be reviewed by a member of the core team. labels Jan 24, 2026
@wingetbot wingetbot added the Manifest-Installer-Validation-Error Manifest installer validation failed label Jan 24, 2026
@microsoft-github-policy-service microsoft-github-policy-service Bot added the Needs-Author-Feedback This needs a response from the author. label Jan 24, 2026
@wingetbot
Copy link
Copy Markdown
Collaborator

Validation Pipeline Run WinGetSvc-Validation-128-333453-20260124-3

@microsoft-github-policy-service microsoft-github-policy-service Bot removed Manifest-Installer-Validation-Error Manifest installer validation failed Needs-Author-Feedback This needs a response from the author. labels Jan 24, 2026
@nek0der
Copy link
Copy Markdown
Author

nek0der commented Jan 24, 2026

Update: Fixed MinVersion Issue

The MSIX packages have been rebuilt with a corrected version update regex that only modifies the Identity Version attribute.

Root Cause

The previous regex pattern was too broad and replaced all Version attributes in Package.appxmanifest, including TargetDeviceFamily MinVersion values.

Fix Applied

Updated release workflow to use a more specific regex:

# Old (too broad)
$content -replace 'Version="[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+"', "Version=\""

# New (specific to Identity tag)
$content -replace '(<Identity[^>]*Version=")[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+"', "\""

Verification

Extracted and verified the new MSIX packages:

x64 MSIX Internal Manifest:

  • ✅ Identity Version="0.1.0.0"
  • ✅ Windows.Universal MinVersion="10.0.17763.0" (correctly preserved)
  • ✅ Windows.Desktop MinVersion="10.0.17763.0" (correctly preserved)

ARM64 MSIX Internal Manifest:

  • ✅ Identity Version="0.1.0.0"
  • ✅ MinVersion values correctly preserved

Updated SHA256 Hashes

  • x64: BBEAF012A90879A04597F9B09AFDB2EF852E468500D95E7A5F1CBB19AB6EC9EA
  • ARM64: 10AF77BFF73E12367B9705627D7D694596AB1A7E73FD183A3265F5CB5358CDA8

The manifest has been updated with the correct hashes. This should resolve all validation errors.

@wingetbot wingetbot added the Manifest-Installer-Validation-Error Manifest installer validation failed label Jan 24, 2026
@microsoft-github-policy-service microsoft-github-policy-service Bot added the Needs-Author-Feedback This needs a response from the author. label Jan 24, 2026
@wingetbot
Copy link
Copy Markdown
Collaborator

Validation Pipeline Run WinGetSvc-Validation-128-333453-20260124-4

@microsoft-github-policy-service microsoft-github-policy-service Bot removed Manifest-Installer-Validation-Error Manifest installer validation failed Needs-Author-Feedback This needs a response from the author. labels Jan 24, 2026
@stephengillie stephengillie added the Needs-Author-Feedback This needs a response from the author. label Feb 5, 2026
@stephengillie
Copy link
Copy Markdown
Collaborator

Manual Validation ended with:

3:16:06 PM: Install finished with exit code: -2146762487
3:16:06 PM: Install Failed.
3:16:06 PM: Detected 7 WinGet errors:
3:16:06 PM: 2026-02-05 15:16:05.063 [CORE] Deployment operation #0: error 0x800B0109: The root certificate of the signature in the app package or bundle must be trusted.
3:16:06 PM: 2026-02-05 15:16:05.063 [FAIL] C:__w\1\s\external\pkg\src\AppInstallerCommonCore\Deployment.cpp(221)\WindowsPackageManager.dll!00007FF84DB4D1F2: (caller: 00007FF84DA4E3CC) Exception(1) tid(10d8) 800B0109 A certificate chain processed, but terminated in a root certificate which is not trusted by the trust provider.
3:16:06 PM: 2026-02-05 15:16:05.226 [FAIL] C:__w\1\s\external\pkg\src\AppInstallerCommonCore\Deployment.cpp(54)\WindowsPackageManager.dll!00007FF84DB4F8F1: (caller: 00007FF84DB4DF59) Exception(2) tid(10d8) 80073CF1 Package was not found.
3:16:06 PM: Msg:[Operation failed: Windows cannot remove CodexBarWin_0.1.0.0_x64__w05y65rx3mcz6 because the current user does not have that package installed. Use Get-AppxPackage to see the list of packages installed.]
3:16:06 PM: 2026-02-05 15:16:05.227 [FAIL] C:__w\1\s\external\pkg\src\AppInstallerCommonCore\Deployment.cpp(186)\WindowsPackageManager.dll!00007FF84DCC4435: (caller: 00007FF84DB4A893) LogHr(1) tid(10d8) 80073CF1 Package was not found.
3:16:06 PM: Msg:[Operation failed: Windows cannot remove CodexBarWin_0.1.0.0_x64__w05y65rx3mcz6 because the current user does not have that package installed. Use Get-AppxPackage to see the list of packages installed.]
3:16:06 PM: 2026-02-05 15:16:05.341 [CLI ] MSIX installer failed: 2148204809

Hex Dec Inverted Dec Symbol Description
00000007 7 -4294967289 ERROR_ARENA_TRASHED The storage control blocks were destroyed.
800B0109 -2146762487 2148204809 CERT_E_UNTRUSTEDROOT A certificate chain processed

(Automated response - build 1213.)

@microsoft-github-policy-service microsoft-github-policy-service Bot added the No-Recent-Activity No activity has occurred on this work item for seven days. label Feb 11, 2026
@microsoft-github-policy-service
Copy link
Copy Markdown
Contributor

Hello @nek0der,

This pull request has been automatically marked as stale because it has been marked as requiring author feedback but has not had any recent activity. It will be closed if no further activity occurs within 3 days of this comment.

Template: msftbot/noRecentActivity

@nek0der nek0der deleted the nek0der.CodexBarWin-0.1.0 branch February 26, 2026 00:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Needs-Author-Feedback This needs a response from the author. New-Package No-Recent-Activity No activity has occurred on this work item for seven days. Validation-Certificate-Root

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants