-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
103 lines (91 loc) · 2.87 KB
/
news.html
File metadata and controls
103 lines (91 loc) · 2.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Gitus Code Forge</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<div class="header-nav">
<div class="header-nav-left">
<a href="./index.html">HOME</a>
<a href="https://github.com/GitusCodeForge/Gitus">CODE_REPOSITORY</a>
<a href="./news.html">NEWS</a>
</div>
</div>
<div style="margin-top:1em">
<img style="vertical-align: bottom" height="32" src="./logo.png" alt="Gitus Logo" /><br />
<h1 class="header-name">Gitus Code Forge</h1>
</div>
</header>
<hr />
<div>
<h2>2025.11.30 v0.1.5</h2>
<ul>
<li>Simple Mode</li>
<li>Customizable foreground/background color</li>
<li>UI revamp</li>
</ul>
<h2>2025.9.24 v0.1.4</h2>
<ul>
<li>Webhook result feedback</li>
<li>Support for in-memory session store</li>
<li>Mostly bug fixes</li>
</ul>
<h2>2025.9.16 v0.1.3</h2>
<ul>
<li>UI for Git Blame</li>
<li>2FA w/ Email</li>
<li>Snippets</li>
<li>Basic Webhook</li>
<li>Basic new/edit/upload file UI</li>
<li>Many bug fixes and vuln fixes</li>
</ul>
<h2>2025.9.3 v0.1.2</h2>
<ul>
<li>Repository labels.</li>
<li>File lists now displays the last commit of change alongside with the file name.</li>
<li>User profile page.</li>
<li>Mailer tester in admin panel.</li>
</ul>
<h2>2025.9.2 v0.1.1 Released</h2>
<ul>
<li>"Co-Authored-By" now renders.</li>
<li>Links to emails now points to their user profiles if they have verified them on instance.</li>
<li>You can now pin issues.</li>
<li>A rate limiter has been added to protect certain endpoints from brute force attack.</li>
<li>Users can now submit a reason alongside with their registration request on instances that requires manual approval.</li>
</ul>
<h2>2025.8.28 v0.1.0 Released</h2>
<ul>
<li>Support for PostgreSQL is added.</li>
</ul>
<h2>2025.7.25 v0.0.2 Released</h2>
<ul>
<li>Search interface for issues and pull requests</li>
<li>A better view for diff is made;</li>
<li>The support for "global visibility" is added; you can now set the whole instance in "private mode" and the likes.</li>
<li>A new namespace is now created whenever a new user completes the registration process.</li>
</ul>
<h2>2025.7.11 v0.0.1 Released</h2>
<ul>
<li>Basic views: commits, branches, tags, commit histories, trees & files</li>
<li>Rudimentary diff view</li>
<li>Namespaces</li>
<li>User SSH/GPG key management</li>
<li>Clone through HTTP & SSH</li>
<li>Push through SSH</li>
<li>Configurable instance front page</li>
<li>Issues</li>
<li>Pull requests</li>
<li>User ACL at both namespace and repository level</li>
<li>Web installer for easy(-er) installation</li>
</ul>
</div>
<hr />
<footer>
© 2025 <a href="https://sebastian.graphics">Zetian Lin</a>
</footer>
</body>
</html>