Earl Warren 
								
							 
						 
						
							
							
								
							
							
	
	
	b1089bdafe 
 
						 
						
							
							
								
								
								speed up TestEventSourceManagerRun ( #26262 )  
							
							... 
							
							
							
							
							- `setting.UI.Notification.EventSourceUpdateTime` is by default 10
seconds, which adds an 10 second delay before the test succeeds.
- Lower the interval to reduce it to at most 3 second delay (the code
only send events when they are at least 2 seconds old).
(cherry picked from commit 3adb9ae600https://codeberg.org/forgejo/forgejo/pulls/1166 
Co-authored-by: Gusted <postmaster@gusted.xyz>
Co-authored-by: Giteabot <teabot@gitea.io> 
							
						 
						
							2023-08-01 17:57:11 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	
	
	6ed4626ed5 
 
						 
						
							
							
								
								
								Merge templates/projects/list.tmpl and templates/repo/projects/list.tmpl together ( #26265 )  
							
							... 
							
							
							
							
							(cherry picked from commit 473862a1d5https://codeberg.org/forgejo/forgejo/pulls/1126 
Co-authored-by: Louis Seubert <louis.seubert.ls@gmail.com>
Co-authored-by: Giteabot <teabot@gitea.io> 
							
						 
						
							2023-08-01 16:54:54 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									puni9869 
								
							 
						 
						
							
							
								
							
							
	
	
	ab388deb0e 
 
						 
						
							
							
								
								
								Allow editing push mirrors after creation ( #26151 )  
							
							... 
							
							
							
							
							Allow users to edit the sync interval for existing push mirrors.
Currently, there is no way to modify the interval once the mirror is
created.
<details>
  <summary>Screenshots</summary>
  
## Before
<img width="936" alt="Screenshot 2023-07-26 at 9 31 21 AM"
src="https://github.com/go-gitea/gitea/assets/80308335/35b8a40c-4320-474c-a866-1dea0f1fa0de ">
## After
<img width="945" alt="Screenshot 2023-07-26 at 9 44 40 AM"
src="https://github.com/go-gitea/gitea/assets/80308335/ee12e12f-0f68-4feb-90eb-33366f5997d3 ">
### On hover
<img width="247" alt="image"
src="https://github.com/go-gitea/gitea/assets/80308335/2f32de45-bd50-4150-9623-3be2ef3ea7f8 ">
<img width="237" alt="image"
src="https://github.com/go-gitea/gitea/assets/80308335/49f4ab4d-ccff-4489-80ce-a9788a73c3bb ">
<img width="245" alt="image"
src="https://github.com/go-gitea/gitea/assets/80308335/165fc888-9d48-438a-b730-d4beb12122af ">
### Edit modal
<img width="905" alt="image"
src="https://github.com/go-gitea/gitea/assets/80308335/2a7ca24b-4f36-4e0e-9799-39f2ecc46413 ">
### Only valid times are allowed
<img width="728" alt="Screenshot 2023-07-26 at 9 50 01 AM"
src="https://github.com/go-gitea/gitea/assets/80308335/ced6d330-c235-4e29-8f17-28daddcf1444 ">
<img width="853" alt="image"
src="https://github.com/go-gitea/gitea/assets/80308335/8636f62a-70d1-4684-a3e8-b205adc03580 ">
</details>
Fixes  #21295 
---------
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> 
							
						 
						
							2023-08-01 16:00:59 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									minijaws 
								
							 
						 
						
							
							
								
							
							
	
	
	ab0e588217 
 
						 
						
							
							
								
								
								Update Arch linux URL from community to extra ( #26273 )  
							
							... 
							
							
							
							
							Arch linux package link has changed from the community repo to the extra repo.
The link has been updated. 
							
						 
						
							2023-08-01 15:28:20 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Yarden Shoham 
								
							 
						 
						
							
							
								
							
							
	
	
	edd93fcfbc 
 
						 
						
							
							
								
								
								Fix due date rendering the wrong date in issue ( #26268 )  
							
							... 
							
							
							
							
							Closes  #26263 
We have to pass the date without the time.
# Before

# After

Signed-off-by: Yarden Shoham <git@yardenshoham.com> 
						
							2023-08-01 16:21:04 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Zettat123 
								
							 
						 
						
							
							
								
							
							
	
	
	9a65d011f6 
 
						 
						
							
							
								
								
								Some fixes of the prompt of new branches ( #26257 )  
							
							... 
							
							
							
							
							Related to #26239 
This PR makes some fixes:
- do not show the prompt for mirror repos and repos with pull request
units disabled
- use `commit_time` instead of `updated_unix`, as `commit_time` is the
real time when the branch was pushed 
							
						 
						
							2023-08-01 07:25:11 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Denys Konovalov 
								
							 
						 
						
							
							
								
							
							
	
	
	b9baed2c74 
 
						 
						
							
							
								
								
								Introduce flex-list & flex-item elements for Gitea UI ( #25790 )  
							
							... 
							
							
							
							
							This PR introduces a new UI element type for Gitea called `flex-item`.
It consists of a horizontal card with a leading, main and trailing part:

The idea behind it is that in Gitea UI, we have many cases where we use
this kind of layout, but it is achieved in many different ways:
  - grid layout
  - `.ui.list` with additional hacky flexbox
- `.ui.key.list` - looks to me like a style set originally created for
ssh/gpg key list, was used in many other places
  - `.issue.list` - created for issue cards, used in many other places
  - ...
This new style is based on `.issue.list`, specifically the refactoring
of it done in #25750 .
In this PR, the new element is introduced and lots of templates are
being refactored to use that style. This allows to remove a lot of
page-specific css, makes many of the elements responsive or simply
provides a cleaner/better-looking way to present information.
A devtest section with the new style is also available.
<details>
<summary>Screenshots (left: before, right: after)</summary>



















</details>
---------
Co-authored-by: Giteabot <teabot@gitea.io> 
							
						 
						
							2023-08-01 00:13:42 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Denys Konovalov 
								
							 
						 
						
							
							
								
							
							
	
	
	fc6c3d626e 
 
						 
						
							
							
								
								
								Mention devtest in frontend contributing guidelines ( #26249 )  
							
							... 
							
							
							
							
							Our `devtest` page contains some good UI examples which should be taken
as example when working on Gitea UI. Mention it in our frontend
contributing guidelines to for new contributors to know about it. 
							
						 
						
							2023-07-31 12:49:21 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Panagiotis "Ivory" Vasilopoulos 
								
							 
						 
						
							
							
								
							
							
	
	
	d58c542579 
 
						 
						
							
							
								
								
								Add 'Show on a map' button to Location in profile, fix layout ( #26214 )  
							
							... 
							
							
							
							
							Not too important, but I think that it'd be a pretty neat touch.
Also fixes some layout bugs introduced by a previous PR.
---------
Co-authored-by: Gusted <postmaster@gusted.xyz>
Co-authored-by: Caesar Schinas <caesar@caesarschinas.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> 
							
						 
						
							2023-07-31 08:44:45 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	72363be7ca 
 
						 
						
							
							
								
								
								Use shared template for webhook icons ( #26242 )  
							
							... 
							
							
							
							
							Fixes: https://github.com/go-gitea/gitea/issues/26241  
							
						 
						
							2023-07-31 08:00:52 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	7e160f8824 
 
						 
						
							
							
								
								
								Reduce margins on user settings page, introduce flex-container ( #26046 )  
							
							... 
							
							
							
							
							Same as https://github.com/go-gitea/gitea/pull/26026  but for the user
settings page. It introduces a new `flex-container` class and shares it
across both pages.
Before and After:
<img width="1264" alt="Screenshot 2023-07-21 at 19 35 57"
src="https://github.com/go-gitea/gitea/assets/115237/1358dab4-55c0-40ce-a4d5-673099304f3d ">
<img width="1269" alt="Screenshot 2023-07-21 at 19 35 42"
src="https://github.com/go-gitea/gitea/assets/115237/34812f6d-dc65-4009-b977-90e03efdc6d1 "> 
							
						 
						
							2023-07-31 07:16:03 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Jason Song 
								
							 
						 
						
							
							
								
							
							
	
	
	1e76a824bc 
 
						 
						
							
							
								
								
								Refactor and enhance issue indexer to support both searching, filtering and paging ( #26012 )  
							
							... 
							
							
							
							
							Fix  #24662 .
Replace #24822  and #25708  (although it has been merged)
## Background
In the past, Gitea supported issue searching with a keyword and
conditions in a less efficient way. It worked by searching for issues
with the keyword and obtaining limited IDs (as it is heavy to get all)
on the indexer (bleve/elasticsearch/meilisearch), and then querying with
conditions on the database to find a subset of the found IDs. This is
why the results could be incomplete.
To solve this issue, we need to store all fields that could be used as
conditions in the indexer and support both keyword and additional
conditions when searching with the indexer.
## Major changes
- Redefine `IndexerData` to include all fields that could be used as
filter conditions.
- Refactor `Search(ctx context.Context, kw string, repoIDs []int64,
limit, start int, state string)` to `Search(ctx context.Context, options
*SearchOptions)`, so it supports more conditions now.
- Change the data type stored in `issueIndexerQueue`. Use
`IndexerMetadata` instead of `IndexerData` in case the data has been
updated while it is in the queue. This also reduces the storage size of
the queue.
- Enhance searching with Bleve/Elasticsearch/Meilisearch, make them
fully support `SearchOptions`. Also, update the data versions.
- Keep most logic of database indexer, but remove
`issues.SearchIssueIDsByKeyword` in `models` to avoid confusion where is
the entry point to search issues.
- Start a Meilisearch instance to test it in unit tests.
- Add unit tests with almost full coverage to test
Bleve/Elasticsearch/Meilisearch indexer.
---------
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> 
						
							2023-07-31 06:28:53 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									JakobDev 
								
							 
						 
						
							
							
								
							
							
	
	
	aba9096999 
 
						 
						
							
							
								
								
								Show image size on view page ( #25884 )  
							
							... 
							
							
							
							
							This simply shows the Image size on the view page. This is useful, if
you search a image with a specific size.
 
							
						 
						
							2023-07-31 05:04:45 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									caicandong 
								
							 
						 
						
							
							
								
							
							
	
	
	983167cf49 
 
						 
						
							
							
								
								
								Fix pull request check list is limited ( #26179 )  
							
							... 
							
							
							
							
							In the original implementation, we can only get the first 30 records of
the commit status (the default paging size), if the commit status is
more than 30, it will lead to the bug #25990 . I made the following two
changes.
- On the page, use the ` db.ListOptions{ListAll: true}` parameter
instead of `db.ListOptions{}`
- The `GetLatestCommitStatus` function makes a determination as to
whether or not a pager is being used.
fixed  #25990  
							
						 
						
							2023-07-31 02:21:09 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									JakobDev 
								
							 
						 
						
							
							
								
							
							
	
	
	ea385f5d39 
 
						 
						
							
							
								
								
								Fix API leaking Usermail if not logged in ( #25097 )  
							
							... 
							
							
							
							
							The API should only return the real Mail of a User, if the caller is
logged in. The check do to this don't work. This PR fixes this. This not
really a security issue, but can lead to Spam.
---------
Co-authored-by: silverwind <me@silverwind.io> 
							
						 
						
							2023-07-31 01:18:38 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									GiteaBot 
								
							 
						 
						
							
							
								
							
							
	7dc2e50113  
						 
						
							
							
								
								
								[skip ci] Updated licenses and gitignores  
							
							
							
							
						 
						
							2023-07-31 00:32:16 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									KN4CK3R 
								
							 
						 
						
							
							
								
							
							
	
	
	d08ab7be9c 
 
						 
						
							
							
								
								
								Fix typo in metadata ( #26207 )  
							
							... 
							
							
							
							
							https://github.com/go-gitea/gitea/pull/26194#discussion_r1277094525 
There is no need to backport because these names are just used internal. 
						
							2023-07-30 23:54:22 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	8e644d3460 
 
						 
						
							
							
								
								
								Update js and py dependencies ( #26243 )  
							
							... 
							
							
							
							
							- Update all JS and PY dependencies minus
`eslint-plugin-eslint-comments` (because of
https://github.com/eslint-community/eslint-plugin-eslint-comments/issues/89 )
- Regenerate SVGs
- Remove depreacted eslint rule
- Tested mermaid and swagger 
							
						 
						
							2023-07-31 01:16:12 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	04d7ced063 
 
						 
						
							
							
								
								
								De-emphasize issue sidebar buttons ( #26171 )  
							
							... 
							
							
							
							
							I find the colored buttons in the issue sidebar distracting, given that
they are not primary actions, I think we can de-colorize them.
Before:
<img width="285" alt="Screenshot 2023-07-26 at 19 42 22"
src="https://github.com/go-gitea/gitea/assets/115237/7e784805-4e01-4199-94bb-0538a0130264 ">
<img width="288" alt="Screenshot 2023-07-26 at 19 43 06"
src="https://github.com/go-gitea/gitea/assets/115237/3a89c661-e24a-4ebf-a585-d404d0a6a78a ">
<img width="285" alt="Screenshot 2023-07-26 at 19 44 36"
src="https://github.com/go-gitea/gitea/assets/115237/c1aa8c13-6f41-4763-8149-d1c07cb4be5c ">:
After:
<img width="286" alt="Screenshot 2023-07-26 at 19 42 04"
src="https://github.com/go-gitea/gitea/assets/115237/74d640c2-e0ab-4fef-87aa-9e788e9010e2 ">
<img width="285" alt="Screenshot 2023-07-26 at 19 42 51"
src="https://github.com/go-gitea/gitea/assets/115237/3b69976a-9aa4-4e1c-8df3-4168f4a9fcf9 ">
<img width="286" alt="Screenshot 2023-07-26 at 19 45 15"
src="https://github.com/go-gitea/gitea/assets/115237/897222fd-4df2-4d99-98eb-e5f8fb77c4d6 "> 
							
						 
						
							2023-07-30 22:46:53 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	aa723dea9b 
 
						 
						
							
							
								
								
								Don't autosize textarea in diff view ( #26233 )  
							
							... 
							
							
							
							
							Resizing the comment editor can be a very expensive operation because it
triggers page reflows, which on large PRs can take upwards of seconds to
complete. Disable this mechanism on the diff page only where we know
that the page can get large.
Fixes https://github.com/go-gitea/gitea/issues/26201  for the textarea
editor.
I don't think this can be fixed for EasyMDE because as far as I can
tell, it exposes no option to disable this resizing.
---------
Co-authored-by: Giteabot <teabot@gitea.io> 
							
						 
						
							2023-07-31 00:11:15 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	4244ce0d28 
 
						 
						
							
							
								
								
								Add /public/assets to .ignore ( #26232 )  
							
							... 
							
							
							
							
							Ignore compiled assets when searching via ripgrep and similar search
tools. 
							
						 
						
							2023-07-30 12:34:20 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	72d89eb8dd 
 
						 
						
							
							
								
								
								Fix attachment clipboard copy on insecure origin ( #26224 )  
							
							... 
							
							
							
							
							Fixes: https://github.com/go-gitea/gitea/issues/26202 
Actually later I found out the code did not use `clippie`, so I fixed
it. The bug was never in the clippie module like I initially suspected.
Also, I added a tooltip for feedback.
<img width="139" alt="image"
src="https://github.com/go-gitea/gitea/assets/115237/da501670-9c15-4412-969a-b559773c7ab9 ">
---------
Co-authored-by: Giteabot <teabot@gitea.io> 
							
						 
						
							2023-07-30 00:56:45 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									puni9869 
								
							 
						 
						
							
							
								
							
							
	
	
	11074258fc 
 
						 
						
							
							
								
								
								Fix commit compare style ( #26209 )  
							
							... 
							
							
							
							
							as title
Fixes : #25825 
Before
<img width="1334" alt="image"
src="https://github.com/go-gitea/gitea/assets/80308335/c54a41b0-39bd-4094-a956-081a8f4128f2 ">
After change
<img width="1340" alt="image"
src="https://github.com/go-gitea/gitea/assets/80308335/c112d235-6bbe-4bcb-9529-78da3ab0fa14 ">
Co-authored-by: Giteabot <teabot@gitea.io> 
							
						 
						
							2023-07-29 16:19:12 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									caicandong 
								
							 
						 
						
							
							
								
							
							
	
	
	fd836ff68b 
 
						 
						
							
							
								
								
								Fix unable to display individual-level project ( #26198 )  
							
							... 
							
							
							
							
							As title
Before:

After:

fix  #26189  
							
						 
						
							2023-07-29 15:35:53 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Zettat123 
								
							 
						 
						
							
							
								
							
							
	
	
	b33cf4fabc 
 
						 
						
							
							
								
								
								Fix access check for org-level project ( #26182 )  
							
							... 
							
							
							
							
							Fix  #25934 
Add `ignoreGlobal` parameter to `reqUnitAccess` and only check global
disabled units when `ignoreGlobal` is true. So the org-level projects
and user-level projects won't be affected by global disabled
`repo.projects` unit. 
						
							2023-07-29 14:13:24 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Kerwin Bryant 
								
							 
						 
						
							
							
								
							
							
	
	
	05d0b7ca91 
 
						 
						
							
							
								
								
								Fixed incorrect locale references ( #26218 )  
							
							... 
							
							
							
							
							Fixed two incorrect headers for setting the page navigation bar:
* User settings page, should not use the title "`org.settings`"
* Repo settings page, should not use the title "`org.settings`" 
							
						 
						
							2023-07-29 21:34:22 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Panagiotis "Ivory" Vasilopoulos 
								
							 
						 
						
							
							
								
							
							
	
	
	1c89f15f42 
 
						 
						
							
							
								
								
								Use calendar icon for Joined on... in profiles ( #26215 )  
							
							
							
							
						 
						
							2023-07-29 19:34:49 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									delvh 
								
							 
						 
						
							
							
								
							
							
	
	
	e01824f2b8 
 
						 
						
							
							
								
								
								Add changelog for 1.20.2 ( #26208 )  
							
							... 
							
							
							
							
							Co-authored-by: techknowlogick <matti@mdranta.net>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> 
							
						 
						
							2023-07-29 15:07:03 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									sebastian-sauer 
								
							 
						 
						
							
							
								
							
							
	
	
	55532061c8 
 
						 
						
							
							
								
								
								Add commits dropdown in PR files view and allow commit by commit review ( #25528 )  
							
							... 
							
							
							
							
							This PR adds a new dropdown to select a commit or a commit range
(shift-click like github) of a Pull Request.
After selection of a commit only the changes of this commit will be shown.
When selecting a range of commits the diff of this range is shown.
This allows to review a PR commit by commit or by viewing only commit ranges.
The "Show changes since your last review" mechanism github uses is implemented, too.
When reviewing a single commit or a commit range the "Viewed" functionality is disabled.
## Screenshots
### The commit dropdown

### Selecting a commit range

### Show changes of a single commit only

### Show changes of a commit range

Fixes https://github.com/go-gitea/gitea/issues/20989 
Fixes https://github.com/go-gitea/gitea/issues/19263 
---------
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: delvh <dev.lh@web.de> 
							
						 
						
							2023-07-28 21:18:12 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									puni9869 
								
							 
						 
						
							
							
								
							
							
	
	
	4971a10543 
 
						 
						
							
							
								
								
								Warn instead of reporting an error when a webhook cannot be found ( #26039 )  
							
							... 
							
							
							
							
							Attemp fix : #25744 
Fixing the log level when we delete any repo then we get error hook not
found by id. That should be warn level to reduce the noise in the logs.
---------
Co-authored-by: delvh <dev.lh@web.de> 
							
						 
						
							2023-07-28 17:46:48 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									puni9869 
								
							 
						 
						
							
							
								
							
							
	
	
	1d8d90fd37 
 
						 
						
							
							
								
								
								Fixing the align of commit stats in commit_page template. ( #26161 )  
							
							... 
							
							
							
							
							Fixing the align center to row and space around for commit_page
template. 
							
						 
						
							2023-07-28 13:12:44 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Lunny Xiao 
								
							 
						 
						
							
							
								
							
							
	
	
	ce27de4d48 
 
						 
						
							
							
								
								
								Fix allowed user types setting problem ( #26200 )  
							
							... 
							
							
							
							
							Fix  #25951  
						
							2023-07-28 12:15:39 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									wxiaoguang 
								
							 
						 
						
							
							
								
							
							
	
	
	d88fed0db1 
 
						 
						
							
							
								
								
								Hide branch/tag icon if branches/tags are empty ( #26204 )  
							
							... 
							
							
							
							
							The branch/tag icons aren't hidden correctly if there is no branch/tag. This PR fixes it. 
							
						 
						
							2023-07-28 23:05:24 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									KN4CK3R 
								
							 
						 
						
							
							
								
							
							
	
	
	7866a6e0e2 
 
						 
						
							
							
								
								
								Prevent primary key update on migration ( #26192 )  
							
							... 
							
							
							
							
							Fixes  #25918 
The migration fails on MSSQL because xorm tries to update the primary
key column. xorm prevents this if the column is marked as auto
increment:
c622cdaf89/internal/statements/update.go (L38-L40) 
						
							2023-07-28 09:54:31 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	
	
	494ee56de2 
 
						 
						
							
							
								
								
								improve unit test for caching ( #26185 )  
							
							... 
							
							
							
							
							- Configure `setting.CacheService.TTL` which will force the code to go
trough the caching mechanism.
- Remove the TODO and uncomment the test code.
(cherry picked from commit a201f2f189https://codeberg.org/forgejo/forgejo/pulls/974 
---------
Co-authored-by: Gusted <postmaster@gusted.xyz> 
							
						 
						
							2023-07-27 22:24:40 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Earl Warren 
								
							 
						 
						
							
							
								
							
							
	
	
	eaea530d6b 
 
						 
						
							
							
								
								
								Render plaintext task list items for markdown files ( #26186 )  
							
							... 
							
							
							
							
							- The library that's being used for org-mode, [doesn't render the status
of list items](https://github.com/niklasfasching/go-org/issues/63 ).
- Add a modified version of the proposed CSS snippet to still display
the status for the list items. The alternative was parsing HTML and
transforming it, which is too complicated for this small task.
- Resolves https://codeberg.org/Codeberg/Community/issues/1099 
(cherry picked from commit 9753c7e4b8https://codeberg.org/forgejo/forgejo/pulls/1071 
Co-authored-by: Gusted <postmaster@gusted.xyz> 
							
						 
						
							2023-07-27 14:15:31 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									puni9869 
								
							 
						 
						
							
							
								
							
							
	
	
	16afe4f631 
 
						 
						
							
							
								
								
								Add tooltip to describe LFS table column and color delete LFS file button red ( #26181 )  
							
							... 
							
							
							
							
							Fix: https://github.com/go-gitea/gitea/issues/26152 
Thease changes are related to UX and accessibility changes in desktop
mode.
<img width="50" alt="image"
src="https://github.com/go-gitea/gitea/assets/80308335/30a75b50-4f8d-4108-9219-2c69b2a8fa6f ">
Also  this is incomplete header 
<img width="264" alt="image"
src="https://github.com/go-gitea/gitea/assets/80308335/87837076-dfc7-4a68-863a-795edf61eb02 ">
Lets add a tooltip if it is applicable or add `title` attribute so that
it will be clearly visible.
After 

 
							
						 
						
							2023-07-27 13:39:09 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									delvh 
								
							 
						 
						
							
							
								
							
							
	
	
	bd6ef71854 
 
						 
						
							
							
								
								
								Show branches and tags that contain a commit ( #25180 )  
							
							... 
							
							
							
							
							Now, you can see for a commit which existing branches and tags contain it.
You first have to click on the `load branches and tags` button, they are not preloaded by default.
All branches and tags are ordered descending by creation date.
You can even see without much hassle if the given commit is already part of the default branch.
Closes  #25152  
## Screenshots
### Initial

### Loaded

---------
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> 
							
						 
						
							2023-07-27 12:47:41 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Lunny Xiao 
								
							 
						 
						
							
							
								
							
							
	
	
	bd7b5e61aa 
 
						 
						
							
							
								
								
								Release attachments duplicated check ( #26176 )  
							
							
							
							
						 
						
							2023-07-27 09:24:22 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									wxiaoguang 
								
							 
						 
						
							
							
								
							
							
	
	
	8baa42c8d7 
 
						 
						
							
							
								
								
								Calculate MAX_WORKERS default value by CPU number ( #26177 )  
							
							... 
							
							
							
							
							To avoid consuming user's 100% CPU, limit the default value of
MAX_WORKERS
Fix  #26063  (the CPU 100% problem mentioned in it) 
							
						 
						
							2023-07-27 16:40:35 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									cassiozareck 
								
							 
						 
						
							
							
								
							
							
	
	
	73fb1ecdcf 
 
						 
						
							
							
								
								
								Fixing redirection issue for logged-in users ( #26105 )  
							
							... 
							
							
							
							
							This PR addresses an issue where logged-in users get redirected to the
homepage when trying to access a URL with the redirect_to parameter. The
issue was traced back to a middleware function in
services/auth/middleware.go that redirects logged-in users to the
homepage. This function didn't account the redirect_to parameter.
The fix modifies the middleware function to check for this case and
redirect the user to the specified URL instead of the homepage.
Closes : #26005 
---------
Signed-off-by: cassiozareck <cassiomilczareck@gmail.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> 
							
						 
						
							2023-07-27 13:08:51 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									silverwind 
								
							 
						 
						
							
							
								
							
							
	
	
	c6975e583a 
 
						 
						
							
							
								
								
								Update govulncheck, fix typo ( #26168 )  
							
							... 
							
							
							
							
							- Update govulncheck to latest version
- Fix typo in variable name 
							
						 
						
							2023-07-26 22:51:02 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									KN4CK3R 
								
							 
						 
						
							
							
								
							
							
	
	
	2d7fe4cc1e 
 
						 
						
							
							
								
								
								Fix handling of plenty Nuget package versions ( #26075 )  
							
							... 
							
							
							
							
							Fixes  #25953 
- Do not load full version information (v3)
- Add pagination support (v2) 
						
							2023-07-26 19:43:21 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Niko Hoffrén 
								
							 
						 
						
							
							
								
							
							
	
	
	6ce89883eb 
 
						 
						
							
							
								
								
								Fix typos in Contributing.md ( #26170 )  
							
							... 
							
							
							
							
							Fixed typos considering CONTRIBUTING.md.
This line:
GitHub API compatability #github-api-compatability
changed to:
GitHub API compatibility #github-api-compatibility
and this line:
GitHub API compatability
changed to:
GitHub API compatibility 
							
						 
						
							2023-07-26 15:14:13 -04:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									yp05327 
								
							 
						 
						
							
							
								
							
							
	
	
	36732005b4 
 
						 
						
							
							
								
								
								Disable download action logs button when there's no logs ( #26114 )  
							
							... 
							
							
							
							
							If there's no logs, you can also click the download button, then you
will get `job is not started` page

https://gitea.com/yp05327/testrepo/actions/runs/38 
After:
If there's no steps displayed, the download button will be disabled.
 
							
						 
						
							2023-07-26 20:51:26 +02:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									John Olheiser 
								
							 
						 
						
							
							
								
							
							
	
	
	79995a8194 
 
						 
						
							
							
								
								
								Re-add static images to docs ( #26167 )  
							
							... 
							
							
							
							
							https://github.com/go-gitea/gitea/pull/26051  I accidentally rebased
locally without my re-addition for these files, so they were missed in
the merge, but only for `main`.
Signed-off-by: jolheiser <john.olheiser@gmail.com> 
						
							2023-07-26 14:25:39 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									Felix Victor 
								
							 
						 
						
							
							
								
							
							
	
	
	0533187f28 
 
						 
						
							
							
								
								
								Update email-setup.en-us.md ( #26068 )  
							
							... 
							
							
							
							
							The setting `MAILER_TYPE` is deprecated.
According to the config cheat sheet, it should be `PROTOCOL`.
---------
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> 
							
						 
						
							2023-07-26 21:50:15 +08:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									yp05327 
								
							 
						 
						
							
							
								
							
							
	
	
	1c6c38fa6e 
 
						 
						
							
							
								
								
								Improve display of Labels/Projects/Assignees sort options ( #25886 )  
							
							... 
							
							
							
							
							Labels:
Before: (no highlights)

After:


Projects:
Before: (no highlights)

After:


Assignee:
Before: (no highlights)

After:

 
							
						 
						
							2023-07-26 13:00:50 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									yp05327 
								
							 
						 
						
							
							
								
							
							
	
	
	f9e5d980bc 
 
						 
						
							
							
								
								
								Fix wrong branch name in rename branch modal ( #26146 )  
							
							... 
							
							
							
							
							Before:

After:
 
							
						 
						
							2023-07-26 11:26:17 +00:00 
							
								 
							
						 
					 
				
					
						
							
								
								
									caicandong 
								
							 
						 
						
							
							
								
							
							
	
	
	f2cc4daf60 
 
						 
						
							
							
								
								
								Doc update swagger doc for POST /orgs/{org}/teams  ( #26155 )  
							
							... 
							
							
							
							
							close  #26111  
						
							2023-07-26 10:22:56 +00:00