Compare commits
9
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a4a4d70530 | ||
|
|
073d3b14ef | ||
|
|
5603b94f8a | ||
|
|
28a449b060 | ||
|
|
d2ba7365b0 | ||
|
|
93862686b6 | ||
|
|
8170f3a1b3 | ||
|
|
5fbdaab2d0 | ||
|
|
7db17fb53d |
+21
-27
@@ -1,10 +1,8 @@
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Forms;
|
||||
using System.Windows.Threading;
|
||||
using Application = System.Windows.Application;
|
||||
using Forms = System.Windows.Forms;
|
||||
|
||||
namespace ClaudeCheckerWindows;
|
||||
|
||||
@@ -13,9 +11,9 @@ public partial class App : Application
|
||||
public static UsageViewModel ViewModel { get; } = new();
|
||||
public static UpdateManager Updater { get; } = new();
|
||||
|
||||
private NotifyIcon? _tray;
|
||||
private PopupWindow? _popup;
|
||||
private DispatcherTimer? _timer;
|
||||
private Forms.NotifyIcon? _tray;
|
||||
private PopupWindow? _popup;
|
||||
private DispatcherTimer? _timer;
|
||||
|
||||
protected override void OnStartup(StartupEventArgs e)
|
||||
{
|
||||
@@ -33,40 +31,37 @@ public partial class App : Application
|
||||
|
||||
private void SetupTray()
|
||||
{
|
||||
_tray = new NotifyIcon
|
||||
_tray = new Forms.NotifyIcon
|
||||
{
|
||||
Text = "ClaudeChecker",
|
||||
Visible = true,
|
||||
Icon = LoadIcon(),
|
||||
};
|
||||
|
||||
_tray.MouseClick += (_, e) =>
|
||||
{
|
||||
if (e.Button == MouseButtons.Left)
|
||||
TogglePopup();
|
||||
if (e.Button == Forms.MouseButtons.Left)
|
||||
Dispatcher.InvokeAsync(TogglePopup);
|
||||
};
|
||||
|
||||
_tray.ContextMenuStrip = BuildContextMenu();
|
||||
|
||||
ViewModel.PropertyChanged += (_, e) =>
|
||||
{
|
||||
if (e.PropertyName is nameof(UsageViewModel.Limits) or nameof(UsageViewModel.ShowInTaskbar))
|
||||
UpdateTrayText();
|
||||
};
|
||||
ViewModel.PropertyChanged += (_, _) => UpdateTrayText();
|
||||
Updater.PropertyChanged += (_, _) => UpdateTrayText();
|
||||
}
|
||||
|
||||
private static Icon LoadIcon()
|
||||
private static System.Drawing.Icon LoadIcon()
|
||||
{
|
||||
try { return new Icon("Assets/icon.ico"); }
|
||||
catch { return SystemIcons.Application; }
|
||||
try { return new System.Drawing.Icon("Assets/icon.ico"); }
|
||||
catch { return System.Drawing.SystemIcons.Application; }
|
||||
}
|
||||
|
||||
private ContextMenuStrip BuildContextMenu()
|
||||
private Forms.ContextMenuStrip BuildContextMenu()
|
||||
{
|
||||
var menu = new ContextMenuStrip();
|
||||
menu.Items.Add("Show ClaudeChecker", null, (_, _) => ShowPopup());
|
||||
menu.Items.Add(new ToolStripSeparator());
|
||||
menu.Items.Add("Quit", null, (_, _) => Quit());
|
||||
menu.BackColor = System.Drawing.Color.FromArgb(40, 40, 40);
|
||||
menu.ForeColor = System.Drawing.Color.White;
|
||||
var menu = new Forms.ContextMenuStrip();
|
||||
menu.Items.Add("Show ClaudeChecker", null, (_, _) => Dispatcher.InvokeAsync(ShowPopup));
|
||||
menu.Items.Add(new Forms.ToolStripSeparator());
|
||||
menu.Items.Add("Quit", null, (_, _) => Dispatcher.InvokeAsync(Quit));
|
||||
return menu;
|
||||
}
|
||||
|
||||
@@ -85,7 +80,6 @@ public partial class App : Application
|
||||
_popup = new PopupWindow();
|
||||
_popup.Closed += (_, _) => _popup = null;
|
||||
}
|
||||
|
||||
PositionPopup();
|
||||
_popup.Show();
|
||||
_popup.Activate();
|
||||
@@ -95,8 +89,8 @@ public partial class App : Application
|
||||
{
|
||||
if (_popup == null) return;
|
||||
var workArea = SystemParameters.WorkArea;
|
||||
_popup.Left = workArea.Right - _popup.Width - 8;
|
||||
_popup.Top = workArea.Bottom - _popup.Height - 8;
|
||||
_popup.Left = workArea.Right - _popup.Width - 8;
|
||||
_popup.Top = workArea.Bottom - _popup.Height - 8;
|
||||
}
|
||||
|
||||
public void ScheduleTimer(int seconds)
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Text.Json;
|
||||
|
||||
namespace ClaudeCheckerWindows;
|
||||
|
||||
public class AppSettings
|
||||
{
|
||||
public string CookieStore { get; set; } = "";
|
||||
public string BurnHistory { get; set; } = "";
|
||||
public int RefreshInterval { get; set; } = 120;
|
||||
public bool ShowInTaskbar { get; set; } = true;
|
||||
public bool BetaChannel { get; set; } = false;
|
||||
|
||||
private static readonly string FilePath = Path.Combine(
|
||||
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
|
||||
"ClaudeChecker", "settings.json");
|
||||
|
||||
private static AppSettings? _instance;
|
||||
public static AppSettings Default => _instance ??= Load();
|
||||
|
||||
private static AppSettings Load()
|
||||
{
|
||||
try
|
||||
{
|
||||
if (File.Exists(FilePath))
|
||||
return JsonSerializer.Deserialize<AppSettings>(File.ReadAllText(FilePath)) ?? new();
|
||||
}
|
||||
catch { }
|
||||
return new();
|
||||
}
|
||||
|
||||
public void Save()
|
||||
{
|
||||
try
|
||||
{
|
||||
Directory.CreateDirectory(Path.GetDirectoryName(FilePath)!);
|
||||
File.WriteAllText(FilePath, JsonSerializer.Serialize(this,
|
||||
new JsonSerializerOptions { WriteIndented = true }));
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
}
|
||||
@@ -4,19 +4,22 @@
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net8.0-windows</TargetFramework>
|
||||
<UseWPF>true</UseWPF>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<AssemblyName>ClaudeChecker</AssemblyName>
|
||||
<RootNamespace>ClaudeCheckerWindows</RootNamespace>
|
||||
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
|
||||
<Version>1.1.3</Version>
|
||||
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
|
||||
<Version>1.0.0</Version>
|
||||
<Platforms>x64</Platforms>
|
||||
</PropertyGroup>
|
||||
|
||||
<!-- WinForms referenced explicitly so NotifyIcon is available without polluting global namespace -->
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2651.64" />
|
||||
<FrameworkReference Include="Microsoft.WindowsDesktop.App.WindowsForms"/>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2651.64"/>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
@@ -28,12 +31,4 @@
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
<!-- App settings for user preferences -->
|
||||
<ItemGroup>
|
||||
<None Update="Properties\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
// Global aliases to resolve ambiguities between System.Windows.* and System.Drawing.*
|
||||
global using Application = System.Windows.Application;
|
||||
global using Brushes = System.Windows.Media.Brushes;
|
||||
global using Color = System.Windows.Media.Color;
|
||||
global using FlowDirection = System.Windows.FlowDirection;
|
||||
global using FontFamily = System.Windows.Media.FontFamily;
|
||||
global using Orientation = System.Windows.Controls.Orientation;
|
||||
global using ProgressBar = System.Windows.Controls.ProgressBar;
|
||||
global using Size = System.Windows.Size;
|
||||
@@ -48,8 +48,8 @@ public class UpdateManager : INotifyPropertyChanged
|
||||
set
|
||||
{
|
||||
Set(ref _betaChannel, value);
|
||||
Properties.Settings.Default.BetaChannel = value;
|
||||
Properties.Settings.Default.Save();
|
||||
AppSettings.Default.BetaChannel = value;
|
||||
AppSettings.Default.Save();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -59,7 +59,7 @@ public class UpdateManager : INotifyPropertyChanged
|
||||
|
||||
public UpdateManager()
|
||||
{
|
||||
_betaChannel = Properties.Settings.Default.BetaChannel;
|
||||
_betaChannel = AppSettings.Default.BetaChannel;
|
||||
}
|
||||
|
||||
public async Task CheckForUpdatesAsync()
|
||||
|
||||
+15
-18
@@ -46,8 +46,8 @@ public class UsageViewModel : INotifyPropertyChanged
|
||||
set
|
||||
{
|
||||
Set(ref _refreshInterval, value);
|
||||
Properties.Settings.Default.RefreshInterval = value;
|
||||
Properties.Settings.Default.Save();
|
||||
AppSettings.Default.RefreshInterval = value;
|
||||
AppSettings.Default.Save();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -58,16 +58,16 @@ public class UsageViewModel : INotifyPropertyChanged
|
||||
set
|
||||
{
|
||||
Set(ref _showInTaskbar, value);
|
||||
Properties.Settings.Default.ShowInTaskbar = value;
|
||||
Properties.Settings.Default.Save();
|
||||
AppSettings.Default.ShowInTaskbar = value;
|
||||
AppSettings.Default.Save();
|
||||
}
|
||||
}
|
||||
|
||||
public UsageViewModel()
|
||||
{
|
||||
_refreshInterval = Properties.Settings.Default.RefreshInterval > 0
|
||||
? Properties.Settings.Default.RefreshInterval : 120;
|
||||
_showInTaskbar = Properties.Settings.Default.ShowInTaskbar;
|
||||
_refreshInterval = AppSettings.Default.RefreshInterval > 0
|
||||
? AppSettings.Default.RefreshInterval : 120;
|
||||
_showInTaskbar = AppSettings.Default.ShowInTaskbar;
|
||||
LoadBurnHistory();
|
||||
LoadPlaceholders();
|
||||
}
|
||||
@@ -137,11 +137,8 @@ public class UsageViewModel : INotifyPropertyChanged
|
||||
|
||||
public async Task SignOutAsync()
|
||||
{
|
||||
var env = await CoreWebView2Environment.CreateAsync();
|
||||
var dataManager = env.CreateCoreWebView2CookieManager();
|
||||
// Clear via settings — simplest approach is to delete the stored cookies
|
||||
Properties.Settings.Default.CookieStore = "";
|
||||
Properties.Settings.Default.Save();
|
||||
AppSettings.Default.CookieStore = "";
|
||||
AppSettings.Default.Save();
|
||||
|
||||
await Application.Current.Dispatcher.InvokeAsync(() =>
|
||||
{
|
||||
@@ -155,7 +152,7 @@ public class UsageViewModel : INotifyPropertyChanged
|
||||
// Cookie store: we persist cookies as JSON in settings after login
|
||||
public static async Task<List<(string Name, string Value, string Domain, string Path)>> GetCookiesAsync()
|
||||
{
|
||||
var raw = Properties.Settings.Default.CookieStore;
|
||||
var raw = AppSettings.Default.CookieStore;
|
||||
if (string.IsNullOrEmpty(raw)) return [];
|
||||
try
|
||||
{
|
||||
@@ -172,8 +169,8 @@ public class UsageViewModel : INotifyPropertyChanged
|
||||
.Where(c => c.Domain.Contains("claude.ai"))
|
||||
.Select(c => new CookieEntry { Name = c.Name, Value = c.Value, Domain = c.Domain, Path = c.Path })
|
||||
.ToList();
|
||||
Properties.Settings.Default.CookieStore = JsonSerializer.Serialize(entries);
|
||||
Properties.Settings.Default.Save();
|
||||
AppSettings.Default.CookieStore = JsonSerializer.Serialize(entries);
|
||||
AppSettings.Default.Save();
|
||||
}
|
||||
|
||||
private static HttpClient BuildClient(List<(string Name, string Value, string Domain, string Path)> cookies)
|
||||
@@ -280,7 +277,7 @@ public class UsageViewModel : INotifyPropertyChanged
|
||||
{
|
||||
try
|
||||
{
|
||||
var raw = Properties.Settings.Default.BurnHistory;
|
||||
var raw = AppSettings.Default.BurnHistory;
|
||||
if (string.IsNullOrEmpty(raw)) return;
|
||||
var saved = JsonSerializer.Deserialize<Dictionary<string, List<double>>>(raw);
|
||||
if (saved != null)
|
||||
@@ -291,8 +288,8 @@ public class UsageViewModel : INotifyPropertyChanged
|
||||
|
||||
private void SaveBurnHistory()
|
||||
{
|
||||
Properties.Settings.Default.BurnHistory = JsonSerializer.Serialize(_burnHistory);
|
||||
Properties.Settings.Default.Save();
|
||||
AppSettings.Default.BurnHistory = JsonSerializer.Serialize(_burnHistory);
|
||||
AppSettings.Default.Save();
|
||||
}
|
||||
|
||||
public event PropertyChangedEventHandler? PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user