Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-10-15 | Restrict instance level custom CSS to static directory | r | 1 | -8/+1 | |
2023-09-09 | Disable access log by default | r | 1 | -15/+3 | |
Access logs aren't really useful during normal operation. Add a new flag -v to enable the verbose logging mode, which is still useful during the development. Also remove the log_file config because it's no longer useful. | |||||
2022-10-25 | Use cookies for session storage | r | 1 | -23/+1 | |
Remove the server side session storage and store all the session related data in the client side cookies. This decreases the exposure of the auth tokens. It also simplifies the installation process as bloat no longer requires write access to the filesystem. This is a breaking change, all the existing sessions will stop working. | |||||
2022-01-02 | Use GO's flag parser instead of getopt | r | 1 | -10/+5 | |
There's only one flag, so it doesn't matter. | |||||
2022-01-02 | Change config file lookup | r | 1 | -3/+3 | |
- Look for both local and global config file - Directly generate the global config file with make install | |||||
2021-03-28 | Refactor | r | 1 | -20/+2 | |
2020-11-22 | Refactor things | r | 1 | -6/+3 | |
- Remove separate auth/logging and merge them into transport.go - Add helper function for http handlers | |||||
2020-10-30 | Fix http client | r | 1 | -0/+18 | |
- Remove automatic retries on 429 - Tweak http client config for better connection re-using | |||||
2020-08-22 | Fix invalid CSS syntax | r | 1 | -1/+1 | |
2020-05-24 | Refactor things | r | 1 | -6/+0 | |
2020-04-19 | Add single instance mode | r | 1 | -1/+1 | |
2020-02-26 | Fix logfile | r | 1 | -1/+2 | |
2020-01-31 | Add install target for make | r | 1 | -1/+1 | |
- Update default config path accordingly - Mention use of config file in README | |||||
2020-01-28 | Fix error printing | r | 1 | -9/+16 | |
2020-01-28 | Update config | r | 1 | -8/+12 | |
2020-01-28 | Refactor everything | r | 1 | -3/+3 | |
2020-01-01 | Rename package to bloat | r | 1 | -6/+6 | |
2020-01-01 | Add command line flag to specify config file | r | 1 | -1/+18 | |
2019-12-26 | Add post format selection | r | 1 | -1/+2 | |
2019-12-25 | Update header template and add option for custom css | r | 1 | -1/+8 | |
2019-12-17 | Use filesystem based kv store instead of sqlite | r | 1 | -8/+9 | |