| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | refactor(todo): update todo style | Fuwn | 2021-05-02 | 4 | -6/+8 |
| | | |||||
| * | docs(cmds): add of2m notice to command: action | Fuwn | 2021-05-01 | 1 | -0/+5 |
| | | |||||
| * | refactor(cmds): remove unimplemented command: whisper | Fuwn | 2021-05-01 | 3 | -14/+12 |
| | | | | | | When it's time comes, the action command will be implemented, however, at this moment it was serving no purpose. | ||||
| * | feat(cmds): trait based commands | Fuwn | 2021-05-01 | 11 | -27/+82 |
| | | | | | | | | This commit adds the abiltity to implement a series of given traits for a command, where each command should implement **at least** one of these traits; Parsable, ParsableWithArguments, Creatable. These changed are put in place to ensure that when implementing a command, the proper methods are implemented in the proper format. | ||||
| * | refactor(cmds): even more of2m-ifying | Fuwn | 2021-05-01 | 9 | -66/+82 |
| | | |||||
| * | refactor(cmds): remove unimplemented command modules | Fuwn | 2021-04-30 | 6 | -14/+0 |
| | | |||||
| * | refactor(cmds): of2m | Fuwn | 2021-04-30 | 5 | -32/+24 |
| | | |||||
| * | refactor(cmds): of2m | Fuwn | 2021-04-30 | 5 | -39/+30 |
| | | |||||
| * | refactor(cmds): of2m | Fuwn | 2021-04-30 | 5 | -67/+34 |
| | | |||||
| * | refactor(cmds): orphan functions to methods | Fuwn | 2021-04-30 | 7 | -62/+54 |
| | | |||||
| * | refactor(cmds): more orphan module functions to methods within struct | Fuwn | 2021-04-30 | 7 | -66/+55 |
| | | | | | The rest of the current commands will also receive this refactor... when I have time. | ||||
| * | feat(hub): *implement* new commands; subscribe room, subscribe distance, ↵ | Fuwn | 2021-04-30 | 11 | -13/+129 |
| | | | | | | | | teleport This is NOT the final implementation of these commands, this commit is mearly a preperation for future implementation. | ||||
| * | refactor(commands): rename subscribe command module to subscribe_room | Fuwn | 2021-04-30 | 3 | -0/+0 |
| | | | | | | subscribe_room and subscribe are different commands, this is to ensure to mixups occur when referencing either of the modules. | ||||
| * | etc: Replace copyleft holder name | Fuwn | 2021-04-28 | 51 | -51/+51 |
| | | |||||
| * | etc: Add copyleft symbol to copyleft header | Fuwn | 2021-04-27 | 47 | -47/+47 |
| | | |||||
| * | fmt: ... | Fuwn | 2021-04-27 | 2 | -2/+0 |
| | | |||||
| * | feature: New configuration file format | Fuwn | 2021-04-27 | 8 | -52/+68 |
| | | |||||
| * | fmt: Rename re_server module to server | Fuwn | 2021-04-26 | 45 | -18/+18 |
| | | |||||
| * | fix: Actually remove legacy server module | Fuwn | 2021-04-26 | 26 | -2674/+0 |
| | | |||||
| * | etc: Remove legacy server module | Fuwn | 2021-04-26 | 26 | -0/+0 |
| | | |||||
| * | etc: Prepend license identifier to *most* files | Fuwn | 2021-04-26 | 51 | -4/+148 |
| | | |||||
| * | major: :star: | Fuwn | 2021-04-23 | 75 | -836/+3934 |
| | | |||||
| * | format: Preinitialize vector with elements | Fuwn | 2021-03-29 | 1 | -3/+5 |
| | | |||||
| * | format: Remove uncessecary `iter_mut` | Fuwn | 2021-03-29 | 2 | -2/+2 |
| | | |||||
| * | fix: CHANGED WRONG LINE | Fuwn | 2021-03-29 | 1 | -2/+2 |
| | | | | | Clippy complained, I fixed... the wrong line. | ||||
| * | feature: Reimplement room ID request command branch to command handler | Fuwn | 2021-03-29 | 1 | -26/+26 |
| | | |||||
| * | format: Fix a few Clippy warnings | Fuwn | 2021-03-29 | 6 | -17/+22 |
| | | |||||
| * | format: Refactor CLI, use pure `clap` instead of StructOpt | Fuwn | 2021-03-29 | 2 | -30/+64 |
| | | |||||
| * | format: Make use of `is_empty` method. | Fuwn | 2021-03-29 | 1 | -1/+1 |
| | | |||||
| * | feature: Grab ports AutoServer and RoomServer from config | Fuwn | 2021-03-29 | 4 | -6/+18 |
| | | | | | | | This is mostly a developmental feature. Tampering with this is not recommended. | ||||
| * | format: Refactor SQL snippet for consistency | Fuwn | 2021-03-29 | 1 | -1/+3 |
| | | |||||
| * | etc: Rename database file | Fuwn | 2021-03-29 | 1 | -1/+1 |
| | | |||||
| * | feature: Use TOML as config instead of environment variables | Fuwn | 2021-03-29 | 5 | -26/+60 |
| | | |||||
| * | feature: Implement CLI | Fuwn | 2021-03-29 | 1 | -3/+43 |
| | | |||||
| * | fix: Implement parser | Fuwn | 2021-03-28 | 4 | -248/+204 |
| | | | | | Fixes the problem that sometimes, commands are just skipped despite being sent from the client. | ||||
| * | Feature: Parse property set command | Fuwn | 2021-03-28 | 2 | -0/+7 |
| | | | | | This is mostly in preparation for avatar support as the function's only purpose is parsing the avatar of the user. | ||||
| * | etc: Prepare AutoServer SESSINIT parse function | Fuwn | 2021-03-28 | 1 | -0/+16 |
| | | |||||
| * | fix: Spawn servers properly | Fuwn | 2021-03-28 | 1 | -7/+11 |
| | | |||||
| * | major: Publish work-in-progress | Fuwn | 2021-03-25 | 26 | -628/+528 |
| | | |||||
| * | feature: Byte utilitiesorigin/deprecated-mainorigin/deprecated-legacydeprecated-maindeprecated-legacy | Fuwn | 2021-03-24 | 2 | -0/+4 |
| | | |||||
| * | format: Update annotation | Fuwn | 2021-03-24 | 1 | -3/+3 |
| | | |||||
| * | format: Move server type specific functions to correct modules | Fuwn | 2021-03-24 | 9 | -7/+8 |
| | | |||||
| * | etc: Remove unused module and implement structures | Fuwn | 2021-03-23 | 3 | -1/+16 |
| | | | | | As you might see, I've began expanding on the RoomServer. Hopefully within the next week, you might be able to see connected users' avatars. | ||||
| * | format: Change log severity of events | Fuwn | 2021-03-23 | 2 | -32/+107 |
| | | |||||
| * | fix: Buddy name not being correctly read | Fuwn | 2021-03-23 | 1 | -2/+2 |
| | | | | | This change also now shows all buddies sent from client to server as online, mostly for testing. | ||||
| * | fix: Buddy name length not being properly set | Fuwn | 2021-03-23 | 1 | -2/+1 |
| | | | | | Finally... | ||||
| * | etc: Annotate reasoning | Fuwn | 2021-03-23 | 1 | -1/+1 |
| | | |||||
| * | feature: Send WORLDSMASTER greeting on join | Fuwn | 2021-03-23 | 2 | -4/+44 |
| | | | | | Created function `create_text_command_with_action` which is stable, but only with the preset action. Will expand on this once an understanding of how actions work is met. | ||||
| * | fix: `room_id` not being set and sent | Fuwn | 2021-03-22 | 1 | -2/+2 |
| | | |||||
| * | etc: Correct struct names | Fuwn | 2021-03-22 | 13 | -43/+59 |
| | | |||||