jcs
/wifi_da
/amendments
/44
*: Release 1.4
jcs made amendment 44 9 days ago
--- README Mon Jan 13 08:52:25 2025
+++ README Tue Aug 19 16:08:43 2025
@@ -20,6 +20,9 @@ There should now be a Wi-Fi option in the Apple menu.
Change history:
+1.4 - 2025-08-19
+ - Fix a bug entering hidden Wi-Fi SSID, reported by Chris Hanson
+
1.3 - 2025-01-13
- Fix a handful of bugs
- Add a log window that can be toggled by clicking on the signal icon
--- Wi-Fi DA.π.r Mon Jan 13 09:05:26 2025
+++ Wi-Fi DA.π.r Tue Aug 19 16:06:36 2025
@@ -91,7 +91,7 @@ data 'BNDL' (-16000) {
};
data 'vers' (1) {
- $"0130 8000 0000 0331 2E33 2B31 2E33 20A9" /* .0Ä....1.3+1.3 © */
+ $"0140 8000 0000 0331 2E34 2B31 2E34 20A9" /* .@Ä....1.4+1.4 © */
$"2032 3032 332D 3230 3235 2C20 6A6F 7368" /* 2023-2025, josh */
$"7561 2073 7465 696E 203C 6A63 7340 6A63" /* ua stein <jcs@jc */
$"732E 6F72 673E" /* s.org> */
--- window.c Tue Jan 7 21:09:30 2025
+++ window.c Wed Jul 23 13:59:50 2025
@@ -124,7 +124,6 @@ update_window(bool force)
GetPort(&savePort);
SetPort(wifi_da.win);
- //logger_printf("redrawing window");
cur_bits = wifi_da.win->portBits;
SetPortBits(&wifi_da.win_shadow);
@@ -342,10 +341,10 @@ update_wifi_ssid_list(bool update_networks)
void
activate_window(bool activate)
{
+#if 0
Rect r;
GrafPtr savePort;
-#if 0
GetPort(&savePort);
SetPort(win);
r = win->portRect;
@@ -434,8 +433,9 @@ window_mousedown(Point p)
loword(new_net) > nwifi_menu_networks)
goto menu_done;
net = &wifi_menu_networks[loword(new_net) - 1];
- logger_printf("clicked %s (item %d)",
- wifi_menu_networks[loword(new_net) - 1].ssid, loword(new_net));
+ logger_printf("clicked %s (item %d, flags 0x%x)",
+ wifi_menu_networks[loword(new_net) - 1].ssid, loword(new_net),
+ wifi_menu_networks[loword(new_net) - 1].flags);
memset(&wjr, 0, sizeof(wjr));