fiberpath 0.7.2__tar.gz → 0.7.3__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 (362) hide show
  1. {fiberpath-0.7.2 → fiberpath-0.7.3}/.github/actions/setup-node/action.yml +1 -1
  2. {fiberpath-0.7.2 → fiberpath-0.7.3}/.github/actions/setup-python/action.yml +2 -2
  3. {fiberpath-0.7.2 → fiberpath-0.7.3}/.github/actions/setup-rust/action.yml +1 -1
  4. {fiberpath-0.7.2 → fiberpath-0.7.3}/.github/workflows/backend-ci.yml +1 -1
  5. {fiberpath-0.7.2 → fiberpath-0.7.3}/.github/workflows/ci-check.yml +14 -22
  6. {fiberpath-0.7.2 → fiberpath-0.7.3}/.github/workflows/gui-ci.yml +0 -5
  7. {fiberpath-0.7.2 → fiberpath-0.7.3}/.github/workflows/gui-packaging.yml +9 -0
  8. {fiberpath-0.7.2 → fiberpath-0.7.3}/.github/workflows/release.yml +5 -57
  9. {fiberpath-0.7.2 → fiberpath-0.7.3}/.gitignore +0 -6
  10. {fiberpath-0.7.2 → fiberpath-0.7.3}/CHANGELOG.md +27 -0
  11. {fiberpath-0.7.2 → fiberpath-0.7.3}/PKG-INFO +23 -27
  12. {fiberpath-0.7.2 → fiberpath-0.7.3}/README.md +22 -22
  13. fiberpath-0.7.3/docs/.pages +13 -0
  14. fiberpath-0.7.3/docs/architecture/.pages +3 -0
  15. fiberpath-0.7.3/docs/development/.pages +8 -0
  16. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/development/ci-cd.md +14 -19
  17. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/development/contributing.md +8 -5
  18. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/development/dependency-policy.md +20 -3
  19. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/development/release-process.md +2 -2
  20. fiberpath-0.7.3/docs/development/roadmap.md +154 -0
  21. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/getting-started.md +2 -2
  22. fiberpath-0.7.3/docs/guides/.pages +5 -0
  23. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/index.md +9 -9
  24. fiberpath-0.7.3/docs/reference/.pages +4 -0
  25. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/troubleshooting.md +3 -3
  26. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/gcode/generator.py +1 -6
  27. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/planning/exceptions.py +0 -5
  28. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/planning/helpers.py +0 -6
  29. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/simulation/simulator.py +2 -2
  30. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/visualization/plotter.py +4 -8
  31. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/README.md +1 -1
  32. fiberpath-0.7.3/fiberpath_gui/docs/.pages +7 -0
  33. fiberpath-0.7.3/fiberpath_gui/docs/architecture/.pages +5 -0
  34. fiberpath-0.7.3/fiberpath_gui/docs/guides/.pages +4 -0
  35. fiberpath-0.7.3/fiberpath_gui/docs/reference/.pages +2 -0
  36. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/package-lock.json +17 -17
  37. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/package.json +1 -1
  38. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/MenuBar.tsx +1 -1
  39. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/canvas/VisualizationCanvas.tsx +3 -3
  40. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/dialogs/AboutDialog.tsx +2 -2
  41. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/dialogs/CliUnavailableDialog.tsx +8 -5
  42. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/dialogs/ExportConfirmationDialog.tsx +4 -4
  43. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useFileOperations.test.tsx +1 -2
  44. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useFileOperations.ts +5 -6
  45. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/main.tsx +3 -8
  46. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/tests/renderWithProviders.tsx +3 -6
  47. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/types/converters.test.ts +17 -4
  48. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/types/converters.ts +20 -17
  49. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/types/project.ts +15 -9
  50. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/Cargo.lock +1 -1
  51. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/Cargo.toml +1 -1
  52. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/src/marlin.rs +26 -51
  53. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/tauri.conf.json +1 -1
  54. {fiberpath-0.7.2 → fiberpath-0.7.3}/pyproject.toml +1 -6
  55. fiberpath-0.7.3/renovate.json +4 -0
  56. {fiberpath-0.7.2 → fiberpath-0.7.3}/uv.lock +2 -376
  57. fiberpath-0.7.2/.github/dependabot.yml +0 -122
  58. fiberpath-0.7.2/.github/workflows/docs-ci.yml +0 -35
  59. fiberpath-0.7.2/.github/workflows/docs-deploy.yml +0 -64
  60. fiberpath-0.7.2/TODO.md +0 -23
  61. fiberpath-0.7.2/fiberpath_gui/src/components/ErrorNotificationToast.tsx +0 -39
  62. fiberpath-0.7.2/fiberpath_gui/src/contexts/ErrorNotificationContext.tsx +0 -102
  63. fiberpath-0.7.2/mkdocs.yml +0 -80
  64. fiberpath-0.7.2/scripts/sync_gui_docs.py +0 -91
  65. {fiberpath-0.7.2 → fiberpath-0.7.3}/.gitattributes +0 -0
  66. {fiberpath-0.7.2 → fiberpath-0.7.3}/.github/workflows/dependency-audit.yml +0 -0
  67. {fiberpath-0.7.2 → fiberpath-0.7.3}/.github/workflows/gui-e2e-smoke.yml +0 -0
  68. {fiberpath-0.7.2 → fiberpath-0.7.3}/.pre-commit-config.yaml +0 -0
  69. {fiberpath-0.7.2 → fiberpath-0.7.3}/.vscode/extensions.json +0 -0
  70. {fiberpath-0.7.2 → fiberpath-0.7.3}/.vscode/launch.json +0 -0
  71. {fiberpath-0.7.2 → fiberpath-0.7.3}/.vscode/settings.json +0 -0
  72. {fiberpath-0.7.2 → fiberpath-0.7.3}/LICENSE +0 -0
  73. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/architecture/axis-system.md +0 -0
  74. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/architecture/overview.md +0 -0
  75. {fiberpath-0.7.2/docs → fiberpath-0.7.3/docs/development}/feature-backlog.md +0 -0
  76. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/development/packaging.md +0 -0
  77. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/development/tooling.md +0 -0
  78. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/guides/axis-mapping.md +0 -0
  79. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/guides/marlin-streaming.md +0 -0
  80. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/guides/visualization.md +0 -0
  81. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/guides/wind-format.md +0 -0
  82. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/reference/api.md +0 -0
  83. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/reference/concepts.md +0 -0
  84. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/reference/planner-math.md +0 -0
  85. {fiberpath-0.7.2 → fiberpath-0.7.3}/docs/vm-testing.md +0 -0
  86. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/README.md +0 -0
  87. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/multi_layer/README.md +0 -0
  88. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/multi_layer/input.wind +0 -0
  89. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/rocketry/AvBay(470mm)single.wind +0 -0
  90. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/rocketry/AvBay(470mm)triple.gcode +0 -0
  91. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/rocketry/AvBay(470mm)triple.wind +0 -0
  92. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/rocketry/CarbonMotorTube(1295mm).gcode +0 -0
  93. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/rocketry/CarbonMotorTube(1295mm).wind +0 -0
  94. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/rocketry/MainChute(585mm).gcode +0 -0
  95. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/rocketry/MainChute(585mm).wind +0 -0
  96. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/simple_cylinder/README.md +0 -0
  97. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/simple_cylinder/input.wind +0 -0
  98. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/sized_simple_cylinder/README.md +0 -0
  99. {fiberpath-0.7.2 → fiberpath-0.7.3}/examples/sized_simple_cylinder/input.wind +0 -0
  100. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/__init__.py +0 -0
  101. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/config/__init__.py +0 -0
  102. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/config/schemas.py +0 -0
  103. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/config/validator.py +0 -0
  104. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/execution/__init__.py +0 -0
  105. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/execution/marlin.py +0 -0
  106. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/gcode/__init__.py +0 -0
  107. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/gcode/dialects.py +0 -0
  108. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/math_utils.py +0 -0
  109. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/planning/__init__.py +0 -0
  110. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/planning/calculations.py +0 -0
  111. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/planning/layer_strategies.py +0 -0
  112. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/planning/machine.py +0 -0
  113. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/planning/planner.py +0 -0
  114. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/planning/validators.py +0 -0
  115. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/simulation/__init__.py +0 -0
  116. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/visualization/__init__.py +0 -0
  117. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath/visualization/export_json.py +0 -0
  118. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_api/__init__.py +0 -0
  119. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_api/main.py +0 -0
  120. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_api/package-lock.json +0 -0
  121. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_api/path_policy.py +0 -0
  122. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_api/routes/__init__.py +0 -0
  123. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_api/routes/plan.py +0 -0
  124. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_api/routes/simulate.py +0 -0
  125. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_api/routes/stream.py +0 -0
  126. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_api/routes/validate.py +0 -0
  127. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_api/schemas.py +0 -0
  128. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_cli/__init__.py +0 -0
  129. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_cli/__main__.py +0 -0
  130. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_cli/interactive.py +0 -0
  131. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_cli/main.py +0 -0
  132. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_cli/output.py +0 -0
  133. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_cli/plan.py +0 -0
  134. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_cli/plot.py +0 -0
  135. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_cli/simulate.py +0 -0
  136. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_cli/stream.py +0 -0
  137. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_cli/validate.py +0 -0
  138. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/.gitignore +0 -0
  139. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/.nvmrc +0 -0
  140. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/.stylelintrc.json +0 -0
  141. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/bundled-cli/.gitkeep +0 -0
  142. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/docs/architecture/cli-integration.md +0 -0
  143. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/docs/architecture/state-management.md +0 -0
  144. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/docs/architecture/streaming-state.md +0 -0
  145. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/docs/architecture/tech-stack.md +0 -0
  146. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/docs/development.md +0 -0
  147. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/docs/guides/performance.md +0 -0
  148. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/docs/guides/schemas.md +0 -0
  149. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/docs/guides/styling.md +0 -0
  150. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/docs/overview.md +0 -0
  151. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/docs/reference/type-safety.md +0 -0
  152. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/docs/testing.md +0 -0
  153. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/generate-types.json +0 -0
  154. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/index.html +0 -0
  155. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/perf/bundle-baseline.json +0 -0
  156. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/schemas/wind-schema.json +0 -0
  157. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/scripts/check-bundle-budget.mjs +0 -0
  158. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/scripts/check-css-vars.mjs +0 -0
  159. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/App.tsx +0 -0
  160. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/CliHealthWarning.tsx +0 -0
  161. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/ErrorBoundary.test.tsx +0 -0
  162. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/ErrorBoundary.tsx +0 -0
  163. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StatusBar.test.tsx +0 -0
  164. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StatusBar.tsx +0 -0
  165. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/ConnectionSection.css +0 -0
  166. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/ConnectionSection.test.tsx +0 -0
  167. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/ConnectionSection.tsx +0 -0
  168. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/FileStreamingSection.css +0 -0
  169. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/FileStreamingSection.test.tsx +0 -0
  170. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/FileStreamingSection.tsx +0 -0
  171. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/KeyboardShortcuts.css +0 -0
  172. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/KeyboardShortcuts.test.tsx +0 -0
  173. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/KeyboardShortcuts.tsx +0 -0
  174. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/ManualControlSection.css +0 -0
  175. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/ManualControlSection.test.tsx +0 -0
  176. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/ManualControlSection.tsx +0 -0
  177. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/StreamControls.css +0 -0
  178. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/StreamControls.tsx +0 -0
  179. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/StreamLog.css +0 -0
  180. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/StreamLog.test.tsx +0 -0
  181. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/StreamLog.tsx +0 -0
  182. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/StreamTab.css +0 -0
  183. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/StreamTab/StreamTab.tsx +0 -0
  184. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/TabBar.test.tsx +0 -0
  185. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/TabBar.tsx +0 -0
  186. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/Toast/ToastContainer.css +0 -0
  187. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/Toast/ToastContainer.test.tsx +0 -0
  188. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/Toast/ToastContainer.tsx +0 -0
  189. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/canvas/CanvasControls.test.tsx +0 -0
  190. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/canvas/CanvasControls.tsx +0 -0
  191. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/canvas/CenterCanvas.tsx +0 -0
  192. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/canvas/LayerScrubber.test.tsx +0 -0
  193. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/canvas/LayerScrubber.tsx +0 -0
  194. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/dialogs/BaseDialog.test.tsx +0 -0
  195. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/dialogs/BaseDialog.tsx +0 -0
  196. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/dialogs/DiagnosticsDialog.test.tsx +0 -0
  197. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/dialogs/DiagnosticsDialog.tsx +0 -0
  198. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/editors/HelicalLayerEditor.test.tsx +0 -0
  199. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/editors/HelicalLayerEditor.tsx +0 -0
  200. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/editors/HoopLayerEditor.test.tsx +0 -0
  201. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/editors/HoopLayerEditor.tsx +0 -0
  202. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/editors/LayerNumericField.tsx +0 -0
  203. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/editors/SkipLayerEditor.test.tsx +0 -0
  204. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/editors/SkipLayerEditor.tsx +0 -0
  205. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/forms/MachineSettingsForm.test.tsx +0 -0
  206. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/forms/MachineSettingsForm.tsx +0 -0
  207. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/forms/MandrelForm.test.tsx +0 -0
  208. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/forms/MandrelForm.tsx +0 -0
  209. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/forms/TowForm.test.tsx +0 -0
  210. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/forms/TowForm.tsx +0 -0
  211. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/layers/LayerRow.test.tsx +0 -0
  212. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/layers/LayerRow.tsx +0 -0
  213. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/layers/LayerStack.test.tsx +0 -0
  214. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/layers/LayerStack.tsx +0 -0
  215. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/panels/BottomPanel.tsx +0 -0
  216. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/panels/LeftPanel.tsx +0 -0
  217. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/panels/RightPanel.tsx +0 -0
  218. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/panels/panels.test.tsx +0 -0
  219. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/tabs/MainTab.test.tsx +0 -0
  220. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/components/tabs/MainTab.tsx +0 -0
  221. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/contexts/CliHealthContext.test.tsx +0 -0
  222. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/contexts/CliHealthContext.tsx +0 -0
  223. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/canvas/usePreviewGeneration.test.ts +0 -0
  224. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/canvas/usePreviewGeneration.ts +0 -0
  225. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/stream/useConnectionActions.test.ts +0 -0
  226. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/stream/useConnectionActions.ts +0 -0
  227. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/stream/useManualCommandActions.test.ts +0 -0
  228. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/stream/useManualCommandActions.ts +0 -0
  229. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/stream/useStreamingActions.test.ts +0 -0
  230. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/stream/useStreamingActions.ts +0 -0
  231. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useCliHealth.test.ts +0 -0
  232. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useCliHealth.ts +0 -0
  233. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useDebouncedValue.test.ts +0 -0
  234. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useDebouncedValue.ts +0 -0
  235. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useKeyboardShortcuts.test.ts +0 -0
  236. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useKeyboardShortcuts.ts +0 -0
  237. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useMenubarInteractions.test.tsx +0 -0
  238. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useMenubarInteractions.ts +0 -0
  239. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useStreamEvents.ts +0 -0
  240. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useTheme.test.ts +0 -0
  241. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/hooks/useTheme.ts +0 -0
  242. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/layouts/MainLayout.test.tsx +0 -0
  243. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/layouts/MainLayout.tsx +0 -0
  244. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/commands.test.ts +0 -0
  245. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/commands.ts +0 -0
  246. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/constants.ts +0 -0
  247. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/fileOperations.test.ts +0 -0
  248. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/fileOperations.ts +0 -0
  249. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/helicalValidation.test.ts +0 -0
  250. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/helicalValidation.ts +0 -0
  251. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/marlin-api.test.ts +0 -0
  252. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/marlin-api.ts +0 -0
  253. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/menuConfig.test.ts +0 -0
  254. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/menuConfig.ts +0 -0
  255. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/numericFields.test.ts +0 -0
  256. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/numericFields.ts +0 -0
  257. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/recentFiles.test.ts +0 -0
  258. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/recentFiles.ts +0 -0
  259. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/retry.test.ts +0 -0
  260. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/retry.ts +0 -0
  261. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/schemas.test.ts +0 -0
  262. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/schemas.ts +0 -0
  263. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/streamFeedback.test.ts +0 -0
  264. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/streamFeedback.ts +0 -0
  265. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/tauri-types.ts +0 -0
  266. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/toastMessages.ts +0 -0
  267. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/validation.test.ts +0 -0
  268. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/validation.ts +0 -0
  269. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/validationErrors.test.ts +0 -0
  270. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/lib/validationErrors.ts +0 -0
  271. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/stores/projectStore.test.ts +0 -0
  272. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/stores/projectStore.ts +0 -0
  273. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/stores/streamStore.ts +0 -0
  274. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/stores/toastStore.test.ts +0 -0
  275. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/stores/toastStore.ts +0 -0
  276. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/styles/buttons.css +0 -0
  277. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/styles/canvas.css +0 -0
  278. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/styles/dialogs.css +0 -0
  279. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/styles/forms.css +0 -0
  280. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/styles/index.css +0 -0
  281. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/styles/layout.css +0 -0
  282. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/styles/notifications.css +0 -0
  283. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/styles/panels.css +0 -0
  284. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/styles/reset.css +0 -0
  285. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/styles/tabs.css +0 -0
  286. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/styles/tokens.css +0 -0
  287. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/styles/typography.css +0 -0
  288. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/tests/integration/streamLifecycle.test.ts +0 -0
  289. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/tests/integration/workflows.test.ts +0 -0
  290. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/tests/setup.ts +0 -0
  291. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/tests/storeUtils.ts +0 -0
  292. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/tests/tauriMocks.ts +0 -0
  293. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/types/components.ts +0 -0
  294. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/types/project.test.ts +0 -0
  295. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src/types/wind-schema.ts +0 -0
  296. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/build.rs +0 -0
  297. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/capabilities/default.json +0 -0
  298. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/icons/128x128.png +0 -0
  299. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/icons/256x256.png +0 -0
  300. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/icons/32x32.png +0 -0
  301. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/icons/512x512.png +0 -0
  302. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/icons/icon.ico +0 -0
  303. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/src/cli_path.rs +0 -0
  304. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/src/cli_process.rs +0 -0
  305. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/src-tauri/src/main.rs +0 -0
  306. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/tsconfig.json +0 -0
  307. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/tsconfig.node.json +0 -0
  308. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/vite.config.ts +0 -0
  309. {fiberpath-0.7.2 → fiberpath-0.7.3}/fiberpath_gui/vitest.config.ts +0 -0
  310. {fiberpath-0.7.2 → fiberpath-0.7.3}/package-lock.json +0 -0
  311. {fiberpath-0.7.2 → fiberpath-0.7.3}/scripts/ci/e2e-check-artifacts.ps1 +0 -0
  312. {fiberpath-0.7.2 → fiberpath-0.7.3}/scripts/ci/e2e-check-artifacts.sh +0 -0
  313. {fiberpath-0.7.2 → fiberpath-0.7.3}/scripts/ci/e2e-cli-smoke.ps1 +0 -0
  314. {fiberpath-0.7.2 → fiberpath-0.7.3}/scripts/ci/e2e-cli-smoke.sh +0 -0
  315. {fiberpath-0.7.2 → fiberpath-0.7.3}/scripts/ci/extract-package-runtime.ps1 +0 -0
  316. {fiberpath-0.7.2 → fiberpath-0.7.3}/scripts/ci/extract-package-runtime.sh +0 -0
  317. {fiberpath-0.7.2 → fiberpath-0.7.3}/scripts/ci/find-bundled-cli.ps1 +0 -0
  318. {fiberpath-0.7.2 → fiberpath-0.7.3}/scripts/ci/find-bundled-cli.sh +0 -0
  319. {fiberpath-0.7.2 → fiberpath-0.7.3}/scripts/export_schema.py +0 -0
  320. {fiberpath-0.7.2 → fiberpath-0.7.3}/scripts/freeze_cli.py +0 -0
  321. {fiberpath-0.7.2 → fiberpath-0.7.3}/scripts/generate_schema.py +0 -0
  322. {fiberpath-0.7.2 → fiberpath-0.7.3}/setup.cfg +0 -0
  323. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/api/test_path_policy.py +0 -0
  324. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/api/test_plan_route.py +0 -0
  325. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/api/test_simulate_route.py +0 -0
  326. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/api/test_stream_route.py +0 -0
  327. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/api/test_stream_route_errors.py +0 -0
  328. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cli/test_axis_format.py +0 -0
  329. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cli/test_cli_json.py +0 -0
  330. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cli/test_cli_smoke.py +0 -0
  331. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cli/test_stream_command.py +0 -0
  332. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/config/__init__.py +0 -0
  333. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/config/test_validator.py +0 -0
  334. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cyclone_reference_runs/inputs/helical-balanced.wind +0 -0
  335. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cyclone_reference_runs/inputs/simple-hoop.wind +0 -0
  336. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cyclone_reference_runs/inputs/skip-bias.wind +0 -0
  337. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cyclone_reference_runs/outputs/helical-balanced/output.gcode +0 -0
  338. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cyclone_reference_runs/outputs/helical-balanced/preview.png +0 -0
  339. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cyclone_reference_runs/outputs/simple-hoop/output.gcode +0 -0
  340. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cyclone_reference_runs/outputs/simple-hoop/preview.png +0 -0
  341. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cyclone_reference_runs/outputs/skip-bias/output.gcode +0 -0
  342. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/cyclone_reference_runs/outputs/skip-bias/preview.png +0 -0
  343. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/execution/test_marlin_streamer.py +0 -0
  344. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/gcode/test_dialects.py +0 -0
  345. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/gcode/test_generator.py +0 -0
  346. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/planning/_generate_fixtures.py +0 -0
  347. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/planning/fixtures/helical_layer.gcode +0 -0
  348. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/planning/fixtures/hoop_layer.gcode +0 -0
  349. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/planning/fixtures/hoop_only_program.gcode +0 -0
  350. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/planning/fixtures/skip_layer.gcode +0 -0
  351. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/planning/test_axis_mapping.py +0 -0
  352. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/planning/test_helpers_machine.py +0 -0
  353. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/planning/test_layer_strategies.py +0 -0
  354. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/planning/test_planner_smoke.py +0 -0
  355. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/planning/test_validators.py +0 -0
  356. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/simulation/test_simulator.py +0 -0
  357. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/simulation/test_simulator_axis_detection.py +0 -0
  358. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/tauri/test_marlin_integration.py +0 -0
  359. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/tauri/test_port_discovery.py +0 -0
  360. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/visualization/test_export_json.py +0 -0
  361. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/visualization/test_plotter.py +0 -0
  362. {fiberpath-0.7.2 → fiberpath-0.7.3}/tests/visualization/test_plotter_axis_detection.py +0 -0
