citrascope 0.5.1__tar.gz → 0.5.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. {citrascope-0.5.1 → citrascope-0.5.2}/PKG-INFO +1 -1
  2. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/web/static/app.js +6 -0
  3. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/web/static/style.css +5 -0
  4. {citrascope-0.5.1 → citrascope-0.5.2}/pyproject.toml +2 -2
  5. {citrascope-0.5.1 → citrascope-0.5.2}/.devcontainer/devcontainer.json +0 -0
  6. {citrascope-0.5.1 → citrascope-0.5.2}/.flake8 +0 -0
  7. {citrascope-0.5.1 → citrascope-0.5.2}/.github/copilot-instructions.md +0 -0
  8. {citrascope-0.5.1 → citrascope-0.5.2}/.github/dependabot.yml +0 -0
  9. {citrascope-0.5.1 → citrascope-0.5.2}/.github/workflows/pypi-publish.yml +0 -0
  10. {citrascope-0.5.1 → citrascope-0.5.2}/.github/workflows/pytest.yml +0 -0
  11. {citrascope-0.5.1 → citrascope-0.5.2}/.gitignore +0 -0
  12. {citrascope-0.5.1 → citrascope-0.5.2}/.pre-commit-config.yaml +0 -0
  13. {citrascope-0.5.1 → citrascope-0.5.2}/.python-version +0 -0
  14. {citrascope-0.5.1 → citrascope-0.5.2}/.vscode/launch.json +0 -0
  15. {citrascope-0.5.1 → citrascope-0.5.2}/LICENSE +0 -0
  16. {citrascope-0.5.1 → citrascope-0.5.2}/README.md +0 -0
  17. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/__init__.py +0 -0
  18. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/__main__.py +0 -0
  19. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/api/abstract_api_client.py +0 -0
  20. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/api/citra_api_client.py +0 -0
  21. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/citra_scope_daemon.py +0 -0
  22. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/constants.py +0 -0
  23. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/hardware/abstract_astro_hardware_adapter.py +0 -0
  24. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/hardware/adapter_registry.py +0 -0
  25. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/hardware/indi_adapter.py +0 -0
  26. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/hardware/kstars_dbus_adapter.py +0 -0
  27. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/hardware/nina_adv_http_adapter.py +0 -0
  28. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/hardware/nina_adv_http_survey_template.json +0 -0
  29. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/logging/__init__.py +0 -0
  30. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/logging/_citrascope_logger.py +0 -0
  31. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/logging/web_log_handler.py +0 -0
  32. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/settings/__init__.py +0 -0
  33. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/settings/citrascope_settings.py +0 -0
  34. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/settings/settings_file_manager.py +0 -0
  35. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/tasks/runner.py +0 -0
  36. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/tasks/scope/base_telescope_task.py +0 -0
  37. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/tasks/scope/static_telescope_task.py +0 -0
  38. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/tasks/scope/tracking_telescope_task.py +0 -0
  39. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/tasks/task.py +0 -0
  40. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/web/__init__.py +0 -0
  41. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/web/app.py +0 -0
  42. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/web/server.py +0 -0
  43. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/web/static/api.js +0 -0
  44. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/web/static/config.js +0 -0
  45. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/web/static/img/citra.png +0 -0
  46. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/web/static/img/favicon.png +0 -0
  47. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/web/static/websocket.js +0 -0
  48. {citrascope-0.5.1 → citrascope-0.5.2}/citrascope/web/templates/dashboard.html +0 -0
  49. {citrascope-0.5.1 → citrascope-0.5.2}/tests/unit/test_api_client.py +0 -0
  50. {citrascope-0.5.1 → citrascope-0.5.2}/tests/unit/test_hardware_adapter.py +0 -0
  51. {citrascope-0.5.1 → citrascope-0.5.2}/tests/unit/test_task_manager.py +0 -0
  52. {citrascope-0.5.1 → citrascope-0.5.2}/tests/unit/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: citrascope
3
- Version: 0.5.1
3
+ Version: 0.5.2
4
4
  Summary: Remotely control a telescope while it polls for tasks, collects and edge processes data, and delivers results and data for further processing.
5
5
  Author-email: Patrick McDavid <patrick@citra.space>
6
6
  License: MIT
@@ -686,6 +686,12 @@ document.addEventListener('DOMContentLoaded', async function() {
686
686
  headerVersion.addEventListener('click', showVersionModal);
687
687
  }
688
688
 
689
+ // Wire up update indicator badge click to open modal
690
+ const updateIndicator = document.getElementById('updateIndicator');
691
+ if (updateIndicator) {
692
+ updateIndicator.addEventListener('click', showVersionModal);
693
+ }
694
+
689
695
  // Connect WebSocket with handlers
690
696
  connectWebSocket({
691
697
  onStatus: updateStatus,
@@ -49,6 +49,11 @@ body {
49
49
  gap: 0.5em;
50
50
  }
51
51
 
52
+ /* Clickable elements */
53
+ #headerVersion, #updateIndicator {
54
+ cursor: pointer;
55
+ }
56
+
52
57
  /* Muted text color for placeholders */
53
58
  .text-muted-dark {
54
59
  color: #a0aec0;
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "citrascope"
3
- version = "0.5.1"
3
+ version = "0.5.2"
4
4
  description = "Remotely control a telescope while it polls for tasks, collects and edge processes data, and delivers results and data for further processing."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10,<3.13"
@@ -90,7 +90,7 @@ omit = ["tests/*", "__init__.py"]
90
90
  allow-direct-references = true
91
91
 
92
92
  [tool.bumpversion]
93
- current_version = "0.5.1"
93
+ current_version = "0.5.2"
94
94
  commit = true
95
95
  tag = true
96
96
 
File without changes
File without changes
File without changes
File without changes
File without changes