Jordan Wages wagesj45 · he/him
  • Minnesota
  • https://jordanwages.com
  • great american humorist. non-aesthetic socialist libtard. proud appalachian-american.

  • Joined on 2019-09-09
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 21:45:08 -05:00
a8b0aa71a7 Removing the migration plan that is, at this point, finished.
wagesj45 pushed to main at wagesj45/wagenet-ip-ban-list 2025-08-27 21:05:06 -05:00
8428157915 Update banned IP list — 2025-08-27 21:05:02 CDT
wagesj45 pushed to main at wagesj45/wagenet-ip-ban-list 2025-08-27 20:41:44 -05:00
e59adf0695 fix(update.sh): pull before copy, clean state, retry push
wagesj45 pushed to main at wagesj45/wagenet-ip-ban-list 2025-08-27 20:41:15 -05:00
55fd509305 manual commit
wagesj45 pushed to main at wagesj45/wagenet-ip-ban-list 2025-08-27 17:37:53 -05:00
5da76488ea manual commit
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 17:36:28 -05:00
a314829e91 Center button content globally: add Buttons.axaml style and include it
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 17:33:57 -05:00
5d9a1e8fcf Updating message with proper assignment grammar.
Compare 2 commits »
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 17:33:20 -05:00
42d288f733 Removing old source, as we've completely surpassed it now.
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 17:21:12 -05:00
c361c2285c Move functions list to flyout and auto-close after insert
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 16:30:17 -05:00
46004d85d5 Fix text clipping: remove global TextBlock LineHeight override (Avalonia LineHeight is absolute DIP, not multiplier)
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 04:23:03 -05:00
6b0235fc3a Unborked but the UI decisions were crazy
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 04:18:59 -05:00
6fe6db48a6 Borked :(
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 04:00:30 -05:00
d17d586979 another fix attempt
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 03:55:12 -05:00
fb2bc5e0cd Re-implement variable/function item buttons using ElementName root binding\n\n- Add x:Name=Root on UserControl.\n- In item templates, bind Command to Root.DataContext.*Command.\n- Bind CommandParameter directly to item properties (VariableName/FunctionName).\n- Remove Tag/DataContext hacks and restore typed DataTemplates.
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 03:52:17 -05:00
f262c10e4e Fix invalid x:DataType usage on Buttons in MainView.axaml\n\nRemove x:DataType="{x:Null}" from Buttons to resolve parser errors.\nKeep runtime bindings for commands and parameters via Tag + ancestor DataContext.
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 03:49:26 -05:00
7d6c26d7ef Resolve XAML compiled-binding errors in MainView templates\n\n- Remove x:DataType from DataTemplates to avoid compiled-binding on Button commands.\n- Revert Buttons to runtime-binding using Tag+DataContext pattern without invalid x:DataType.\n- Keep inner visuals typed where appropriate.\n\nFixes parser errors and prior System.Object property resolution issues.
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 03:47:20 -05:00
d523b4d51e Quick fix
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 03:43:39 -05:00
7a1638ea40 Fix compiled binding errors for CommandParameter on Button\n\nUse ancestor DataContext commands and bind parameters directly to item properties.\nResolves: Unable to resolve property 'VariableName' and 'FunctionName' on System.Object in MainView.axaml (lines 45 and 80).
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 03:32:12 -05:00
de0486b0b0 Fix compiled binding errors by adding x:DataType to elements that override DataContext in MainView.axaml
wagesj45 pushed to master at wagesj45/advanced-calculator 2025-08-27 03:27:34 -05:00
fa6a24ea30 Bindings: fix command lookup in DataTemplates by scoping Button.DataContext to root VM and using Tag to preserve item context; set CommandParameter via Tag.