@@ -15,7 +15,7 @@ runs:
15
15
  using: composite
16
16
  steps:
17
17
  - name: Set up Node.js
18
- uses: actions/setup-node@v5
18
+ uses: actions/setup-node@v6
19
19
  with:
20
20
  node-version: ${{ inputs.node-version }}
21
21
  cache: npm
@@ -9,7 +9,7 @@ inputs:
9
9
  dependencies:
10
10
  description: Dependency groups to install (e.g., ".[dev,api]")
11
11
  required: false
12
- default: ".[dev,api,docs]"
12
+ default: ".[dev,api]"
13
13
  cache-key-suffix:
14
14
  description: Additional suffix for cache key
15
15
  required: false
@@ -30,7 +30,7 @@ runs:
30
30
  cache-dependency-glob: "pyproject.toml"
31
31
 
32
32
  - name: Cache Python virtual environment
33
- uses: actions/cache@v5
33
+ uses: actions/cache@v6
34
34
  with:
35
35
  path: .venv
36
36
  key: venv-${{ runner.os }}-${{ inputs.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ inputs.cache-key-suffix }}
@@ -18,7 +18,7 @@ runs:
18
18
  uses: dtolnay/rust-toolchain@stable
19
19
 
20
20
  - name: Cache cargo artifacts
