all repos

mugit @ 57f9c822b7221d702957ed7b33cc40bdfe89e095

🐮 git server that your cow will love

mugit/CHANGELOG.md (view raw)

Oleksandr Smirnov Oleksandr Smirnov
olexsmir@gmail.com
ui: show both authored and commited times if needed, 1 month 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
- Switch to sshd, instead of running it's own ssh server.
8
9
### Features:
10
- Paginate log page (150 commits per page).
11
- Support `git-upload-archive`.
12
- Better CSS for markdown readmes.
13
- Add breadcrumbs on "file content" and "file tree" pages.
14
- Show last commit associated with file on the "tree page".
15
- Show both authored and commit time of a commit.
16
- Highlight selected line on file content page.
17
- `mugit repo new` now accepts `--description`, sets repo description.
18
- `mugit repo new --mirror` will sync repo from specified remote.
19
- Show remote urls and mirroring data on empty repos.
20
- `mugit repo default` changes default branch of a repo.
21
- `mugit repo sync` syncs specified mirror repo.
22
- Mirror status now inclues last sync time(when there were changes fetched) and last checked time.
23
- Automatically initialize repository on push.
24
25
### Bug fixes:
26
- Allow downloading only valid and existing refs.
27
- Support refs with special characters in names (e.g. `/` or `#`).
28
- Previously when viewing first commit in repo diffs were not rendered.
29
30
## 0.2.0
31
32
### Features
33
- Commit Page:
34
  - Show both author and committer names when they differ.
35
  - Redesign commit page layout with improved colors and navigation.
36
  - Use mono font for commit hashes.
37
- Format commit timestamps as `YYYY-MM-DD HH:MM:SS TZ`.
38
- Hide navigation bar for empty repositories.
39
- Render subtree-scoped README files on the tree view.
40
- Markdown rendering:
41
  - Render images with relative links within repository.
42
  - Add emoji support :hey: (e.g. `:smile:`).
43
44
### Bug Fixes
45
- Correct MIME types for raw file downloads.
46
- Address cases where renamed files displayed incorrectly on the commit view page.
47
- Fix mirrorer failing to update HEAD on empty repositories.
48
49
## 0.1.0
50
- Initial release
51
  - CLI: create, toggle private/public repo status, and add descriptions.
52
  - Web UI.
53
  - SSH server for git pull/push operations.
54
  - Pull based mirroring.