summaryrefslogtreecommitdiff
path: root/Cargo.toml
Commit message (Collapse)AuthorAge
* Update version to 3.0.1v3.0.1Ben Bridle2024-10-29
|
* Update version to 3.0.0v3.0.0Ben Bridle2024-10-28
|
* Complete rewrite of PhosphorBen Bridle2024-10-19
| | | | | | | | | | | | | | | The previous version of the library passed events to an implementation of a WindowController trait by calling the trait method associated with each event, and received requests by calling different trait methods and reading the returned values. This had the downside of requiring that any data received from one event had to be stored in the type so that it could be passed back to Phosphor when a request method was called. The new library structure uses a single handle_event method on a trait, which is passed data representing any single event when it is called. Data is returned via a passed mutable reference to an EventQueue, meaning that any number of responses for any event can be immediately returned to Phosphor without having to wait in storage.
* Update version to 2.0.0v2.0.0Ben Bridle2024-08-10
|
* Update version to 1.1.0v1.1.0Ben Bridle2024-06-09
|
* Fix library version conflict errorsBen Bridle2024-06-09
|
* Add information to Cargo.tomlv1.0.0Ben Bridle2023-12-24
|
* Use Git URLs for dependencies instead of local file pathsBen Bridle2023-12-24
| | | | | Dependencies are now fetched from the benbridle.com git server, instead of Ben's local filesystem.
* Add a feature flag to enable each supported display serverBen Bridle2023-12-24
| | | | | | | This commit forwards the winit display server feature flags as phosphor feature flags, so that downstream software can choose which display servers to enable or disable support for. Disabling support for a display server has the effect of reducing compile times and binary size.
* Remove winit feature restrictionBen Bridle2023-12-19
|
* Rewrite phosphorBen Bridle2023-10-11
| | | | | | | | | | | | This has been a long-awaited task, the code has been accumulating small changes for a while now. This commit consolidates all these changes in order to make the code more readable and maintainable for the future. Notable changes: - Remove the concept of a ProgramController - Remove all of the dead OpenGL stub code - Update winit to version 28.1, from 27.4 - Use softbuffer for writing pixels to the native display server
* First commit, before upgrading winit to version 28.1Ben Bridle2023-10-10