Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-04-14 | ui: add tag entries page | 1 | -2/+4 | ||
2024-03-20 | Rename PROXY_* options to MEDIA_PROXY_* | 1 | -6/+6 | ||
2024-02-28 | Simplify formatFileSize | 1 | -10/+6 | ||
No need to use a loop with divisions and multiplications when we have logarithms. | |||||
2024-02-28 | Simplify durationImpl | 1 | -7/+4 | ||
2024-02-28 | Inline some templating functions | 1 | -18/+6 | ||
2024-02-28 | Make use of printer.Print when possible | 1 | -4/+4 | ||
2024-02-24 | Make use of go≥1.21 slices package instead of hand-rolled loops | 1 | -6/+2 | ||
This makes the code a tad smaller, moderner, and maybe even marginally faster, yay! | |||||
2023-11-08 | Avoid long duration strings: round to nearest second | 1 | -2/+8 | ||
For example, seeing "Next check: 14m56.245483933s" in feeds list after force-refreshing a feed. This rounds to the nearest second, so it'll instead be "14m56s" Other examples from latter two test cases: - "12.345678s" -> "12s" - "1m27.654321s" -> "1m28s" | |||||
2023-10-17 | Expose `next_check_at` in the web ui and API | 1 | -1/+17 | ||
2023-08-13 | Rename internal url package to avoid overlap with net/url | 1 | -3/+3 | ||
2023-08-10 | Move internal packages to an internal folder | 1 | -0/+216 | ||
For reference: https://go.dev/doc/go1.4#internalpackages |