21
- uses: actions/cache@v5
21
+ uses: actions/cache@v6
22
22
  with:
23
23
  path: |
24
24
  ~/.cargo/bin
@@ -18,7 +18,7 @@ jobs:
18
18
  - name: Setup Python environment
19
19
  uses: ./.github/actions/setup-python
20
20
  with:
21
- dependencies: ".[dev,api,docs]"
21
+ dependencies: ".[dev,api]"
22
22
 
23
23
  - name: Run Ruff linter
24
24
  run: uv run ruff check
@@ -13,30 +13,22 @@ on:
13
13
  - "pyproject.toml"
14
14
  - "uv.lock"
15
15
  - "setup.cfg"
16
- - "mkdocs.yml"
16
+ - "renovate.json"
17
17
  - "README.md"
18
18
  - "CHANGELOG.md"
19
19
  - "scripts/**"
20
20
  - ".github/workflows/**"
21
21
  - ".github/actions/**"
22
22
  pull_request:
23
+ # No paths filter on purpose. "CI Check" is a required status check, so it
24
+ # must run on EVERY PR to main and always report a result. With a paths
25
+ # filter, a PR touching only unfiltered files (e.g. a Renovate-managed
26
+ # .pre-commit-config.yaml or renovate.json) would never trigger the
27
+ # workflow, leaving the required check stuck "Expected" and blocking merge.
28
+ # The `changes` job below still gates the heavy jobs by path, and the
29
+ # `ci-check` aggregator always posts — so cost stays low while every PR is
30
+ # mergeable.
23
31
  branches: [main]
