docusaurus blog (#266)

# Notes

- date must not have double quotes, e.g., should be like `date: 2022-10-30T18:25:00+09:15`

- Updated header.

  ![Screen Shot 2023-07-11 at 17.27.49](/attachments/d14b0c62-3630-47a9-bcda-25c6459d4e8b)

- Used customized blog plugin to get all tags with reference to [plugins/blog/index.js](https://github.com/questdb/questdb.io/blob/master/plugins/blog/index.js). Filter by tag section, tag list page.

  ![Screen Shot 2023-07-11 at 18.10.28](/attachments/59561940-a2f7-4ab5-b99a-1d5b84fdbcad)

  ![Screen Shot 2023-07-11 at 17.31.20](/attachments/d6d82976-12c0-4c0f-acfe-218e30c7c627)

- Added coverImage to frontmatter to assgin cover image, e.g., `coverImage: "/img/blog-covers/test.jpeg"`
  And on blog page, cover image will appear on top if `coverImage` added to frontmatter, e.g.,

   ![Screen Shot 2023-07-11 at 17.33.09](/attachments/c27e7971-11db-4241-bc53-9e43df235fbc)

  ![Screen Shot 2023-07-11 at 17.33.20](/attachments/552dd9cf-fc55-4547-8014-864aeb0e5050)

- authors are managed by the `authors.yml` file. [reference](https://docusaurus.io/docs/blog#global-authors)
- [ejected](https://docusaurus.io/docs/swizzling#ejecting) `@docusaurus/theme-classic BlogListPage` and `@docusaurus/theme-classic BlogPostPage`, which are marked as `unsafe` by docusaurus, so need to maintain these components. ([original BlogListPage](https://github.com/facebook/docusaurus/blob/main/packages/docusaurus-theme-classic/src/theme/BlogListPage/index.tsx), [original BlogPostPage](https://github.com/facebook/docusaurus/blob/main/packages/docusaurus-theme-classic/src/theme/BlogPostPage/index.tsx))
- [referenced repo](https://github.com/questdb/questdb.io)

# How to test

```
npm i
npm run start
```

# Build and serve

```
npm run build
npm run serve
```

# Help Needed

Deploy and preview steps

# More Screenshots

![Screen Shot 2023-07-11 at 17.34.54](/attachments/ee9d46ac-72ac-49de-90df-38e2afc6db02)

Mobile:

![Screen Shot 2023-07-11 at 18.16.54](/attachments/8f1471a3-27cc-459a-a2ce-c0e5bdf604d3)

![Screen Shot 2023-07-10 at 17.53.18](/attachments/992d9f24-e130-41a9-8b55-86744539524c)

![Screen Shot 2023-07-06 at 11.02.21](/attachments/af1632b8-6a61-47f7-b15d-4a6080bebadb)

![Screen Shot 2023-07-11 at 18.17.43](/attachments/af0df617-27a4-46f9-a8a3-037be268e1cd)

![Screen Shot 2023-07-03 at 15.32.45](/attachments/ad2c1217-e82d-434c-81c8-5d4058e18591)

# TODO

- [x] Add Banner to blog page

Reviewed-on: https://gitea.com/gitea/blog/pulls/266
Co-authored-by: HesterG <hestergong@gmail.com>
Co-committed-by: HesterG <hestergong@gmail.com>
This commit is contained in:
HesterG 2023-07-12 03:25:19 +00:00 committed by techknowlogick
parent f0fbf15574
commit dab0be78b2
161 changed files with 14310 additions and 369 deletions

View File

@ -13,23 +13,17 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: https://github.com/peaceiris/actions-hugo@v2
- uses: https://github.com/actions/setup-node@v3
with:
hugo-version: '0.111.3'
extended: true
- name: setup go
uses: https://github.com/actions/setup-go@v4
with:
go-version: '>=1.20.1'
node-version: 16
- name: Build
run: |
make clean
make build
npm ci
npm run build
- name: publish to netlify
uses: https://github.com/nwtgck/actions-netlify@v2.0
with:
publish-dir: public
publish-dir: build
production-branch: main
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}

View File

@ -9,16 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Hugo
uses: https://github.com/peaceiris/actions-hugo@v2
- uses: https://github.com/actions/setup-node@v3
with:
hugo-version: '0.111.3'
extended: true
- name: setup go
uses: https://github.com/actions/setup-go@v4
with:
go-version: '>=1.20.1'
node-version: 16
- name: Build
run: |
make clean
make build
npm ci
npm run build

17
.gitignore vendored
View File

@ -4,3 +4,20 @@ themes/
# GoLand
.idea/
# Dependencies
/node_modules
# Production
/build
# Generated files
.docusaurus
.cache-loader
# Misc
.DS_Store
npm-debug.log*
yarn-debug.log*
yarn-error.log*

View File

@ -1,23 +1,20 @@
THEME := themes/gitea
PUBLIC := public
ARCHIVE := https://dl.gitea.com/theme/main.tar.gz
HUGO_PACKAGE := github.com/gohugoio/hugo@v0.111.3
.PHONY: all
all: build
.PHONY: clean
clean:
rm -rf $(PUBLIC) $(THEME)
rm -rf $(THEME)
.PHONY: server
server: $(THEME)
go run $(HUGO_PACKAGE) server
npm run start
.PHONY: build
build: $(THEME)
go run $(HUGO_PACKAGE) --cleanDestinationDir
npm run build
.PHONY: update
update: $(THEME)

3
babel.config.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};

View File

@ -1,3 +0,0 @@
---
url: "/"
---

View File

@ -1,6 +1,6 @@
---
date: "2022-10-30T18:25:00+09:15"
author: "lunny"
date: 2022-10-30T18:25:00+09:15
authors: "lunny"
title: "A message from Lunny on Gitea Ltd. and the Gitea project"
tags: ["announcement"]
draft: false

144
content/post/authors.yml Normal file
View File

@ -0,0 +1,144 @@
13tm3nt3r:
image_url: https://github.com/13tm3nt3r.png
name: 13tm3nt3r
url: https://github.com/13tm3nt3r
6543:
image_url: https://gitea.com/6543.png
name: '6543'
title: Gitea maintainer
url: https://gitea.com/6543
BKC:
image_url: https://gitea.com/BKC.png
name: BKC
title: Gitea maintainer
url: https://gitea.com/BKC
Gusted:
image_url: https://git.gusted.xyz/avatars/f069668bb7706c629bed11e2ae8b392c
name: Gusted
url: https://gusted.xyz/
HarvsG:
image_url: https://gitea.com/HarvsG.png
name: HarvsG
url: https://gitea.com/HarvsG
HesterG:
image_url: https://gitea.com/HesterG.png
name: HesterG
title: Gitea maintainer
url: https://gitea.com/HesterG
Zettat123:
image_url: https://gitea.com/Zettat123.png
name: Zetta
title: Gitea maintainer
url: https://gitea.com/Zettat123
appleboy:
image_url: https://gitea.com/appleboy.png
name: appleboy
title: Gitea maintainer
url: https://gitea.com/appleboy
bkcsoft:
image_url: https://gitea.com/bkcsoft.png
name: bkcsoft
title: Gitea maintainer
url: https://gitea.com/bkcsoft
dachary:
image_url: https://gitea.com/dachary.png
name: dachary
url: https://gitea.com/dachary
daviian:
image_url: https://gitea.com/daviian.png
name: daviian
title: Gitea maintainer
url: https://gitea.com/daviian
delvh:
image_url: https://gitea.com/delvh.png
name: delvh
title: Gitea maintainer
url: https://gitea.com/delvh
gary-kim:
image_url: https://gitea.com/gary-kim.png
name: gary-kim
title: Gitea maintainer
url: https://gitea.com/gary-kim
guillep2k:
image_url: https://gitea.com/guillep2k.png
name: guillep2k
title: Gitea maintainer
url: https://gitea.com/guillep2k
jolheiser:
image_url: https://gitea.com/jolheiser.png
name: jolheiser
title: Gitea maintainer
url: https://gitea.com/jolheiser
jonasfranz:
image_url: https://gitea.com/jonasfranz.png
name: jonasfranz
title: Gitea maintainer
url: https://gitea.com/jonasfranz
lafriks:
image_url: https://gitea.com/lafriks.png
name: lafriks
title: Gitea maintainer
url: https://gitea.com/lafriks
lunny:
image_url: https://gitea.com/lunny.png
name: lunny
title: Gitea maintainer
url: https://gitea.com/lunny
noerw:
image_url: https://gitea.com/noerw.png
name: noerw
title: Gitea maintainer
url: https://gitea.com/noerw
norwin:
image_url: https://gitea.com/norwin.png
name: norwin
title: Gitea maintainer
url: https://gitea.com/norwin
pat-s:
image_url: https://gitea.com/pat-s.png
name: pat-s
title: Gitea maintainer
url: https://gitea.com/pat-s
sillyguodong:
image_url: https://gitea.com/sillyguodong.png
name: sillyguodong
title: Gitea maintainer
url: https://gitea.com/sillyguodong
strk:
image_url: https://gitea.com/strk.png
name: strk
title: Gitea maintainer
url: https://gitea.com/strk
tboerger:
image_url: https://gitea.com/tboerger.png
name: tboerger
title: Gitea maintainer
url: https://gitea.com/tboerger
techknowlogick:
image_url: https://gitea.com/techknowlogick.png
name: techknowlogick
title: Gitea maintainer
url: https://gitea.com/techknowlogick
thehowl:
image_url: https://gitea.com/thehowl.png
name: thehowl
url: https://gitea.com/thehowl
wolfogre:
image_url: https://gitea.com/wolfogre.png
name: wolfogre
title: Gitea maintainer
url: https://gitea.com/wolfogre
xinyu:
image_url: https://gitea.com/xinyu.png
name: xinyu
url: https://gitea.com/xinyu
yardenshoham:
image_url: https://gitea.com/yardenshoham.png
name: yardenshoham
title: Gitea maintainer
url: https://gitea.com/yardenshoham
zeripath:
image_url: https://gitea.com/zeripath.png
name: zeripath
title: Gitea maintainer
url: https://gitea.com/zeripath

View File

@ -1,6 +1,6 @@
---
date: "2023-04-23T10:10:00+00:00"
author: "techknowlogick"
date: 2023-04-23T10:10:00+00:00
authors: "techknowlogick"
title: "Back(ports) to the future!"
tags: ["backporter"]
draft: false

View File

@ -1,5 +1,5 @@
---
date: "2023-04-19T10:00:00+08:00"
date: 2023-04-19T10:00:00+08:00
authors:
- "Zettat123"
- "techknowlogick"

View File

@ -1,6 +1,6 @@
---
date: "2022-12-19T10:10:00+08:00"
author: "xinyu"
date: 2022-12-19T10:10:00+08:00
authors: "xinyu"
title: "Feature Preview: Gitea Actions"
tags: ["actions", "feature"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2023-03-20T13:00:00+01:00"
author: "https://github.com/13tm3nt3r"
date: 2023-03-20T13:00:00+01:00
authors: "13tm3nt3r"
title: "Feature Preview: Mapping OIDC Groups to Teams"
tags: ["feature", "tutorial"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-06-14T14:03:27+02:00"
author: "dachary"
date: 2022-06-14T14:03:27+02:00
authors: "dachary"
title: "A gentle introduction to the gitea doctor"
tags: ["tutorial"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2023-03-31T10:00:00+08:00"
author: "wolfogre"
date: 2023-03-31T10:00:00+08:00
authors: "wolfogre"
title: "Hacking on Gitea Actions"
tags: ["actions", "feature", "tutorial"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-09-07T20:00:00+00:00"
author: "techknowlogick"
date: 2020-09-07T20:00:00+00:00
authors: "techknowlogick"
title: "Introducing an Official Helm Chart for Gitea"
tags: ["release", "helm-chart", "deployment"]
draft: false

View File

@ -1,5 +1,5 @@
---
date: "2023-04-30T13:00:00+08:00"
date: 2023-04-30T13:00:00+08:00
authors:
- "HesterG"
- "techknowlogick"

View File

@ -1,6 +1,6 @@
---
date: "2023-03-27T13:00:00+01:00"
author: "techknowlogick"
date: 2023-03-27T13:00:00+01:00
authors: "techknowlogick"
title: "Introducing Versioned Documentation"
tags: ["docs"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-10-25T00:00:00+02:00"
author: "techknowlogick"
date: 2022-10-25T00:00:00+02:00
authors: "techknowlogick"
title: "Open source sustainment and the future of Gitea"
tags: ["announcement"]
draft: false

View File

@ -1,5 +1,5 @@
---
date: "2023-02-03T09:06:54+07:00"
date: 2023-02-03T09:06:54+07:00
author: "Gitea"
title: "Gitea Quarterly Report 23Q1"
tags: ["quarterly"]

View File

@ -1,5 +1,5 @@
---
date: "2023-04-08T19:00:00+08:00"
date: 2023-04-08T19:00:00+08:00
authors:
- "sillyguodong"
- "delvh"

View File

@ -1,6 +1,6 @@
---
date: "2016-12-23T08:00:00+02:00"
author: "tboerger"
date: 2016-12-23T08:00:00+02:00
authors: "tboerger"
title: "Release of 1.0.0"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2017-01-05T15:00:00+02:00"
author: "tboerger"
date: 2017-01-05T15:00:00+02:00
authors: "tboerger"
title: "Release of 1.0.1"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2017-02-22T13:57:00+08:00"
author: "lunny"
date: 2017-02-22T13:57:00+08:00
authors: "lunny"
title: "Release of 1.0.2"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2017-03-09T20:15:00+01:00"
author: "tboerger"
date: 2017-03-09T20:15:00+01:00
authors: "tboerger"
title: "Release of 1.1.0"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2017-05-04T17:20:00+02:00"
author: "bkcsoft"
date: 2017-05-04T17:20:00+02:00
authors: "bkcsoft"
title: "Release of 1.1.1"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2017-06-12T17:21:30+08:00"
author: "appleboy"
date: 2017-06-12T17:21:30+08:00
authors: "appleboy"
title: "Release of 1.1.2"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2017-08-07T10:53:30+08:00"
author: "lunny"
date: 2017-08-07T10:53:30+08:00
authors: "lunny"
title: "Release of 1.1.3"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2017-09-05T11:53:30+08:00"
author: "lunny"
date: 2017-09-05T11:53:30+08:00
authors: "lunny"
title: "Release of 1.1.4"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2019-11-14T00:30:00+00:00"
author: "guillep2k"
date: 2019-11-14T00:30:00+00:00
authors: "guillep2k"
title: "Gitea 1.10.0 is released"
tags: ["release", "gitea"]
draft: false
@ -422,18 +422,18 @@ help us sort out issues and answer questions on the
If you, or your company, want to help us out sustain our financial expenses, you
can do so by donating on [Open Collective](https://opencollective.com/gitea#).
<a href="https://opencollective.com/gitea#backers" target="_blank"><img src="https://opencollective.com/gitea/backers.svg?width=890"></a>
<a href="https://opencollective.com/gitea#backers" target="_blank"><img src="https://opencollective.com/gitea/backers.svg?width=890"/></a>
<a href="https://opencollective.com/gitea/sponsor/0/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/0/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/1/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/1/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/2/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/2/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/3/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/3/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/4/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/4/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/5/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/5/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/6/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/6/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/7/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/7/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/8/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/8/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/9/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/9/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/0/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/0/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/1/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/1/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/2/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/2/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/3/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/3/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/4/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/4/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/5/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/5/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/6/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/6/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/7/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/7/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/8/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/8/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/9/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/9/avatar.svg"/></a>
### … or reporting bugs

View File

@ -1,6 +1,6 @@
---
date: "2019-12-05T12:00:00+00:00"
author: "jolheiser"
date: 2019-12-05T12:00:00+00:00
authors: "jolheiser"
title: "Gitea 1.10.1 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-01-02T12:30:00+00:00"
author: "6543"
date: 2020-01-02T12:30:00+00:00
authors: "6543"
title: "Gitea 1.10.2 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-01-18T12:30:00+00:00"
author: "jolheiser"
date: 2020-01-18T12:30:00+00:00
authors: "jolheiser"
title: "Gitea 1.10.3 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-02-10T00:30:00+00:00"
author: "jolheiser"
date: 2020-02-10T00:30:00+00:00
authors: "jolheiser"
title: "Gitea 1.11.0 is released"
tags: ["release", "gitea"]
draft: false
@ -606,18 +606,18 @@ help us sort out issues and answer questions on the
If you, or your company, want to help us out sustain our financial expenses, you
can do so by donating on [Open Collective](https://opencollective.com/gitea#).
<a href="https://opencollective.com/gitea#backers" target="_blank"><img src="https://opencollective.com/gitea/backers.svg?width=890"></a>
<a href="https://opencollective.com/gitea#backers" target="_blank"><img src="https://opencollective.com/gitea/backers.svg?width=890"/></a>
<a href="https://opencollective.com/gitea/sponsor/0/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/0/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/1/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/1/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/2/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/2/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/3/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/3/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/4/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/4/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/5/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/5/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/6/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/6/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/7/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/7/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/8/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/8/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/9/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/9/avatar.svg"></a>
<a href="https://opencollective.com/gitea/sponsor/0/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/0/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/1/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/1/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/2/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/2/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/3/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/3/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/4/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/4/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/5/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/5/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/6/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/6/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/7/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/7/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/8/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/8/avatar.svg"/></a>
<a href="https://opencollective.com/gitea/sponsor/9/website" target="_blank"><img src="https://opencollective.com/gitea/sponsor/9/avatar.svg"/></a>
### … or reporting bugs

View File

@ -1,6 +1,6 @@
---
date: "2020-02-17T12:30:00+00:00"
author: "jolheiser"
date: 2020-02-17T12:30:00+00:00
authors: "jolheiser"
title: "Gitea 1.11.1 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-03-06T10:00:00+00:00"
author: "zeripath"
date: 2020-03-06T10:00:00+00:00
authors: "zeripath"
title: "Gitea 1.11.2 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-03-11T00:00:00+00:00"
author: "guillep2k"
date: 2020-03-11T00:00:00+00:00
authors: "guillep2k"
title: "Gitea 1.11.3 and 1.10.6 released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-04-01T10:00:00+00:00"
author: "jolheiser"
date: 2020-04-01T10:00:00+00:00
authors: "jolheiser"
title: "Gitea 1.11.4 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-05-10T10:00:00+00:00"
author: "guillep2k"
date: 2020-05-10T10:00:00+00:00
authors: "guillep2k"
title: "Gitea 1.11.5 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-05-30T10:00:00+00:00"
author: "jolheiser"
date: 2020-05-30T10:00:00+00:00
authors: "jolheiser"
title: "Gitea 1.11.6 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-06-18T10:00:00+00:00"
author: "jolheiser"
date: 2020-06-18T10:00:00+00:00
authors: "jolheiser"
title: "Gitea 1.11.7 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-06-18T11:00:00+00:00"
author: "jolheiser"
date: 2020-06-18T11:00:00+00:00
authors: "jolheiser"
title: "Gitea 1.12.0 and 1.12.1 are released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-07-11T20:00:00+00:00"
author: "lafriks"
date: 2020-07-11T20:00:00+00:00
authors: "lafriks"
title: "Gitea 1.12.2 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-07-28T20:00:00+00:00"
author: "techknowlogick"
date: 2020-07-28T20:00:00+00:00
authors: "techknowlogick"
title: "Gitea 1.12.3 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-09-04T04:00:00+00:00"
author: "6543"
date: 2020-09-04T04:00:00+00:00
authors: "6543"
title: "Gitea 1.12.4 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-10-01T04:00:00+00:00"
author: "jolheiser"
date: 2020-10-01T04:00:00+00:00
authors: "jolheiser"
title: "Gitea 1.12.5 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-11-16T15:00:00+00:00"
author: "gary-kim"
date: 2020-11-16T15:00:00+00:00
authors: "gary-kim"
title: "Gitea 1.12.6 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2020-12-02T10:49:02+07:00"
author: "jolheiser"
date: 2020-12-02T10:49:02+07:00
authors: "jolheiser"
title: "Gitea 1.13.0 is released"
tags: ["release", "gitea"]
draft: false
@ -284,7 +284,7 @@ _Additional thanks to [**@silverwind**](https://github.com/silverwind) for a **t
* Dark theme for line numbers in blame view (#12632)
* Fix message when deleting last owner from an organization (#12628)
* Use shellquote to unpack arguments to gitea serv (#12624)
* Fix signing.wont_sign.%!s(<nil>) if Require Signing commits but not signed in. (#12581)
* Fix signing.wont_sign.%!s(`<nil>`) if Require Signing commits but not signed in. (#12581)
* Set utf8mb4 as the default charset on MySQL if CHARSET is unset (#12563)
* Set context for running CreateArchive to that of the request (#12555)
* Prevent redirect back to /user/events (#12462)

View File

@ -1,6 +1,6 @@
---
date: "2020-12-28T14:52:46+07:00"
author: "techknowlogick"
date: 2020-12-28T14:52:46+07:00
authors: "techknowlogick"
title: "Gitea 1.13.1 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-02-01T17:42:53+07:00"
author: "jolheiser"
date: 2021-02-01T17:42:53+07:00
authors: "jolheiser"
title: "Gitea 1.13.2 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-03-05T02:59:08+07:00"
author: "6543"
date: 2021-03-05T02:59:08+07:00
authors: "6543"
title: "Gitea 1.13.3 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-03-10T00:02:08+08:00"
author: "lunny"
date: 2021-03-10T00:02:08+08:00
authors: "lunny"
title: "Gitea 1.13.4 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-03-21T17:34:25+07:00"
author: "6543"
date: 2021-03-21T17:34:25+07:00
authors: "6543"
title: "Gitea 1.13.5 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-03-24T09:37:25+08:00"
author: "lunny"
date: 2021-03-24T09:37:25+08:00
authors: "lunny"
title: "Gitea 1.13.6 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-04-09T10:37:25+08:00"
author: "lunny"
date: 2021-04-09T10:37:25+08:00
authors: "lunny"
title: "Gitea 1.13.7 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-04-11T10:33:02+07:00"
author: "zeripath"
date: 2021-04-11T10:33:02+07:00
authors: "zeripath"
title: "Gitea 1.14.0 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-04-16T17:09:04+07:00"
author: "lunny"
date: 2021-04-16T17:09:04+07:00
authors: "lunny"
title: "Gitea 1.14.1 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-05-09T11:58:17+07:00"
author: "6543"
date: 2021-05-09T11:58:17+07:00
authors: "6543"
title: "Gitea 1.14.2 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-06-18T18:15:09+07:00"
author: "6543"
date: 2021-06-18T18:15:09+07:00
authors: "6543"
title: "Gitea 1.14.3 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-07-06T16:02:22+03:00"
author: "zeripath"
date: 2021-07-06T16:02:22+03:00
authors: "zeripath"
title: "Gitea 1.14.4 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-07-16T09:02:55+01:00"
author: "zeripath"
date: 2021-07-16T09:02:55+01:00
authors: "zeripath"
title: "Gitea 1.14.5 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-08-05T09:02:55+01:00"
author: "zeripath"
date: 2021-08-05T09:02:55+01:00
authors: "zeripath"
title: "Gitea 1.14.6 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-08-22T15:50:00+08:00"
author: "zeripath"
date: 2021-08-22T15:50:00+08:00
authors: "zeripath"
title: "Gitea 1.15.0 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-09-02T20:30:55+01:00"
author: "zeripath"
date: 2021-09-02T20:30:55+01:00
authors: "zeripath"
title: "Gitea 1.15.1 and 1.14.7 are released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-01-14T19:16:06+00:00"
author: "zeripath"
date: 2022-01-14T19:16:06+00:00
authors: "zeripath"
title: "Gitea 1.15.10 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-01-30T18:08:00+00:00"
author: "zeripath"
date: 2022-01-30T18:08:00+00:00
authors: "zeripath"
title: "Gitea 1.15.11 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-09-03T13:31:00+01:00"
author: "zeripath"
date: 2021-09-03T13:31:00+01:00
authors: "zeripath"
title: "Gitea 1.15.2 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-09-23T13:31:00+02:00"
author: "norwin"
date: 2021-09-23T13:31:00+02:00
authors: "norwin"
title: "Gitea 1.15.3 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-10-08T17:04:26+07:00"
author: "jolheiser"
date: 2021-10-08T17:04:26+07:00
authors: "jolheiser"
title: "Gitea 1.15.4 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-10-21T17:04:26+07:00"
author: "zeripath"
date: 2021-10-21T17:04:26+07:00
authors: "zeripath"
title: "Gitea 1.15.5 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-10-28T09:28:00+0100"
author: "zeripath"
date: 2021-10-28
authors: "zeripath"
title: "Gitea 1.15.6 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-12-03T22:43:54+07:00"
author: "lunny"
date: 2021-12-03T22:43:54+07:00
authors: "lunny"
title: "Gitea 1.15.7 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2021-12-22T12:58:38+07:00"
author: "lunny"
date: 2021-12-22T12:58:38+07:00
authors: "lunny"
title: "Gitea 1.15.8 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-01-02T19:16:06+07:00"
author: "6543"
date: 2022-01-02T19:16:06+07:00
authors: "6543"
title: "Gitea 1.15.9 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-02-03T18:08:00+00:00"
author: "zeripath"
date: 2022-02-03T18:08:00+00:00
authors: "zeripath"
title: "Gitea 1.16.0 and 1.16.1 released"
tags: ["release", "gitea"]
draft: false
@ -355,7 +355,7 @@ _Thanks to [**@nitul1991**](https://github.com/nitul1991), [**@qwerty287**](http
* Move key forms before list and add cancel button ([#17432](https://github.com/go-gitea/gitea/pull/17432))
* When copying executables to the docker chmod them ([#17423](https://github.com/go-gitea/gitea/pull/17423))
* Remove deprecated `extendDefaultPlugins` method of svgo ([#17399](https://github.com/go-gitea/gitea/pull/17399))
* Fix the click behavior for <tr> and <td> with [data-href] ([#17388](https://github.com/go-gitea/gitea/pull/17388))
* Fix the click behavior for `<tr>` and `<td>` with [data-href] ([#17388](https://github.com/go-gitea/gitea/pull/17388))
* Refactor update checker to use AppState ([#17387](https://github.com/go-gitea/gitea/pull/17387))
* Improve async/await usage, and sort init calls in `index.js` ([#17386](https://github.com/go-gitea/gitea/pull/17386))
* Use a variable but a function for IsProd because of a slight performance increment ([#17368](https://github.com/go-gitea/gitea/pull/17368))

View File

@ -1,6 +1,6 @@
---
date: "2022-03-03T20:10:00+08:00"
author: "lunny"
date: 2022-03-03T20:10:00+08:00
authors: "lunny"
title: "Gitea 1.16.2 and 1.16.3 released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-03-14T23:54:02+07:00"
author: "6543"
date: 2022-03-14T23:54:02+07:00
authors: "6543"
title: "Gitea 1.16.4 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-03-24T02:04:15+01:00"
author: "zeripath"
date: 2022-03-24T02:04:15+01:00
authors: "zeripath"
title: "Gitea 1.16.5 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-04-21T02:40:29+07:00"
author: "6543"
date: 2022-04-21T02:40:29+07:00
authors: "6543"
title: "Gitea 1.16.6 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-05-02T13:14:52+07:00"
author: "jolheiser"
date: 2022-05-02T13:14:52+07:00
authors: "jolheiser"
title: "Gitea 1.16.7 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-05-24T14:48:58+07:00"
author: "lunny"
date: 2022-05-24T14:48:58+07:00
authors: "lunny"
title: "Gitea 1.16.8 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-07-12T13:47:07+07:00"
author: "jolheiser"
date: 2022-07-12T13:47:07+07:00
authors: "jolheiser"
title: "Gitea 1.16.9 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,5 +1,5 @@
---
date: "2022-07-31T12:00:00+02:00"
date: 2022-07-31T12:00:00+02:00
authors:
- "noerw"
- "Gusted"

View File

@ -1,6 +1,6 @@
---
date: "2022-08-18T13:36:31+07:00"
author: "jolheiser"
date: 2022-08-18T13:36:31+07:00
authors: "jolheiser"
title: "Gitea 1.17.1 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-09-06T16:35:40+07:00"
author: "jolheiser"
date: 2022-09-06T16:35:40+07:00
authors: "jolheiser"
title: "Gitea 1.17.2 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-10-14T12:34:02+07:00"
author: "jolheiser"
date: 2022-10-14T12:34:02+07:00
authors: "jolheiser"
title: "Gitea 1.17.3 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2022-12-21T15:59:56+07:00"
author: "jolheiser"
date: 2022-12-21T15:59:56+07:00
authors: "jolheiser"
title: "Gitea 1.17.4 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,5 +1,5 @@
---
date: "2022-12-29T13:45:40+07:00"
date: 2022-12-29T13:45:40+07:00
authors:
- "jolheiser"
- "delvh"

View File

@ -1,6 +1,6 @@
---
date: "2023-01-17T09:07:13+07:00"
author: "jolheiser"
date: 2023-01-17T09:07:13+07:00
authors: "jolheiser"
title: "Gitea 1.18.1 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2023-01-19T14:30:54+07:00"
author: "jolheiser"
date: 2023-01-19T14:30:54+07:00
authors: "jolheiser"
title: "Gitea 1.18.2 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2023-01-23T09:06:54+07:00"
author: "jolheiser"
date: 2023-01-23T09:06:54+07:00
authors: "jolheiser"
title: "Gitea 1.18.3 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2023-02-20T09:11:48+07:00"
author: "jolheiser"
date: 2023-02-20T09:11:48+07:00
authors: "jolheiser"
title: "Gitea 1.18.4 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2023-02-21T10:01:40+07:00"
author: "jolheiser"
date: 2023-02-21T10:01:40+07:00
authors: "jolheiser"
title: "Gitea 1.18.5 is released"
tags: ["release", "gitea"]
draft: false

View File

@ -1,5 +1,5 @@
---
date: "2023-03-20T14:40:00+01:00"
date: 2023-03-20T14:40:00+01:00
authors:
- "jolheiser"
- "delvh"

View File

@ -1,5 +1,5 @@
---
date: "2023-04-13T09:13:47+07:00"
date: 2023-04-13T09:13:47+07:00
authors:
- "jolheiser"
- "delvh"

View File

@ -1,6 +1,6 @@
---
date: "2023-04-27T18:59:47+07:00"
author: "jolheiser"
date: 2023-04-27T18:59:47+07:00
authors: "jolheiser"
title: "Gitea 1.19.2 is released"
tags: ["release"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2023-05-08T22:18:00+08:00"
author: "lunny"
date: 2023-05-08T22:18:00+08:00
authors: "lunny"
title: "Gitea 1.19.3 is released"
tags: ["release"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2023-07-05T15:02:48+07:00"
author: "6543"
date: 2023-07-05T15:02:48+07:00
authors: "6543"
title: "Gitea 1.19.4 is released"
tags: ["release"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2017-10-12T16:21:30+08:00"
author: "lunny"
date: 2017-10-12T16:21:30+08:00
authors: "lunny"
title: "Release of 1.2.0"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2017-10-16T17:22:30+01:00"
author: "daviian"
date: 2017-10-16T17:22:30+01:00
authors: "daviian"
title: "Release of 1.2.1"
tags: ["release", "gitea"]
draft: false

View File

@ -1,6 +1,6 @@
---
date: "2017-10-26T17:21:30+02:00"
author: "Lafriks"
date: 2017-10-26T17:21:30+02:00
authors: "lafriks"
title: "Release of 1.2.2"
tags: ["release", "gitea"]
draft: false

Some files were not shown because too many files have changed in this diff Show More