Compare commits
17
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
24dbf013e7 | ||
|
|
5a799899ef | ||
|
|
f318713ba5 | ||
|
|
b9d2c8a5f3 | ||
|
|
8883000098 | ||
|
|
a8acf734ed | ||
|
|
c432355be1 | ||
|
|
9d3a06bf7a | ||
|
|
6cc4c1dc2f | ||
|
|
e2fff371ee | ||
|
|
872cdbc684 | ||
|
|
0f78931599 | ||
|
|
a84b2645fc | ||
|
|
6152371b16 | ||
|
|
60acaf3eea | ||
|
|
e064e14425 | ||
|
|
33e35243c4 |
@@ -34,11 +34,11 @@ jobs:
|
||||
-p:Version=${{ steps.version.outputs.version }} `
|
||||
-o publish
|
||||
|
||||
- name: Zip
|
||||
- name: Build installer
|
||||
shell: pwsh
|
||||
run: |
|
||||
Copy-Item -Recurse windows/Assets publish/Assets
|
||||
Compress-Archive -Path publish/* -DestinationPath ClaudeChecker-Windows.zip
|
||||
& "C:\Program Files (x86)\Inno Setup 6\iscc.exe" /DAppVersion="${{ steps.version.outputs.version }}" windows\installer.iss
|
||||
|
||||
- name: Create GitHub pre-release
|
||||
env:
|
||||
@@ -46,7 +46,7 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
notes=$(cat windows/RELEASE_NOTES.md 2>/dev/null || echo "Windows beta ${{ steps.version.outputs.version }}")
|
||||
gh release create "$GITHUB_REF_NAME" ClaudeChecker-Windows.zip \
|
||||
gh release create "$GITHUB_REF_NAME" ClaudeChecker-Installer.exe \
|
||||
--title "$GITHUB_REF_NAME" \
|
||||
--prerelease \
|
||||
--notes "$notes"
|
||||
@@ -59,7 +59,7 @@ jobs:
|
||||
notes=$(cat windows/RELEASE_NOTES.md 2>/dev/null || echo "Windows beta ${{ steps.version.outputs.version }}")
|
||||
content=$(jq -n \
|
||||
--arg version "${{ steps.version.outputs.version }}" \
|
||||
--arg url "https://github.com/${{ github.repository }}/releases/download/${{ github.ref_name }}/ClaudeChecker-Windows.zip" \
|
||||
--arg url "https://github.com/${{ github.repository }}/releases/download/${{ github.ref_name }}/ClaudeChecker-Installer.exe" \
|
||||
--arg notes "$notes" \
|
||||
'{version: $version, url: $url, notes: $notes}' | base64 -w0)
|
||||
sha=$(gh api "repos/${{ github.repository }}/contents/version-windows-beta.json?ref=main" --jq .sha 2>/dev/null || echo "")
|
||||
@@ -75,3 +75,28 @@ jobs:
|
||||
--field "content=$content" \
|
||||
--field "branch=main"
|
||||
fi
|
||||
|
||||
- name: Update Windows beta badge in README on main
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
||||
shell: bash
|
||||
run: |
|
||||
version="${{ steps.version.outputs.version }}"
|
||||
tag="${{ github.ref_name }}"
|
||||
shields_version=$(echo "$version" | sed 's/-/--/g')
|
||||
export WIN_BADGE="[](https://github.com/${{ github.repository }}/releases/tag/${tag}) <!-- WIN_BETA_BADGE -->"
|
||||
sha=$(gh api "repos/${{ github.repository }}/contents/README.md?ref=main" --jq .sha)
|
||||
content=$(gh api "repos/${{ github.repository }}/contents/README.md?ref=main" --jq .content | python3 -c "
|
||||
import sys, base64, os
|
||||
raw = sys.stdin.read().strip()
|
||||
text = base64.b64decode(raw).decode()
|
||||
badge = os.environ['WIN_BADGE']
|
||||
lines = text.splitlines(keepends=True)
|
||||
out = [badge + chr(10) if '<!-- WIN_BETA_BADGE -->' in line else line for line in lines]
|
||||
print(base64.b64encode(''.join(out).encode()).decode(), end='')
|
||||
")
|
||||
gh api --method PUT "repos/${{ github.repository }}/contents/README.md" \
|
||||
--field "message=Windows beta badge $tag" \
|
||||
--field "content=$content" \
|
||||
--field "branch=main" \
|
||||
--field "sha=$sha"
|
||||
|
||||
@@ -35,11 +35,11 @@ jobs:
|
||||
-p:Version=${{ steps.version.outputs.version }} `
|
||||
-o publish
|
||||
|
||||
- name: Zip
|
||||
- name: Build installer
|
||||
shell: pwsh
|
||||
run: |
|
||||
Copy-Item -Recurse windows/Assets publish/Assets
|
||||
Compress-Archive -Path publish/* -DestinationPath ClaudeChecker-Windows.zip
|
||||
& "C:\Program Files (x86)\Inno Setup 6\iscc.exe" /DAppVersion="${{ steps.version.outputs.version }}" windows\installer.iss
|
||||
|
||||
- name: Create GitHub release
|
||||
env:
|
||||
@@ -47,7 +47,7 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
notes=$(cat windows/RELEASE_NOTES.md 2>/dev/null || echo "Windows release ${{ steps.version.outputs.version }}")
|
||||
gh release create "$GITHUB_REF_NAME" ClaudeChecker-Windows.zip \
|
||||
gh release create "$GITHUB_REF_NAME" ClaudeChecker-Installer.exe \
|
||||
--title "$GITHUB_REF_NAME" \
|
||||
--notes "$notes"
|
||||
|
||||
@@ -59,7 +59,7 @@ jobs:
|
||||
notes=$(cat windows/RELEASE_NOTES.md 2>/dev/null || echo "Windows release ${{ steps.version.outputs.version }}")
|
||||
content=$(jq -n \
|
||||
--arg version "${{ steps.version.outputs.version }}" \
|
||||
--arg url "https://github.com/${{ github.repository }}/releases/download/${{ github.ref_name }}/ClaudeChecker-Windows.zip" \
|
||||
--arg url "https://github.com/${{ github.repository }}/releases/download/${{ github.ref_name }}/ClaudeChecker-Installer.exe" \
|
||||
--arg notes "$notes" \
|
||||
'{version: $version, url: $url, notes: $notes}' | base64 -w0)
|
||||
sha=$(gh api "repos/${{ github.repository }}/contents/version-windows.json?ref=main" --jq .sha 2>/dev/null || echo "")
|
||||
@@ -75,3 +75,40 @@ jobs:
|
||||
--field "content=$content" \
|
||||
--field "branch=main"
|
||||
fi
|
||||
|
||||
- name: Update Windows stable badge in README on main
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
||||
shell: bash
|
||||
run: |
|
||||
version="${{ steps.version.outputs.version }}"
|
||||
tag="${{ github.ref_name }}"
|
||||
shields_version=$(echo "$version" | sed 's/-/--/g')
|
||||
export WIN_STABLE_BADGE="[](https://github.com/${{ github.repository }}/releases/tag/${tag}) <!-- WIN_STABLE_BADGE -->"
|
||||
sha=$(gh api "repos/${{ github.repository }}/contents/README.md?ref=main" --jq .sha)
|
||||
content=$(gh api "repos/${{ github.repository }}/contents/README.md?ref=main" --jq .content | python3 -c "
|
||||
import sys, base64, os
|
||||
raw = sys.stdin.read().strip()
|
||||
text = base64.b64decode(raw).decode()
|
||||
stable_badge = os.environ['WIN_STABLE_BADGE']
|
||||
lines = text.splitlines(keepends=True)
|
||||
out = []
|
||||
for line in lines:
|
||||
if '<!-- WIN_STABLE_BADGE -->' in line:
|
||||
out.append(stable_badge + chr(10))
|
||||
rest = line.replace(' <!-- WIN_STABLE_BADGE -->', '').replace('<!-- WIN_STABLE_BADGE -->', '')
|
||||
if rest.strip() and '<!-- WIN_BETA_BADGE -->' in rest:
|
||||
out.append('<!-- WIN_BETA_BADGE -->' + chr(10))
|
||||
elif rest.strip():
|
||||
out.append(rest)
|
||||
elif '<!-- WIN_BETA_BADGE -->' in line:
|
||||
out.append('<!-- WIN_BETA_BADGE -->' + chr(10))
|
||||
else:
|
||||
out.append(line)
|
||||
print(base64.b64encode(''.join(out).encode()).decode(), end='')
|
||||
")
|
||||
gh api --method PUT "repos/${{ github.repository }}/contents/README.md" \
|
||||
--field "message=Windows stable badge $tag" \
|
||||
--field "content=$content" \
|
||||
--field "branch=main" \
|
||||
--field "sha=$sha"
|
||||
|
||||
@@ -282,6 +282,9 @@
|
||||
Style="{StaticResource SmallButton}" Click="CopyDiag_Click"/>
|
||||
</Grid>
|
||||
</Border>
|
||||
<TextBlock DockPanel.Dock="Top" Text="Org IDs are redacted when copied."
|
||||
FontSize="10" Foreground="{DynamicResource SecondaryBrush}"
|
||||
Margin="14,6,14,6"/>
|
||||
<ScrollViewer VerticalScrollBarVisibility="Auto">
|
||||
<StackPanel x:Name="DiagContentPanel" Margin="16,4,16,16"/>
|
||||
</ScrollViewer>
|
||||
|
||||
+16
-15
@@ -495,8 +495,21 @@ public partial class PopupWindow : Window
|
||||
|
||||
private void CopyDiag_Click(object s, RoutedEventArgs e)
|
||||
{
|
||||
Clipboard.SetText(BuildDiagText());
|
||||
CopyDiagButton.Content = "Copied! (IDs redacted)";
|
||||
try
|
||||
{
|
||||
// SetDataObject(data, false) skips Flush() — avoids CLIPBRD_E_CANT_OPEN crash
|
||||
var diagText = BuildDiagText();
|
||||
for (int i = 0; i < 5; i++)
|
||||
{
|
||||
try { Clipboard.SetDataObject(diagText, false); break; }
|
||||
catch (Exception) { System.Threading.Thread.Sleep(100); }
|
||||
}
|
||||
CopyDiagButton.Content = "Copied! (IDs redacted)";
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
CopyDiagButton.Content = "Copy failed";
|
||||
}
|
||||
var t = new DispatcherTimer { Interval = TimeSpan.FromSeconds(1.5) };
|
||||
t.Tick += (_, _) => { CopyDiagButton.Content = "Copy All"; t.Stop(); };
|
||||
t.Start();
|
||||
@@ -570,15 +583,6 @@ public partial class PopupWindow : Window
|
||||
reqRows.Add(MakeRow("Time", VM.DiagLastFetch.Value.ToString("HH:mm:ss")));
|
||||
AddSection("LAST REQUEST", reqRows);
|
||||
|
||||
// COOKIE STORE
|
||||
AddSection("COOKIE STORE",
|
||||
[
|
||||
MakeRow("Total cookies", VM.DiagCookieCount.ToString()),
|
||||
MakeRow("Claude cookies", VM.DiagClaudeCookieCount.ToString()),
|
||||
MakeRow("All domains", VM.DiagCookieDomains.Count == 0
|
||||
? "(none)" : string.Join(", ", VM.DiagCookieDomains)),
|
||||
]);
|
||||
|
||||
// STORED COOKIE NAMES
|
||||
var storedNames = GetStoredCookieNames();
|
||||
var nameRows = new List<FrameworkElement>();
|
||||
@@ -633,13 +637,10 @@ public partial class PopupWindow : Window
|
||||
sb.AppendLine();
|
||||
sb.AppendLine($"Last path: {VM.DiagLastPath}");
|
||||
sb.AppendLine($"Last status: {VM.DiagLastStatus}");
|
||||
sb.AppendLine($"Last error: {VM.DiagLastError}");
|
||||
sb.AppendLine($"Last error: {(string.IsNullOrEmpty(VM.DiagLastError) ? "(none)" : VM.DiagLastError)}");
|
||||
if (VM.DiagLastFetch.HasValue)
|
||||
sb.AppendLine($"Last fetch: {VM.DiagLastFetch.Value:HH:mm:ss}");
|
||||
sb.AppendLine();
|
||||
sb.AppendLine($"Total cookies: {VM.DiagCookieCount}");
|
||||
sb.AppendLine($"Claude cookies: {VM.DiagClaudeCookieCount}");
|
||||
sb.AppendLine($"Domains: {string.Join(", ", VM.DiagCookieDomains)}");
|
||||
sb.AppendLine();
|
||||
sb.AppendLine("Stored cookies:");
|
||||
foreach (var c in storedNames)
|
||||
|
||||
@@ -2,7 +2,6 @@ using System;
|
||||
using System.Diagnostics;
|
||||
using System.Reflection;
|
||||
using System.IO;
|
||||
using System.IO.Compression;
|
||||
using System.Net.Http;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
@@ -136,9 +135,7 @@ public class UpdateManager : INotifyPropertyChanged
|
||||
|
||||
try
|
||||
{
|
||||
var tmpDir = Path.Combine(Path.GetTempPath(), $"CCUpdate_{Guid.NewGuid():N}");
|
||||
Directory.CreateDirectory(tmpDir);
|
||||
var zipPath = Path.Combine(tmpDir, "ClaudeChecker.zip");
|
||||
var installerPath = Path.Combine(Path.GetTempPath(), $"ClaudeCheckerInstaller_{Guid.NewGuid():N}.exe");
|
||||
|
||||
using var http = new HttpClient();
|
||||
var response = await http.GetAsync(DownloadUrl, HttpCompletionOption.ResponseHeadersRead);
|
||||
@@ -148,7 +145,7 @@ public class UpdateManager : INotifyPropertyChanged
|
||||
var received = 0L;
|
||||
|
||||
await using (var stream = await response.Content.ReadAsStreamAsync())
|
||||
await using (var file = File.Create(zipPath))
|
||||
await using (var file = File.Create(installerPath))
|
||||
{
|
||||
var buffer = new byte[81920];
|
||||
int read;
|
||||
@@ -157,48 +154,21 @@ public class UpdateManager : INotifyPropertyChanged
|
||||
await file.WriteAsync(buffer.AsMemory(0, read));
|
||||
received += read;
|
||||
if (total > 0)
|
||||
DownloadProgress = (double)received / total * 0.8;
|
||||
DownloadProgress = (double)received / total;
|
||||
}
|
||||
}
|
||||
|
||||
StatusMessage = "Unpacking…";
|
||||
DownloadProgress = 0.85;
|
||||
|
||||
var extractDir = Path.Combine(tmpDir, "extracted");
|
||||
ZipFile.ExtractToDirectory(zipPath, extractDir, overwriteFiles: true);
|
||||
|
||||
// Find the installer exe
|
||||
var newExe = FindExe(extractDir);
|
||||
if (newExe == null) throw new Exception("ClaudeChecker.exe not found in update package.");
|
||||
|
||||
DownloadProgress = 0.95;
|
||||
StatusMessage = "Installing…";
|
||||
|
||||
// Write a batch script to replace the exe after we exit
|
||||
var currentExe = Process.GetCurrentProcess().MainModule!.FileName;
|
||||
var script = $"""
|
||||
@echo off
|
||||
timeout /t 2 /nobreak > nul
|
||||
copy /Y "{newExe}" "{currentExe}"
|
||||
start "" "{currentExe}"
|
||||
rmdir /S /Q "{tmpDir}"
|
||||
""";
|
||||
|
||||
var scriptPath = Path.Combine(Path.GetTempPath(), "claudechecker_update.bat");
|
||||
await File.WriteAllTextAsync(scriptPath, script);
|
||||
|
||||
DownloadProgress = 1.0;
|
||||
StatusMessage = "Installed! Relaunching…";
|
||||
StatusMessage = "Installing…";
|
||||
UpdateComplete = true;
|
||||
|
||||
await Task.Delay(800);
|
||||
await Task.Delay(500);
|
||||
|
||||
Process.Start(new ProcessStartInfo
|
||||
{
|
||||
FileName = "cmd.exe",
|
||||
Arguments = $"/C \"{scriptPath}\"",
|
||||
CreateNoWindow = true,
|
||||
UseShellExecute = false,
|
||||
FileName = installerPath,
|
||||
Arguments = "/SILENT /CLOSEAPPLICATIONS",
|
||||
UseShellExecute = true,
|
||||
});
|
||||
|
||||
Application.Current.Dispatcher.Invoke(() => Application.Current.Shutdown());
|
||||
@@ -211,13 +181,6 @@ public class UpdateManager : INotifyPropertyChanged
|
||||
}
|
||||
}
|
||||
|
||||
private static string? FindExe(string dir)
|
||||
{
|
||||
foreach (var f in Directory.EnumerateFiles(dir, "ClaudeChecker.exe", SearchOption.AllDirectories))
|
||||
return f;
|
||||
return null;
|
||||
}
|
||||
|
||||
public static bool IsNewer(string version, string current)
|
||||
{
|
||||
static (int[] Base, int[]? Pre) Parse(string v)
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
#ifndef AppVersion
|
||||
#define AppVersion "0.0.1"
|
||||
#endif
|
||||
|
||||
[Setup]
|
||||
AppName=ClaudeChecker
|
||||
AppVersion={#AppVersion}
|
||||
AppPublisher=superdooper86
|
||||
AppPublisherURL=https://github.com/superdooper86/claudechecker
|
||||
AppSupportURL=https://github.com/superdooper86/claudechecker/issues
|
||||
AppUpdatesURL=https://github.com/superdooper86/claudechecker/releases
|
||||
DefaultDirName={localappdata}\ClaudeChecker
|
||||
DefaultGroupName=ClaudeChecker
|
||||
DisableProgramGroupPage=yes
|
||||
PrivilegesRequired=lowest
|
||||
OutputDir=.
|
||||
OutputBaseFilename=ClaudeChecker-Installer
|
||||
Compression=lzma
|
||||
SolidCompression=yes
|
||||
WizardStyle=modern
|
||||
UninstallDisplayIcon={app}\ClaudeChecker.exe
|
||||
SourceDir=..
|
||||
|
||||
[Languages]
|
||||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||
|
||||
[Tasks]
|
||||
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
||||
|
||||
[Files]
|
||||
Source: "publish\ClaudeChecker.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||||
Source: "publish\Assets\*"; DestDir: "{app}\Assets"; Flags: ignoreversion recursesubdirs
|
||||
|
||||
[Icons]
|
||||
Name: "{group}\ClaudeChecker"; Filename: "{app}\ClaudeChecker.exe"
|
||||
Name: "{userdesktop}\ClaudeChecker"; Filename: "{app}\ClaudeChecker.exe"; Tasks: desktopicon
|
||||
|
||||
[Run]
|
||||
; Silent install (auto-update): launch automatically
|
||||
Filename: "{app}\ClaudeChecker.exe"; Flags: nowait; Check: WizardSilent
|
||||
; Manual install: show launch checkbox on final page
|
||||
Filename: "{app}\ClaudeChecker.exe"; Description: "{cm:LaunchProgram,ClaudeChecker}"; Flags: nowait postinstall skipifsilent
|
||||
Reference in New Issue
Block a user