24
- paths:
25
- - "fiberpath/**"
26
- - "fiberpath_api/**"
27
- - "fiberpath_cli/**"
28
- - "fiberpath_gui/**"
29
- - "docs/**"
30
- - "tests/**"
31
- - "pyproject.toml"
32
- - "uv.lock"
33
- - "setup.cfg"
34
- - "mkdocs.yml"
35
- - "README.md"
36
- - "CHANGELOG.md"
37
- - "scripts/**"
38
- - ".github/workflows/**"
39
- - ".github/actions/**"
40
32
  workflow_dispatch:
41
33
 
42
34
  permissions:
@@ -78,11 +70,8 @@ jobs:
78
70
  docs:
79
71
  - "docs/**"
80
72
  - "fiberpath_gui/docs/**"
81
- - "mkdocs.yml"
82
- - "scripts/sync_gui_docs.py"
83
73
  - "README.md"
84
- - ".github/workflows/docs-ci.yml"
85
- - ".github/actions/setup-python/**"
74
+ - ".github/workflows/ci-check.yml"
86
75
 
87
76
  backend:
88
77
  name: Backend
@@ -100,7 +89,10 @@ jobs:
100
89
  name: Docs
101
90
  needs: changes
102
91
  if: needs.changes.outputs.docs == 'true'
103
- uses: ./.github/workflows/docs-ci.yml
92
+ uses: fiberpath/.github/.github/workflows/docs-validate.yml@main
93
+ with:
94
+ section: fiberpath
95
+ gui_docs_path: fiberpath_gui/docs
104
96
 
105
97
  ci-check:
106
98
  name: CI Check
@@ -21,11 +21,6 @@ jobs:
21
21
  - name: Setup Node.js environment
22
22
  uses: ./.github/actions/setup-node
23
23
 
24
- - name: Setup Rust environment
25
- uses: ./.github/actions/setup-rust
26
- with:
27
- install-linux-deps: "true"
28
-
29
24
  - name: Run TypeScript type check
30
25
  run: npm run lint
31
26
 
@@ -163,6 +163,15 @@ jobs:
163
163
  with:
164
164
  install-linux-deps: "true"
165
165
 
166
+ - name: Clean stale bundle output
167
+ shell: bash
168
+ run: |
169
+ # The setup-rust cache restores target/, which includes previously
170
+ # built, version-stamped installers under release/bundle/. Remove them
171
+ # before building so the version-agnostic upload globs only ever pick
172
+ # up the current build's artifacts (see #120).
173
+ rm -rf src-tauri/target/release/bundle
174
+
166
175
  - name: Build Tauri bundles
