all repos

mugit @ b59873080d2d6d0520c2240c9f3381973666a848

🐮 git server that your cow will love

mugit/CHANGELOG.md (view raw)

Oleksandr Smirnov Oleksandr Smirnov
olexsmir@gmail.com
update changelog, 2 months ago
1
# Changelog
2
3
## 0.3.0 (unreleased)
4
5
### Breaking changes
6
- Changed route for raw files. From `/repo/blob/ref/file_path?raw=true` to `/repo/raw/ref/file_path`.
7
8
### Features:
9
- Paginate log page (150 commits per page).
10
- Support `git-upload-archive`.
11
- Better CSS for markdown readmes.
12
- Add breadcrumbs on "file content" and "file tree" pages.
13
- Show last commit associated with file on tree page.
14
- Add a way of changing repos head from cli.
15
- Highlight selected line on file content page.
16
17
### Bug fixes:
18
- Allow downloading only valid and existing refs.
19
- Support refs with special characters in names (e.g. `/` or `#`).
20
- Previously when viewing first commit in repo diffs were not rendered.
21
22
## 0.2.0
23
24
### Features
25
- Commit Page:
26
  - Show both author and committer names when they differ.
27
  - Redesign commit page layout with improved colors and navigation.
28
  - Use mono font for commit hashes.
29
- Format commit timestamps as `YYYY-MM-DD HH:MM:SS TZ`.
30
- Hide navigation bar for empty repositories.
31
- Render subtree-scoped README files on the tree view.
32
- Markdown rendering:
33
  - Render images with relative links within repository.
34
  - Add emoji support :hey: (e.g. `:smile:`).
35
36
### Bug Fixes
37
- Correct MIME types for raw file downloads.
38
- Address cases where renamed files displayed incorrectly on the commit view page.
39
- Fix mirrorer failing to update HEAD on empty repositories.
40
41
## 0.1.0
42
- Initial release
43
  - CLI: create, toggle private/public repo status, and add descriptions.
44
  - Web UI.
45
  - SSH server for git pull/push operations.
46
  - Pull based mirroring.