Commit Graph

  • d2e97d2985 moved the example file to docs director Sonoff_TX_Ultimate Mike Geppert 2025-10-29 17:01:47 +0000
  • dec72de4e0 Organize: Move refactoring helper files to docs/ - Moved tasmota_manager_refactor_notes.md to docs/REFACTORING_NOTES.md - Moved migrate_to_refactored.py to docs/ for future reference - Moved GitWorkflowRefactor.sh to docs/ for future reference Mike Geppert 2025-10-29 16:51:17 +0000
  • e8803df329 Rename main.py to TasmotaManager.py Mike Geppert 2025-10-29 16:42:50 +0000
  • 9c22168f79 Refactor: Split TasmotaManager into modular structure - Created modular Python files (main, utils, discovery, configuration, console_settings, unknown_devices, reporting, unifi_client) - Moved documentation files to docs/ - Moved data files to data/ - Removed old monolithic TasmotaManager.py and TasmotaManager_fixed.py - Updated .gitignore and pyproject.toml - All functionality preserved, command-line interface unchanged Version: 2.0.0 Mike Geppert 2025-10-29 16:38:03 +0000
  • 9764d28b04 Update KNOWN_ISSUES.md: Mark Issue #5 as resolved Mike Geppert 2025-10-28 09:50:54 +0000
  • 8637c89e65 Fix Issue #5: Remove empty string from Traditional console_set v1.04-console-empty-param-fixed Mike Geppert 2025-10-28 09:47:01 +0000
  • bc384f6b9c Fix Issue #3: Add delay after MQTT configuration before console settings v1.03-mqtt-delay-fixed Mike Geppert 2025-10-28 08:54:17 +0000
  • 4d510688ab Fix Issue #1: Ensure template activation with Module 0 verification v1.02-template-activation-fixed Mike Geppert 2025-10-28 08:39:15 +0000
  • 8b05031e2e moving items around Mike Geppert 2025-10-28 00:21:08 +0000
  • 8603cd3e7e Added ignore rules Mike Geppert 2025-10-26 12:45:08 -0500
  • 3e66920c2a Stage network_configuration.json for git: ensure updated device_list formatting and console_set profiles are committed Mike Geppert 2025-08-28 08:41:16 -0500
  • 35e6098a61 Save latest session changes: migrate to console_set profiles, device_list structure with per-device console_set, docs updated, formatting updates Mike Geppert 2025-08-28 08:07:29 -0500
  • 8b42e7435e Merge branch 'inital' into 'master' master Mike Geppert 2025-08-17 21:58:31 +0000
  • 142d825909 Release V1.00 v1.01-pre-template-fix v1.00 Release_V1.00 Mike Geppert 2025-08-17 16:47:03 -0500
  • d4b29c2359 Console settings: add post-update verification in with_retry flows; introduce _verify_console_param_value and use it to verify retain final state, general params, and RuleN enable; keep non-retry path behavior. Improves reliability and ensures updates actually took. Mike Geppert 2025-08-09 11:01:58 -0500
  • 9646099a4f UniFi hostname bug handling: keep UniFi name in discovery listing for compatibility, but use device self-reported hostname for operations when bug detected.\n- get_tasmota_devices: detect bug and log self-reported hostname without overwriting listing fields.\n- process_single_device: prefer self-reported hostname for subsequent processing/logs.\n- get_device_details: on bug flag, use self-reported hostname (op_name) for MQTT/console/template updates so %hostname_base% derives from correct name.\n- Add informative logs showing override decisions.\nTargeted tests pass: unifi hostname bug fix/flag and device discovery. Mike Geppert 2025-08-08 23:59:23 -0500
  • 8de801c324 Unifi hostname bug: use self-reported hostname base (before '-') for unknown pattern comparison in bug detection across is_hostname_unknown, get_tasmota_devices, and process_single_device. Add exception handling in is_hostname_unknown for request failures. All targeted tests pass. Mike Geppert 2025-08-08 23:31:55 -0500
  • c31bcbdf85 Console updates: add idempotent pre-checks before sending commands; skip when values already match. Retain params toggled only if needed; rule definitions compared via RuleN 5; RuleN auto-enable skipped if already ON. Add helper _get_console_param_value. Confirm config_other already conditional. Mike Geppert 2025-08-08 23:16:18 -0500
  • 7d1755b44a Build: add pyproject.toml (PEP 621) with setuptools backend and console script; Docs: explain what it takes to make pyproject.toml and how to build/install. Mike Geppert 2025-08-08 22:50:48 -0500
  • 44c9042eee Docs: FAQ - setup.py not needed to publish on GitHub; clarify hosting vs packaging and mention modern pyproject.toml with link to packaging guide. Mike Geppert 2025-08-08 22:47:06 -0500
  • 3f78ff0bd7 Docs: add 'Publishing a Python Script on GitHub' section with step-by-step instructions. Mike Geppert 2025-08-08 22:42:36 -0500
  • 5784a0b414 Refactor: extract console settings into apply_console_settings(); add apply_config_other wrapper; update get_device_details to use wrapper. Docs: fix Configuration example to separate console and config_other; clarify console section usage. Add dead_functions_summary.md audit confirming no dead functions. Mike Geppert 2025-08-08 22:32:09 -0500
  • 126cd39555 Major code improvements and bug fixes: 1. Restructured configuration: Moved config_other and console to top level 2. Added common _match_pattern function for regex pattern matching 3. Implemented Unifi Hostname bug fix in is_hostname_unknown 4. Created common get_device_hostname function to eliminate code duplication 5. Added comprehensive test scripts for all new functionality 6. Added detailed documentation for all changes Mike Geppert 2025-08-08 19:04:33 -0500
  • 4b6e0dff93 Add documentation for rule writing fix Mike Geppert 2025-08-06 22:44:58 -0500
  • 2345184a76 Update documentation to include SetOption4 Mike Geppert 2025-08-06 21:28:19 -0500
  • 3e6001568f Add detailed reporting when no template match is found Mike Geppert 2025-08-06 20:52:15 -0500
  • d585f0f284 Implement template activation, fix console settings duplication, and improve connection display TestCandidate_2 Mike Geppert 2025-08-06 20:31:57 -0500
  • cced5a76cc Fix FullTopic parameter to prevent extra equals sign at beginning of value FullTopic_Fix Mike Geppert 2025-08-06 04:30:31 -0500
  • ecef7bc50f Fix rule1 setting in Device mode and add MQTT command analysis Device_Mode_Fix Mike Geppert 2025-08-06 04:19:28 -0500
  • 60ab8f1309 Add single device processing with --Device parameter and hostname matching features Test_Candidate Mike Geppert 2025-08-06 03:22:26 -0500
  • 9216619cd1 Add retry logic and failure reporting for console commands. Implements up to 3 retry attempts for timed out commands and provides a summary of all failures at the end of execution. Mike Geppert 2025-08-05 02:40:10 -0500
  • 2d3c867e84 Implement proper Retain parameter handling and documentation. For all Retain parameters (ButtonRetain, SwitchRetain, PowerRetain), set the opposite state first before applying the final state to ensure MQTT broker retain settings are properly updated. Update documentation to explain that Retain parameters represent the final state. Mike Geppert 2025-08-05 02:29:30 -0500
  • daa015b4c2 Add automatic rule enabling feature to simplify configuration Mike Geppert 2025-08-05 02:21:56 -0500
  • 42915f508e Fix rule configuration in network_configuration.json and documentation. Changed rule2 to Rule1 to properly enable rule1 instead of rule2. Mike Geppert 2025-08-05 02:07:42 -0500
  • 301eb03c3e Update TasmotaManager with console parameters and documentation Mike Geppert 2025-08-05 01:36:18 -0500
  • d566a7fdbb Implement console parameters feature to set Tasmota device settings Mike Geppert 2025-08-05 01:13:43 -0500
  • 3d2afbd248 Fix NoRetain MQTT setting implementation to properly use config value Mike Geppert 2025-08-05 01:04:50 -0500
  • 040fbd68d8 Implement unknown device processing with interactive toggle feature and update documentation Mike Geppert 2025-08-04 23:04:25 -0500
  • e34e25b951 Add configuration template file for PyCharm project setup Mike Geppert 2025-08-03 22:50:10 -0500
  • 7007fac904 Merge branch 'Inital' into 'inital', keeping 'inital' as the primary implementation Mike Geppert 2025-08-03 22:42:26 -0500
  • b57a0ffa88 saving files Mike Geppert 2025-08-03 22:22:24 -0500
  • 73f7acfd8c Prepare for GitLab migration: Add README, .gitignore, and update TasmotaManager.py Mike Geppert 2025-08-03 21:49:38 -0500
  • d4bdf43ad6 Add discover_devices.py and config.yaml to repository Mike Geppert 2025-07-20 12:10:05 -0500
  • 3342a3620f Pushing saves Mike Geppert 2025-07-19 15:49:53 -0500
  • e106dc50fd More features added Mike Geppert 2025-07-15 09:46:16 -0500
  • 245646a7b7 Added config file Mike Geppert 2025-07-15 01:48:20 -0500
  • 488afdbb3d Initial Creation Mike Geppert 2025-07-15 01:32:57 -0500
  • 27329d3afa Update README.md Administrator 2021-02-15 15:52:52 +0000
  • b362ea7aa6 Initial commit Administrator 2021-02-15 15:52:03 +0000