aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Join subtrees and integrate meta info / gitignorestuebinm2021-03-079-2/+350
|\ | | | | | | | | | | git-subtree-dir: picarones-elm git-subtree-mainline: 2ad5d413aa958a1c2fe75ce7aa155576e9a80345 git-subtree-split: f4a1ee55987b7c58745dc5865c4ecf30874a3564
| * add default.nixstuebinm2021-03-072-0/+2
| | | | | | | | | | Somewhat basic for now, but it does build a directory with a functioning website inside of it.
| * nix derivation with elm2nixstuebinm2021-02-195-1/+89
| | | | | | | | | | (modified, to make it work again — elm2nix generates somewhat obstuse and occasionally useless code)
| * Simple Slide-changing clientstuebinm2021-02-196-0/+260
| | | | | | | | Everything works, EXCEPT: - choosing slidesets - choosing rooms - choosing the number of slides at runtime.
* Add server to general repositorystuebinm2021-03-073-0/+0
| | | | Idea: have all components of this program in one repository
* Added nix build expressionstuebinm2021-03-073-1/+35
| | | | makes a derivation with a functioning server inside of it.
* Better handling of jsonstuebinm2021-03-071-20/+47
| | | | | (mostly to reduce the number of record types needed, and to deal with multiple possible types of client messages)
* Send JSON instead of bare textstuebinm2021-02-191-4/+5
| | | | | (before, the server just sent "state [n]" on state change, instead of a properly serialised json value)
* Seperate room states from global server statestuebinm2021-02-171-51/+78
| | | | | | | | The main server state is now a `HashMap` of `Text` to `MVar Room` instead of just `Room`. This allows for changing room states independently from the server state, which should make the entire thing scale better on multi-core architectures (nevermind that "switching slides" is presumably not something in much need of multicore servers ...)
* initial commitstuebinm2021-02-173-0/+193
So far, it is fairly inefficient — for each message, the global state of the application is changed (i.e. a read-write action on a HashMap). Since clients can't change rooms after joining anyways, this should probably be changed.