Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-22 | GameOfLife: Add choosable patterns | Ryan Wilson | |
2021-05-16 | GameOfLife: Don't randomize cells on board resize | Linus Groh | |
Loosing all game state for a simple resize of the board is quite disappointing, so let's not do that. :^) | |||
2021-05-16 | GameOfLife: Use a frame as the board widget container | Linus Groh | |
This adds a bit of depth and looks very nice :^) | |||
2021-05-16 | GameOfLife: Add vertical separator between interval and action buttons | Linus Groh | |
2021-05-16 | GameOfLife: Move "ms" interval label to GML | Linus Groh | |
There's no reason not to! | |||
2021-05-16 | GameOfLife: Auto-size toolbar labels | Linus Groh | |
2021-05-16 | GameOfLife: Remove some unused includes | Linus Groh | |
2021-05-16 | GameOfLife: Add some margin to the toolbar layout | Linus Groh | |
Ideally the inner widgets / vertical separators would have some as well, but I'm not sure how right now. One step at a time. :^) | |||
2021-05-16 | GameOfLife: Switch from single indexed vector to rows+columns | Linus Groh | |
This is not only easier to comprehend code-wise and avoids some function overloads, but also makes resizing the board while preserving game state *a lot* easier. We now no longer have to allocate a new board on every resize, we just grow/shrink the individual row vectors. Also fixes a crash when clicking the board widget outside of the drawn board area. | |||
2021-05-15 | GameOfLife: Spell about action app name as "Game Of Life" | Linus Groh | |
2021-05-15 | GameOfLife: Add separator before quit menu action | Linus Groh | |
2021-05-15 | GameOfLife: Add alt shortcuts to menus | Linus Groh | |
2021-05-15 | GameOfLife: Rename primary menu to just "Game" | Linus Groh | |
2021-05-15 | Games: Add GameOfLife | Andres Crucitti | |
This patch introduces a new game based on Conway's Game of Life. |