167
176
  run: npm run package
168
177
 
@@ -117,14 +117,6 @@ jobs:
117
117
  name: sbom-artifacts
118
118
  path: sbom
119
119
 
120
- - name: Get previous tag
121
- id: previous-tag
122
- run: |
123
- # Get previous tag BEFORE creating new one
124
- PREV_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "")
125
- echo "previous=$PREV_TAG" >> $GITHUB_OUTPUT
126
- echo "Previous tag: ${PREV_TAG:-none}"
127
-
128
120
  - name: Create release tag
129
121
  run: |
130
122
  git config user.name "github-actions[bot]"
@@ -137,7 +129,6 @@ jobs:
137
129
  uses: actions/github-script@v9
138
130
  with:
139
131
  script: |
140
- const prevTag = '${{ steps.previous-tag.outputs.previous }}';
141
132
  const newTag = '${{ needs.validate.outputs.tag }}';
142
133
  const version = '${{ inputs.version }}';
143
134
  const repo = context.repo;
@@ -154,8 +145,8 @@ jobs:
154
145
  notes += `**Linux:**\n`;
155
146
  notes += `- \`fiberpath_${version}_amd64.deb\`\n`;
156
147
  notes += `- \`fiberpath_${version}_amd64.AppImage\`\n\n`;
157
- notes += `📚 [Installation Guide](https://cameronbrooks11.github.io/fiberpath/getting-started/) | `;
158
- notes += `🆘 [Troubleshooting](https://cameronbrooks11.github.io/fiberpath/troubleshooting/)\n\n`;
148
+ notes += `📚 [Installation Guide](https://fiberpath.org/fiberpath/getting-started/) | `;
149
+ notes += `🆘 [Troubleshooting](https://fiberpath.org/fiberpath/troubleshooting/)\n\n`;
159
150
 
160
151
  // Python package section
161
152
  notes += `## Python Package\n\n`;
@@ -165,52 +156,8 @@ jobs:
165
156
  notes += `[PyPI Package](https://pypi.org/project/fiberpath/${version}/) | `;
166
157
  notes += `[Source Code](https://github.com/${repo.owner}/${repo.repo}/tree/${newTag})\n\n`;
167
158
 
168
- // Changelog section
169
- notes += `## Changelog\n\n`;
170
-
171
- if (prevTag) {
172
- const { data: comparison } = await github.rest.repos.compareCommits({
173
- owner: repo.owner,
174
- repo: repo.repo,
175
- base: prevTag,
176
- head: newTag
177
- });
178
-
179
- // Categorize commits
180
- const added = [];
181
- const fixed = [];
182
- const changed = [];
183
-
184
- comparison.commits.forEach(commit => {
185
- const msg = commit.commit.message.split('\n')[0];
186
- const sha = commit.sha.substring(0, 7);
187
- const entry = `- ${msg} (\`${sha}\`)`;
188
-
189
- const lower = msg.toLowerCase();
190
- if (lower.startsWith('add') || lower.startsWith('feat')) {
191
- added.push(entry);
192
- } else if (lower.startsWith('fix')) {
193
- fixed.push(entry);
194
- } else {
195
- changed.push(entry);
196
- }
197
- });
198
-
199
- if (added.length > 0) {
200
- notes += `### Added\n${added.join('\n')}\n\n`;
201
- }
202
- if (fixed.length > 0) {
203
- notes += `### Fixed\n${fixed.join('\n')}\n\n`;
204
- }
205
- if (changed.length > 0) {
206
- notes += `### Changed\n${changed.join('\n')}\n\n`;
207
- }
208
-
209
- notes += `**Full Changelog:** https://github.com/${repo.owner}/${repo.repo}/compare/${prevTag}...${newTag}\n`;
210
- } else {
211
- notes += `Initial release.\n`;
212
- }
213
-
159
+ // The changelog (## What's Changed + Full Changelog compare link) is
160
+ // appended automatically by generate_release_notes on the release step.
214
161
  return notes;
215
162
  result-encoding: string
216
163
 
@@ -231,6 +178,7 @@ jobs:
231
178
  tag_name: ${{ needs.validate.outputs.tag }}
232
179
  name: Release ${{ inputs.version }}
233
180
  body: ${{ steps.notes.outputs.result }}
181
+ generate_release_notes: true
234
182
  draft: false
235
183
  prerelease: ${{ inputs.prerelease }}
236
184
  files: |
@@ -154,12 +154,6 @@ venv.bak/
154
154
  # Rope project settings
155
155
  .ropeproject
156
156
 
157
- # mkdocs documentation
158
- /site
159
-
160
- # Generated GUI documentation (synced from fiberpath_gui/docs/)
161
- docs/gui/
162
-
163
157
  # mypy
164
158
  .mypy_cache/
165
159
  .dmypy.json
