Conversation
…dpoints Signed-off-by: Arian-Ott <88984301+Arian-Ott@users.noreply.github.com>
Signed-off-by: Arian-Ott <88984301+Arian-Ott@users.noreply.github.com>
- Removed React components and assets including App.tsx, App.css, and logos. - Added SvelteKit structure with new layout and page components. - Introduced favicon and updated index configuration for Svelte. - Set up SvelteKit adapter and Vite configuration. - Created TypeScript definitions and updated TypeScript configuration. - Added robots.txt for SEO and accessibility. Signed-off-by: Arian-Ott <88984301+Arian-Ott@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several significant backend and frontend improvements, focusing on expanding show and scene management features, refactoring database models for better normalization, and adding new API endpoints. Additionally, it includes some project configuration and documentation updates. The changes are grouped below by theme.
Backend: Show and Scene Management Enhancements
show.pyfor listing shows, retrieving patching information, creating scenes, and associating fixture values with scenes. These endpoints support pagination, scene creation, and fixture assignment workflows.shows.pyto fetch showfiles with pagination, retrieve patching info, create scenes, and add fixture values to scenes using normalized SQL models.show.pyfor showfile queries, scene creation, and fixture association, supporting the new endpoints and data structures.Backend: Database Model Refactoring and Improvements
Scenemodel indmx/scenes.pyto use a normalized SQL structure, introducing a newSceneFixtureValuetable to store individual fixture attribute values per scene instead of a JSON blob. Added relationships for better ORM usage.Cue,EffectTemplate, andCueEffectmodels to useuuid.uuid7for primary keys, adjusted types (e.g., cue numbers now integers), and removed/modified some unused or legacy fields for clarity and maintainability. [1] [2] [3]Backend: Fixture and Device API Enhancements
Backend: Infrastructure and Licensing
Frontend and Documentation
README.mdand.gitignoreaccordingly for Svelte conventions. [1] [2]engine-strict=trueto.npmrcto enforce strict engine compatibility for frontend dependencies.NOTES.mdfile documenting the development and play mode processes for the project.