Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-24 | internal: nuke wlsignal and related | Vaxry | |
old semi-wrappers for wl_signal, they are no longer used | |||
2024-05-05 | internal: new shared_ptr and weak_ptr implementation (#5883) | Vaxry | |
moves std::shared_ptrs to a new implementation Advantages: - you can dereference a weak_ptr directly. This will obviously segfault on a nullptr deref if it's expired. - this is useful to avoid the .lock() hell where we are 100% sure the pointer _should_ be valid. (and if it isn't, it should throw.) - weak_ptrs are still valid while the SP is being destroyed. - reasoning: while an object (e.g. CWindow) is being destroyed, its `weak_ptr self` should be accessible (the sp is still alive, and so is CWindow), but it's not because by stl it's already expired (to prevent resurrection) - this impl solves it differently. w_p is expired, but can still be dereferenced and used. Creating `s_p`s is not possible anymore, though. - this is useful in destructors and callbacks. | |||
2024-04-30 | layerSurface: refactor/move to a memory-safe impl | Vaxry | |
Makes all the pointers smart to avoid memory issues Refactors layerSurface code to live inside desktop/layersurface | |||
2024-04-27 | internal: Window storage rework - part 1 (#5762) | Vaxry | |
* Window storage rework - part 1 * format * remove useless include * fix pch * format * fix crash in dwindle * fix vram leak * prefer .expired() for bool checks | |||
2023-08-07 | internal: cleanup headers in helpers/ | vaxerski | |
2023-07-19 | internal: Wrap regions (#2750) | Vaxry | |
2023-06-21 | includes: move workspace protocol header to includes | vaxerski | |
2023-04-27 | internal: add tag to version, send hash in release ci | vaxerski | |
2023-02-27 | Plugin System (#1590) | Vaxry | |
--------- Co-authored-by: Mihai Fufezan <[email protected]> | |||
2022-12-16 | Added clang format (#1239) | Vaxry | |
* clang-format stuff and format files | |||
2022-12-06 | remove double semicolons | vaxerski | |
2022-11-27 | Added handling more special workspaces | vaxerski | |
2022-11-26 | added border gradients | vaxerski | |
2022-11-20 | improve constraint handling | vaxerski | |
2022-11-03 | include utility in defines | vaxerski | |
2022-09-25 | Remove trailing whitespace. | Felix Dick | |
2022-07-25 | use defines for unreachable | vaxerski | |
2022-07-06 | use C++ throw methods instead of printf and exit | vaxerski | |
2022-06-18 | meson: ensure non-debug builds will use proper configuration | Florian "sp1rit" | |
meson will set add -DHYPRLAND_DEBUG to CXXFLAGS during compilation of debug builds. this avoids NDEBUG issues with wlroots and ensures asserts will also work on release builds. | |||
2022-05-31 | Added a special workspace | vaxerski | |
2022-05-29 | Added fullscreen types, maximize and full | vaxerski | |
2022-04-24 | crash in assert on fail for a coredump | vaxerski | |
2022-04-22 | Added git dirty | vaxerski | |
2022-04-22 | Added git commit message to hyprctl version | vaxerski | |
2022-04-22 | Added hyprctl version | vaxerski | |
2022-04-14 | added basic damage tracking | vaxerski | |
2022-04-13 | use output's modes instead of a custom mode | vaxerski | |
2022-04-11 | Added zext_workspace protocol support 🎉 | vaxerski | |
2022-04-05 | fadeout done 🎉 | vaxerski | |
2022-04-04 | progress | vaxerski | |
2022-03-31 | Added animated borders | vaxerski | |
2022-03-28 | 🎉 Wrapped dynamic event handlers | vaxerski | |
2022-03-28 | log signals | vaxerski | |
2022-03-27 | fixed ASSERT and last commit's oopsie | vaxerski | |
2022-03-27 | rework popups completely | vaxerski | |
2022-03-20 | XWayland floating | vaxerski | |
2022-03-19 | added borders | vaxerski | |
2022-03-19 | added a layoutmanager and basic dwindle | vaxerski | |
2022-03-17 | Renderer | vaxerski | |
2022-03-17 | some events | vaxerski | |
2022-03-17 | input basics | vaxerski | |
2022-03-16 | some basic startup code | vaxerski | |
2022-03-16 | Initial Commit | vaxerski | |