@@ -8,6 +8,33 @@ The format is based on Keep a Changelog, and this project follows semantic versi
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [0.7.3] - 2026-06-25
12
+
13
+ ### Changed
14
+
15
+ - **Project moved to the [`fiberpath` GitHub organization](https://github.com/fiberpath).** The repository, issue tracker, and PyPI trusted publisher now live under `fiberpath/fiberpath`. `pip install fiberpath` is unchanged.
16
+ - Documentation now lives at **[fiberpath.org](https://fiberpath.org)** (FiberPath docs at `fiberpath.org/fiberpath`), built and published from the `fiberpath/fiberpath.github.io` hub. This repository now contains only docs content under `docs/`; the MkDocs configuration, site assembly, and publishing moved to the hub, and docs are validated on every PR via the org's shared `docs-validate` reusable workflow.
17
+ - The required `CI Check` status now runs on every pull request (no path filter) so it always reports and never leaves a PR stuck pending; an inner change-detection job still gates the heavy backend/GUI/docs jobs by path.
18
+ - Release notes are now produced by GitHub-native release-note generation instead of `git describe`, fixing the "Initial release." text that appeared on prior releases.
19
+
20
+ ### Fixed
21
+
22
+ - Unified helical-layer defaults via a shared `HELICAL_DEFAULTS` constant so the CLI, API, and GUI agree on the same values.
23
+
24
+ ### Removed
25
+
26
+ - Retired `TODO.md` in favor of tracked GitHub issues.
27
+
28
+ ### Documentation
29
+
30
+ - Added a development roadmap and relocated the feature backlog under `docs/development/`.
31
+
32
+ ### Dependencies
33
+
34
+ - Migrated dependency automation from Dependabot to org-shared **Renovate** (preset `github>fiberpath/renovate-config`); Dependabot security alerts/updates remain enabled.
35
+ - GitHub Actions: `actions/setup-node` v6, `actions/cache` v6.
36
+ - npm: `@types/node` 26.0.1, `stylelint` 17.14.0.
37
+
11
38
  ## [0.7.2] - 2026-06-24
12
39
 
13
40
  ### Security
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fiberpath
3
- Version: 0.7.2
3
+ Version: 0.7.3
4
4
  Summary: Modern filament winding planner, simulator, and G-code toolkit.
5
5
  Author: Cameron K. Brooks
6
6
  License: GNU AFFERO GENERAL PUBLIC LICENSE
@@ -694,10 +694,6 @@ Requires-Dist: pytest-cov>=4.1; extra == 'dev'
694
694
  Requires-Dist: pytest>=8.2; extra == 'dev'
695
695
  Requires-Dist: ruff>=0.7; extra == 'dev'
696
696
  Requires-Dist: types-pyserial>=3.5; extra == 'dev'
697
- Provides-Extra: docs
698
- Requires-Dist: mkdocs-material>=9.5; extra == 'docs'
699
- Requires-Dist: mkdocs>=1.5; extra == 'docs'
700
- Requires-Dist: pymdown-extensions>=10.0; extra == 'docs'
701
697
  Provides-Extra: plot
702
698
  Requires-Dist: matplotlib>=3.8; extra == 'plot'
703
699
  Requires-Dist: plotly>=5.22; extra == 'plot'
@@ -709,18 +705,18 @@ Description-Content-Type: text/markdown
709
705
 
710
706
  **Plan, simulate, and manufacture composite parts with precision fiber winding.**
711
707
 
712
- [![Version](https://img.shields.io/badge/version-0.7.2-4c7284)](https://github.com/CameronBrooks11/fiberpath/releases)
708
+ [![Version](https://img.shields.io/badge/version-0.7.3-4c7284)](https://github.com/fiberpath/fiberpath/releases)
713
709
  [![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL--3.0-00695C.svg)](LICENSE)
714
- [![Backend CI](https://img.shields.io/github/actions/workflow/status/CameronBrooks11/fiberpath/backend-ci.yml?branch=main&label=Backend%20CI&logo=python&logoColor=white)](https://github.com/CameronBrooks11/fiberpath/actions/workflows/backend-ci.yml)
715
- [![GUI CI](https://img.shields.io/github/actions/workflow/status/CameronBrooks11/fiberpath/gui-ci.yml?branch=main&label=GUI%20CI&logo=react&logoColor=white)](https://github.com/CameronBrooks11/fiberpath/actions/workflows/gui-ci.yml)
716
- [![Docs](https://img.shields.io/github/actions/workflow/status/CameronBrooks11/fiberpath/docs-deploy.yml?branch=main&label=Docs&logo=githubpages&logoColor=white)](https://cameronbrooks11.github.io/fiberpath)
710
+ [![Backend CI](https://img.shields.io/github/actions/workflow/status/fiberpath/fiberpath/backend-ci.yml?branch=main&label=Backend%20CI&logo=python&logoColor=white)](https://github.com/fiberpath/fiberpath/actions/workflows/backend-ci.yml)
711
+ [![GUI CI](https://img.shields.io/github/actions/workflow/status/fiberpath/fiberpath/gui-ci.yml?branch=main&label=GUI%20CI&logo=react&logoColor=white)](https://github.com/fiberpath/fiberpath/actions/workflows/gui-ci.yml)
712
+ [![Docs](https://img.shields.io/github/actions/workflow/status/fiberpath/fiberpath.github.io/deploy.yml?branch=main&label=Docs&logo=githubpages&logoColor=white)](https://fiberpath.org/fiberpath)
717
713
 
718
714
  ![Python](https://img.shields.io/badge/Python-3.11+-3776AB?logo=python&logoColor=white)
719
715
  ![TypeScript](https://img.shields.io/badge/TypeScript-5.0+-3178C6?logo=typescript&logoColor=white)
720
716
  ![React](https://img.shields.io/badge/React-19+-61DAFB?logo=react&logoColor=black)
721
717
  ![Tauri](https://img.shields.io/badge/Tauri-2.0-FFC131?logo=tauri&logoColor=white)
722
718
 
723
- [Download](https://github.com/CameronBrooks11/fiberpath/releases/latest) · [Documentation](https://cameronbrooks11.github.io/fiberpath) · [Examples](examples/)
719
+ [Download](https://github.com/fiberpath/fiberpath/releases/latest) · [Documentation](https://fiberpath.org/fiberpath) · [Examples](examples/)
724
720
 
725
721
  </div>
726
722
 
@@ -749,7 +745,7 @@ Design multi-layer winding patterns in a visual interface, simulate the full man
749
745
 
750
746
  ### Option 1: Desktop GUI (Recommended)
751
747
 
752
- Download the installer for your platform from the [latest release](https://github.com/CameronBrooks11/fiberpath/releases/latest):
748
+ Download the installer for your platform from the [latest release](https://github.com/fiberpath/fiberpath/releases/latest):
753
749
 
754
750
  - **Windows**: `.msi` or `.exe` installer
755
751
  - **macOS**: `.dmg` disk image
@@ -780,7 +776,7 @@ The `plot` command creates a 2D unwrapped visualization of the toolpath for quic
780
776
 
781
777
  ### Desktop Application (Recommended)
782
778
 
783
- 📦 **Download:** [github.com/CameronBrooks11/fiberpath/releases/latest](https://github.com/CameronBrooks11/fiberpath/releases/latest)
779
+ 📦 **Download:** [github.com/fiberpath/fiberpath/releases/latest](https://github.com/fiberpath/fiberpath/releases/latest)
784
780
 
785
781
  **No Python installation required**—the GUI is a fully self-contained native application with the FiberPath backend bundled inside. Just download, install, and run.
786
782
 
@@ -807,7 +803,7 @@ pip install fiberpath[dev] # Development tools
807
803
  **Development Install:**
808
804
 
809
805
  ```sh
810
- git clone https://github.com/CameronBrooks11/fiberpath.git
806
+ git clone https://github.com/fiberpath/fiberpath.git
811
807
  cd fiberpath
812
808
  uv pip install -e .[dev,cli,api]
813
809
  pytest
@@ -926,7 +922,7 @@ FiberPath consists of four coordinated components:
926
922
  - **Core is deterministic** and thoroughly tested
927
923
  - **Modular architecture** allows using components independently
928
924
 
929
- See [Architecture Documentation](https://cameronbrooks11.github.io/fiberpath/architecture/overview/) for detailed design rationale.
925
+ See [Architecture Documentation](https://fiberpath.org/fiberpath/architecture/overview/) for detailed design rationale.
930
926
 
931
927
  ## Axis Configuration
932
928
 
@@ -940,14 +936,14 @@ Legacy XYZ programs should be re-generated under current versions. Simulation an
940
936
 
941
937
  ## Documentation
942
938
 
943
- Comprehensive documentation is available at [cameronbrooks11.github.io/fiberpath](https://cameronbrooks11.github.io/fiberpath):
939
+ Comprehensive documentation is available at [fiberpath.org/fiberpath](https://fiberpath.org/fiberpath):
944
940
 
945
- - **[Getting Started Guide](https://cameronbrooks11.github.io/fiberpath/getting-started/)** – Installation and first steps
946
- - **[Architecture Overview](https://cameronbrooks11.github.io/fiberpath/architecture/overview/)** – System design and components
947
- - **[Usage Guides](https://cameronbrooks11.github.io/fiberpath/guides/visualization/)** – Visualization, streaming, WIND format
948
- - **[API Reference](https://cameronbrooks11.github.io/fiberpath/reference/api/)** – Core functions and CLI commands
949
- - **[GUI Documentation](https://cameronbrooks11.github.io/fiberpath/gui/overview/)** – Desktop application architecture
950
- - **[Development Guide](https://cameronbrooks11.github.io/fiberpath/development/contributing/)** – Contributing, tooling, release process
941
+ - **[Getting Started Guide](https://fiberpath.org/fiberpath/getting-started/)** – Installation and first steps
942
+ - **[Architecture Overview](https://fiberpath.org/fiberpath/architecture/overview/)** – System design and components
943
+ - **[Usage Guides](https://fiberpath.org/fiberpath/guides/visualization/)** – Visualization, streaming, WIND format
944
+ - **[API Reference](https://fiberpath.org/fiberpath/reference/api/)** – Core functions and CLI commands
945
+ - **[GUI Documentation](https://fiberpath.org/fiberpath/gui/overview/)** – Desktop application architecture
946
+ - **[Development Guide](https://fiberpath.org/fiberpath/development/contributing/)** – Contributing, tooling, release process
951
947
 
952
948
  ## Contributing
953
949
 
@@ -955,14 +951,14 @@ Contributions are welcome! FiberPath is actively developed and maintained.
955
951
 
956
952
  **Before contributing:**
957
953
 
958
- 1. Read the [Contributing Guide](https://cameronbrooks11.github.io/fiberpath/development/contributing/)
959
- 2. Check existing [issues](https://github.com/CameronBrooks11/fiberpath/issues) and [pull requests](https://github.com/CameronBrooks11/fiberpath/pulls)
954
+ 1. Read the [Contributing Guide](https://fiberpath.org/fiberpath/development/contributing/)
955
+ 2. Check existing [issues](https://github.com/fiberpath/fiberpath/issues) and [pull requests](https://github.com/fiberpath/fiberpath/pulls)
960
956
  3. Open an issue to discuss major changes before implementing
961
957
 
962
958
  **Development setup:**
963
959
 
964
960
  ```sh
965
- git clone https://github.com/CameronBrooks11/fiberpath.git
961
+ git clone https://github.com/fiberpath/fiberpath.git
966
962
  cd fiberpath
967
963
  uv pip install -e .[dev,cli,api]
968
964
  pytest
@@ -979,7 +975,7 @@ npm test
979
975
  - All new features require tests and documentation
980
976
  - Commit messages use conventional commits format
981
977
 
982
- See [Development Documentation](https://cameronbrooks11.github.io/fiberpath/development/) for tooling, CI/CD, and release process details.
978
+ See [Development Documentation](https://fiberpath.org/fiberpath/development/) for tooling, CI/CD, and release process details.
983
979
 
984
980
  ## License
985
981
 
@@ -995,6 +991,6 @@ See [LICENSE](LICENSE) for full terms.
995
991
 
996
992
  ---
997
993
 
998
- **Questions?** Open an [issue](https://github.com/CameronBrooks11/fiberpath/issues) or check the [documentation](https://cameronbrooks11.github.io/fiberpath).
994
+ **Questions?** Open an [issue](https://github.com/fiberpath/fiberpath/issues) or check the [documentation](https://fiberpath.org/fiberpath).
999
995
 
1000
- **Found a bug?** Report it on [GitHub Issues](https://github.com/CameronBrooks11/fiberpath/issues/new) with steps to reproduce.
996
+ **Found a bug?** Report it on [GitHub Issues](https://github.com/fiberpath/fiberpath/issues/new) with steps to reproduce.
@@ -4,18 +4,18 @@
4
4
 
5
5
  **Plan, simulate, and manufacture composite parts with precision fiber winding.**
6
6
 
7
- [![Version](https://img.shields.io/badge/version-0.7.2-4c7284)](https://github.com/CameronBrooks11/fiberpath/releases)
7
+ [![Version](https://img.shields.io/badge/version-0.7.3-4c7284)](https://github.com/fiberpath/fiberpath/releases)
8
8
  [![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL--3.0-00695C.svg)](LICENSE)
9
- [![Backend CI](https://img.shields.io/github/actions/workflow/status/CameronBrooks11/fiberpath/backend-ci.yml?branch=main&label=Backend%20CI&logo=python&logoColor=white)](https://github.com/CameronBrooks11/fiberpath/actions/workflows/backend-ci.yml)
10
- [![GUI CI](https://img.shields.io/github/actions/workflow/status/CameronBrooks11/fiberpath/gui-ci.yml?branch=main&label=GUI%20CI&logo=react&logoColor=white)](https://github.com/CameronBrooks11/fiberpath/actions/workflows/gui-ci.yml)
11
- [![Docs](https://img.shields.io/github/actions/workflow/status/CameronBrooks11/fiberpath/docs-deploy.yml?branch=main&label=Docs&logo=githubpages&logoColor=white)](https://cameronbrooks11.github.io/fiberpath)
9
+ [![Backend CI](https://img.shields.io/github/actions/workflow/status/fiberpath/fiberpath/backend-ci.yml?branch=main&label=Backend%20CI&logo=python&logoColor=white)](https://github.com/fiberpath/fiberpath/actions/workflows/backend-ci.yml)
10
+ [![GUI CI](https://img.shields.io/github/actions/workflow/status/fiberpath/fiberpath/gui-ci.yml?branch=main&label=GUI%20CI&logo=react&logoColor=white)](https://github.com/fiberpath/fiberpath/actions/workflows/gui-ci.yml)
11
+ [![Docs](https://img.shields.io/github/actions/workflow/status/fiberpath/fiberpath.github.io/deploy.yml?branch=main&label=Docs&logo=githubpages&logoColor=white)](https://fiberpath.org/fiberpath)
12
12
 
13
13
  ![Python](https://img.shields.io/badge/Python-3.11+-3776AB?logo=python&logoColor=white)
14
14
  ![TypeScript](https://img.shields.io/badge/TypeScript-5.0+-3178C6?logo=typescript&logoColor=white)
15
15
  ![React](https://img.shields.io/badge/React-19+-61DAFB?logo=react&logoColor=black)
16
16
  ![Tauri](https://img.shields.io/badge/Tauri-2.0-FFC131?logo=tauri&logoColor=white)
17
17
 
18
- [Download](https://github.com/CameronBrooks11/fiberpath/releases/latest) · [Documentation](https://cameronbrooks11.github.io/fiberpath) · [Examples](examples/)
18
+ [Download](https://github.com/fiberpath/fiberpath/releases/latest) · [Documentation](https://fiberpath.org/fiberpath) · [Examples](examples/)
19
19
 
20
20
  </div>
21
21
 
@@ -44,7 +44,7 @@ Design multi-layer winding patterns in a visual interface, simulate the full man
44
44
 
45
45
  ### Option 1: Desktop GUI (Recommended)
46
46
 
47
- Download the installer for your platform from the [latest release](https://github.com/CameronBrooks11/fiberpath/releases/latest):
47
+ Download the installer for your platform from the [latest release](https://github.com/fiberpath/fiberpath/releases/latest):
48
48
 
49
49
  - **Windows**: `.msi` or `.exe` installer
50
50
  - **macOS**: `.dmg` disk image
@@ -75,7 +75,7 @@ The `plot` command creates a 2D unwrapped visualization of the toolpath for quic
75
75
 
76
76
  ### Desktop Application (Recommended)
77
77
 
78
- 📦 **Download:** [github.com/CameronBrooks11/fiberpath/releases/latest](https://github.com/CameronBrooks11/fiberpath/releases/latest)
78
+ 📦 **Download:** [github.com/fiberpath/fiberpath/releases/latest](https://github.com/fiberpath/fiberpath/releases/latest)
79
79
 
80
80
  **No Python installation required**—the GUI is a fully self-contained native application with the FiberPath backend bundled inside. Just download, install, and run.
81
81
 
@@ -102,7 +102,7 @@ pip install fiberpath[dev] # Development tools
102
102
  **Development Install:**
103
103
 
104
104
  ```sh
105
- git clone https://github.com/CameronBrooks11/fiberpath.git
105
+ git clone https://github.com/fiberpath/fiberpath.git
106
106
  cd fiberpath
107
107
  uv pip install -e .[dev,cli,api]
108
108
  pytest
@@ -221,7 +221,7 @@ FiberPath consists of four coordinated components:
221
221
  - **Core is deterministic** and thoroughly tested
222
222
  - **Modular architecture** allows using components independently
223
223
 
224
- See [Architecture Documentation](https://cameronbrooks11.github.io/fiberpath/architecture/overview/) for detailed design rationale.
224
+ See [Architecture Documentation](https://fiberpath.org/fiberpath/architecture/overview/) for detailed design rationale.
225
225
 
226
226
  ## Axis Configuration
227
227
 
@@ -235,14 +235,14 @@ Legacy XYZ programs should be re-generated under current versions. Simulation an
235
235
 
236
236
  ## Documentation
237
237
 
238
- Comprehensive documentation is available at [cameronbrooks11.github.io/fiberpath](https://cameronbrooks11.github.io/fiberpath):
238
+ Comprehensive documentation is available at [fiberpath.org/fiberpath](https://fiberpath.org/fiberpath):
239
239
 
240
- - **[Getting Started Guide](https://cameronbrooks11.github.io/fiberpath/getting-started/)** – Installation and first steps
241
- - **[Architecture Overview](https://cameronbrooks11.github.io/fiberpath/architecture/overview/)** – System design and components
242
- - **[Usage Guides](https://cameronbrooks11.github.io/fiberpath/guides/visualization/)** – Visualization, streaming, WIND format
243
- - **[API Reference](https://cameronbrooks11.github.io/fiberpath/reference/api/)** – Core functions and CLI commands
244
- - **[GUI Documentation](https://cameronbrooks11.github.io/fiberpath/gui/overview/)** – Desktop application architecture
245
- - **[Development Guide](https://cameronbrooks11.github.io/fiberpath/development/contributing/)** – Contributing, tooling, release process
240
+ - **[Getting Started Guide](https://fiberpath.org/fiberpath/getting-started/)** – Installation and first steps
241
+ - **[Architecture Overview](https://fiberpath.org/fiberpath/architecture/overview/)** – System design and components
242
+ - **[Usage Guides](https://fiberpath.org/fiberpath/guides/visualization/)** – Visualization, streaming, WIND format
243
+ - **[API Reference](https://fiberpath.org/fiberpath/reference/api/)** – Core functions and CLI commands
244
+ - **[GUI Documentation](https://fiberpath.org/fiberpath/gui/overview/)** – Desktop application architecture
245
+ - **[Development Guide](https://fiberpath.org/fiberpath/development/contributing/)** – Contributing, tooling, release process
246
246
 
247
247
  ## Contributing
248
248
 
@@ -250,14 +250,14 @@ Contributions are welcome! FiberPath is actively developed and maintained.
250
250
 
251
251
  **Before contributing:**
252
252
 
253
- 1. Read the [Contributing Guide](https://cameronbrooks11.github.io/fiberpath/development/contributing/)
254
- 2. Check existing [issues](https://github.com/CameronBrooks11/fiberpath/issues) and [pull requests](https://github.com/CameronBrooks11/fiberpath/pulls)
253
+ 1. Read the [Contributing Guide](https://fiberpath.org/fiberpath/development/contributing/)
254
+ 2. Check existing [issues](https://github.com/fiberpath/fiberpath/issues) and [pull requests](https://github.com/fiberpath/fiberpath/pulls)
255
255
  3. Open an issue to discuss major changes before implementing
256
256
 
257
257
  **Development setup:**
258
258
 
259
259
  ```sh
260
- git clone https://github.com/CameronBrooks11/fiberpath.git
260
+ git clone https://github.com/fiberpath/fiberpath.git
261
261
  cd fiberpath
262
262
  uv pip install -e .[dev,cli,api]
263
263
  pytest
@@ -274,7 +274,7 @@ npm test
274
274
  - All new features require tests and documentation
275
275
  - Commit messages use conventional commits format
276
276
 
277
- See [Development Documentation](https://cameronbrooks11.github.io/fiberpath/development/) for tooling, CI/CD, and release process details.
277
+ See [Development Documentation](https://fiberpath.org/fiberpath/development/) for tooling, CI/CD, and release process details.
278
278
 
279
279
  ## License
280
280
 
@@ -290,6 +290,6 @@ See [LICENSE](LICENSE) for full terms.
290
290
 
291
291
  ---
292
292
 
293
- **Questions?** Open an [issue](https://github.com/CameronBrooks11/fiberpath/issues) or check the [documentation](https://cameronbrooks11.github.io/fiberpath).
293
+ **Questions?** Open an [issue](https://github.com/fiberpath/fiberpath/issues) or check the [documentation](https://fiberpath.org/fiberpath).
294
294
 
295
- **Found a bug?** Report it on [GitHub Issues](https://github.com/CameronBrooks11/fiberpath/issues/new) with steps to reproduce.
295
+ **Found a bug?** Report it on [GitHub Issues](https://github.com/fiberpath/fiberpath/issues/new) with steps to reproduce.
@@ -0,0 +1,13 @@
1
+ # Nav for the FiberPath section. This file travels with the docs content; the
2
+ # site (fiberpath/fiberpath.github.io) builds the nav from it. This repo holds
3
+ # no MkDocs config of its own.
4
+ nav:
5
+ - index.md
6
+ - Getting Started: getting-started.md
7
+ - Troubleshooting: troubleshooting.md
8
+ - VM Testing: vm-testing.md
9
+ - User Guides: guides
10
+ - Reference: reference
11
+ - Architecture: architecture
12
+ - Development: development
13
+ - GUI: gui
@@ -0,0 +1,3 @@
1
+ nav:
2
+ - System Overview: overview.md
3
+ - Axis System: axis-system.md
@@ -0,0 +1,8 @@
1
+ nav:
2
+ - Contributing: contributing.md
3
+ - Roadmap: roadmap.md
4
+ - Tooling: tooling.md
5
+ - Dependency Policy: dependency-policy.md
6
+ - Release Process: release-process.md
7
+ - Packaging: packaging.md
8
+ - CI/CD: ci-cd.md