wxiaoguang 
							
						 
					 
					
						
						
							
						
						1bb9b1c4d9 
					 
					
						
						
							
							Remove polluted ".ui.left" style ( #26809 )  
						
						 
						
						
						
						
					 
					
						2023-08-30 21:46:24 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						1a9998ce91 
					 
					
						
						
							
							Improve flex list item padding ( #26779 )  
						
						 
						
						... 
						
						
						
						Replace #26761 
It's better to keep children elements simple, and let parent containers
layout the necessary padding/margin.
The old `not(:last-child)` and `.flex-item + .flex-item` are not easy to
maintain (for example, what if the developer would like to use a "tiny
height" item?)
The old approach also makes some UI look strange because the first item
doesn't have proper padding-top.
In this PR, we just simply use `.flex-item { padding: ... }`:
* Developers could manually set the item height they want easily
* It's easier to make it work with various containers -- with padding
(`ui segment`) and without padding (`div`)
And added more samples/examples.

Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-29 23:13:30 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bo-Yi Wu 
							
						 
					 
					
						
						
							
						
						b91057b172 
					 
					
						
						
							
							feat(API): add route and implementation for creating/updating repository secret ( #26766 )  
						
						 
						
						... 
						
						
						
						spec:
https://docs.github.com/en/rest/actions/secrets?apiVersion=2022-11-28#create-or-update-a-repository-secret 
- Add a new route for creating or updating a secret value in a
repository
- Create a new file `routers/api/v1/repo/action.go` with the
implementation of the `CreateOrUpdateSecret` function
- Update the Swagger documentation for the `updateRepoSecret` operation
in the `v1_json.tmpl` template file
---------
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-29 20:54:49 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								yp05327 
							
						 
					 
					
						
						
							
						
						008f5d8cf1 
					 
					
						
						
							
							Add default label in branch select list ( #26697 )  
						
						 
						
						
						
						
					 
					
						2023-08-29 12:15:19 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								CaiCandong 
							
						 
					 
					
						
						
							
						
						c576b50441 
					 
					
						
						
							
							Fix being unable to use a repo that prohibits accepting PRs as a PR source. ( #26785 )  
						
						 
						
						... 
						
						
						
						## Description 
Sometimes, we need to use an upstream mirror repository to update the
current development repository, but mirror repositories are prohibited
from PR. It should not appear in `merge to,` but it can appear in `pull
from.`
Fix  #24585  #26193  #26781 
Related #24183 
Many thanks to @apnote  for assisting me in reproducing this bug!
## ScreenShot
---
### Before
<img
src="https://github.com/go-gitea/gitea/assets/50507092/3d76c376-1f54-45b9-80c9-6ba8319d6a9a "
width="400px">
<img
src="https://github.com/go-gitea/gitea/assets/50507092/fbfd9f7f-421f-4a2e-9a3e-f2958bbf3312 "
width="400px">
### After
<img
src="https://github.com/go-gitea/gitea/assets/50507092/e6984524-4f61-4310-b795-4d8598bd8963 "
width="400px">
<img
src="https://github.com/go-gitea/gitea/assets/50507092/04065b44-78d7-4721-bf31-0f1674150727 "
width="400px"> 
						
						
					 
					
						2023-08-29 12:07:15 +03:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						0ab70d4f2f 
					 
					
						
						
							
							Improve modal dialog UI ( #26764 )  
						
						 
						
						... 
						
						
						
						1. Fine tune the CSS styles, and add more examples
2. Add necessary "dimmer" animation for modal dialogs, otherwise the UI
seems flicking (follow #26469 ) 
						
						
					 
					
						2023-08-28 23:49:21 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						4803766f7a 
					 
					
						
						
							
							Refactor some CSS styles and simplify code ( #26771 )  
						
						 
						
						... 
						
						
						
						Refactor some CSS styles and simplify code.
Some styles are not in use, remove them. 
						
						
					 
					
						2023-08-28 22:14:51 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bo-Yi Wu 
							
						 
					 
					
						
						
							
						
						8cd46024fd 
					 
					
						
						
							
							refactor(API): refactor secret creation and update functionality ( #26751 )  
						
						 
						
						... 
						
						
						
						According to the GitHub API Spec:
https://docs.github.com/en/rest/actions/secrets?apiVersion=2022-11-28#create-or-update-an-organization-secret 
Merge the Create and Update secret into a single API.
- Remove the `CreateSecretOption` struct and replace it with
`CreateOrUpdateSecretOption` in `modules/structs/secret.go`
- Update the `CreateOrUpdateOrgSecret` function in
`routers/api/v1/org/action.go` to use `CreateOrUpdateSecretOption`
instead of `UpdateSecretOption`
- Remove the `CreateOrgSecret` function in
`routers/api/v1/org/action.go` and replace it with
`CreateOrUpdateOrgSecret`
- Update the Swagger documentation in
`routers/api/v1/swagger/options.go` and `templates/swagger/v1_json.tmpl`
to reflect the changes in the struct names and function names
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com > 
						
						
					 
					
						2023-08-28 13:08:19 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						67daa7bcb0 
					 
					
						
						
							
							Remove some transition related code ( #26755 )  
						
						 
						
						... 
						
						
						
						Remove transition related code because the transition module has been
removed by #26469  
						
						
					 
					
						2023-08-28 01:26:23 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Lunny Xiao 
							
						 
					 
					
						
						
							
						
						476b9d1589 
					 
					
						
						
							
							Use docs.gitea.com instead of docs.gitea.io ( #26739 )  
						
						 
						
						
						
						
					 
					
						2023-08-27 11:59:12 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								puni9869 
							
						 
					 
					
						
						
							
						
						e0a796a641 
					 
					
						
						
							
							Adding hint Archived to archive label. ( #26741 )  
						
						 
						
						... 
						
						
						
						Followup  https://github.com/go-gitea/gitea/pull/26478 
## Archived labels UI
Changed:
* Enhanced the Filtered UI page to seamlessly incorporate a list of
archived labels.
Outsourced:
* Defer the implementation of specialized handling for archived labels
to upcoming pull requests. This step will be undertaken subsequent to
the successful merge of this pull request.
Screenshots



---
Part of https://github.com/go-gitea/gitea/issues/25237 
---------
Co-authored-by: Giteabot <teabot@gitea.io >
Co-authored-by: silverwind <me@silverwind.io > 
						
						
					 
					
						2023-08-27 09:32:54 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						5914a2f8c0 
					 
					
						
						
							
							Fix template bugs in recently_pushed_new_branches.tmpl ( #26744 )  
						
						 
						
						... 
						
						
						
						Fix some bugs from #25715 , fix  #25830 
1. `$.locale.Tr ... Safe` needs `Escape`, but not `PathEscapeSegments`
2. The attribute should be `role`
3. The `ComposeBranchCompareURL` already does escaping correctly 
						
						
					 
					
						2023-08-27 08:16:02 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						4fdb09de58 
					 
					
						
						
							
							Fix incorrect "tabindex" attributes ( #26733 )  
						
						 
						
						... 
						
						
						
						Fix  #26731 
Almost all "tabindex" in code are incorrect.
1. All "input/button" by default are focusable, so no need to use "tabindex=0"
2. All "div/span" by default are not focusable, so no need to use "tabindex=-1"
3. All "dropdown" are focusable by framework, so no need to use "tabindex"
4. Some tabindex values are incorrect (eg: `new_form.tmpl`), so remove them
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-26 10:44:00 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						576644d815 
					 
					
						
						
							
							Simplify helper CSS classes and avoid abuse ( #26728 )  
						
						 
						
						... 
						
						
						
						Removed CSS helper classes (some of them are not useful while some of
them are abused often)
* `gt-db`: in most cases it could be replaced by `gt-df` and the flex
layout should be encouraged. Other cases: either it does need the
`gt-df` (eg: by using `div` directly) or it is an abuse (eg: the warning
message in a form)
* `gt-di`: it doesn't seem useful, or it could be replaced by `gt-dib`
in most cases.
* `gt-dif`: not useful, it could be replaced by `flex-text-inline` or
`gt-df`
* `gt-js`: never used
* All `<i class="icon gt-df gt-ac gt-jc">` could be written as `<i
class="icon">`
## Some UI samples
### Admin Notice

### Admin Stacktrace

### Org Home

### Org Team Repo

### Release List

### User Setting Application Token Scope

Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-26 01:35:10 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								silverwind 
							
						 
					 
					
						
						
							
						
						8b5c081d76 
					 
					
						
						
							
							Remove fomantic loader module ( #26670 )  
						
						 
						
						... 
						
						
						
						Replace Fomantic `loader` CSS module with our existing `is-loading`
spinner. Only three places in the UI used this module, which are
pictured here:
imagediff:
<img width="1237" alt="Screenshot 2023-08-22 at 22 18 01"
src="https://github.com/go-gitea/gitea/assets/115237/b0d82531-f05e-43c6-9e5b-1bfc268c056d ">
webauthn:
<img width="894" alt="Screenshot 2023-08-22 at 22 05 05"
src="https://github.com/go-gitea/gitea/assets/115237/7b583425-d944-474a-a57a-22a65bbd8b29 ">
heatmap (I removed the previous loading text, it was unreadable because
it was tiny and on fast machines only visible for a fraction of a
second):
<img width="764" alt="Screenshot 2023-08-22 at 22 18 44"
src="https://github.com/go-gitea/gitea/assets/115237/1c7472d6-3e17-4224-a992-d8c0b380cc73 ">
Also, heatmap container does not resize any more after loading now and
previous duplicate id `user-heatmap` is gone.
---------
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com > 
						
						
					 
					
						2023-08-25 16:03:14 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								silverwind 
							
						 
					 
					
						
						
							
						
						f626366f53 
					 
					
						
						
							
							Fix link in mirror docs ( #26719 )  
						
						 
						
						... 
						
						
						
						Fix hash fragment in this link
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-25 17:13:07 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						ee9e83b230 
					 
					
						
						
							
							Remove incorrect CSS helper classes ( #26712 )  
						
						 
						
						
						
						
					 
					
						2023-08-25 06:47:59 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						390ec619f3 
					 
					
						
						
							
							Fix review bar misalignment ( #26711 )  
						
						 
						
						
						
						
					 
					
						2023-08-24 23:46:30 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						09faf43ef8 
					 
					
						
						
							
							Improve Image Diff UI ( #26696 )  
						
						 
						
						... 
						
						
						
						1. Use `is-loading` instead of `ui loader`
2. Introduce class name `image-diff-tabs`, instead of searching `gt-hidden`, which is fragile
3. Align the UI elements, see the screenshots. 
						
						
					 
					
						2023-08-24 12:13:23 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						4de2244697 
					 
					
						
						
							
							Make issue template field template access correct template data ( #26698 )  
						
						 
						
						... 
						
						
						
						Regression of #23092 , the `{{$field := .}}` was missing during that refactoring. 
						
						
					 
					
						2023-08-24 11:09:36 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Earl Warren 
							
						 
					 
					
						
						
							
						
						a9ce570298 
					 
					
						
						
							
							add Upload URL to release API ( #26663 )  
						
						 
						
						... 
						
						
						
						- Resolves https://codeberg.org/forgejo/forgejo/issues/580 
- Return a `upload_field` to any release API response, which points to
the API URL for uploading new assets.
- Adds unit test.
- Adds integration testing to verify URL is returned correctly and that
upload endpoint actually works
---------
Co-authored-by: Gusted <postmaster@gusted.xyz > 
						
						
					 
					
						2023-08-24 10:36:10 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								yp05327 
							
						 
					 
					
						
						
							
						
						d2e4039def 
					 
					
						
						
							
							Add member, collaborator, contributor, and first-time contributor roles and tooltips ( #26658 )  
						
						 
						
						... 
						
						
						
						GitHub like role descriptor



---------
Co-authored-by: delvh <dev.lh@web.de >
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com >
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com > 
						
						
					 
					
						2023-08-24 13:06:17 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bo-Yi Wu 
							
						 
					 
					
						
						
							
						
						b62c8e7765 
					 
					
						
						
							
							feat(API): update and delete secret for managing organization secrets ( #26660 )  
						
						 
						
						... 
						
						
						
						- Add `UpdateSecret` function to modify org or user repo secret
- Add `DeleteSecret` function to delete secret from an organization
- Add `UpdateSecretOption` struct for updating secret options
- Add `UpdateOrgSecret` function to update a secret in an organization
- Add `DeleteOrgSecret` function to delete a secret in an organization
GitHub API
1. Update Org Secret:
https://docs.github.com/en/rest/actions/secrets?apiVersion=2022-11-28#create-or-update-an-organization-secret 
2. Delete Org Secret:
https://docs.github.com/en/rest/actions/secrets?apiVersion=2022-11-28#delete-an-organization-secret 
---------
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com > 
						
						
					 
					
						2023-08-24 02:07:00 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								yp05327 
							
						 
					 
					
						
						
							
						
						7e30986667 
					 
					
						
						
							
							Remove ref name in PR commits page ( #25876 )  
						
						 
						
						... 
						
						
						
						The branch name display here is based on the repo's default branch which
is not correct.

For example, if I changed the default branch, the branch name here will
also be changed:


you can confirm this in :
https://try.gitea.io/yp05327/testrepo/pulls/1/commits 
I think we do not need to display branch name here, as we already have
the branch info above.
 
						
						
					 
					
						2023-08-24 01:31:54 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						e8b990999f 
					 
					
						
						
							
							Make "link-action" backend code respond correct JSON content ( #26680 )  
						
						 
						
						... 
						
						
						
						Otherwise the `link-action` JS code couldn't parse the response.
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-23 17:36:57 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						af33a1187b 
					 
					
						
						
							
							Fix doubled box-shadow in branch dropdown menu ( #26678 )  
						
						 
						
						
						
						
					 
					
						2023-08-23 08:13:04 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						e4b2bdfbc0 
					 
					
						
						
							
							More improvements for the "flex list" and the dashboard list ( #26675 )  
						
						 
						
						... 
						
						
						
						Follow #26649  and #25790  and add one more example (text truncate) in the devtest page 
						
						
					 
					
						2023-08-23 04:23:30 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jason Song 
							
						 
					 
					
						
						
							
						
						5db21ce7e1 
					 
					
						
						
							
							Fix counting and filtering on the dashboard page for issues ( #26657 )  
						
						 
						
						... 
						
						
						
						This PR has multiple parts, and I didn't split them because
it's not easy to test them separately since they are all about the
dashboard page for issues.
1. Support counting issues via indexer to fix  #26361 
2. Fix repo selection so it also fixes  #26653 
3. Keep keywords in filter links.
The first two are regressions of #26012 .
After:
https://github.com/go-gitea/gitea/assets/9418365/71dfea7e-d9e2-42b6-851a-cc081435c946 
Thanks to @CaiCandong  for helping with some tests. 
						
						
					 
					
						2023-08-23 02:29:17 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								yp05327 
							
						 
					 
					
						
						
							
						
						75689b8973 
					 
					
						
						
							
							Improve repo sub menu ( #26531 )  
						
						 
						
						... 
						
						
						
						Before:

After:

Icons are not in the middle of the line. 
						
						
					 
					
						2023-08-22 09:20:09 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								yp05327 
							
						 
					 
					
						
						
							
						
						bd8a253220 
					 
					
						
						
							
							Improve show role ( #26621 )  
						
						 
						
						... 
						
						
						
						Add a general show role template. 
						
						
					 
					
						2023-08-22 05:30:33 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						7934602a4c 
					 
					
						
						
							
							Improve some flex layouts ( #26649 )  
						
						 
						
						... 
						
						
						
						Fix  #26617 
1. Separate the "flex-list" examples into a dedicated template, and add some more examples
2. Use `flex-basis` instead of `flex-shrink` for `flex-item-trailing`, to avoid wrapping the texts too aggressively
3. Some `flex-wrap: wrap;` are removed 
						
						
					 
					
						2023-08-22 12:57:02 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bo-Yi Wu 
							
						 
					 
					
						
						
							
						
						23addde28e 
					 
					
						
						
							
							feat: implement organization secret creation API ( #26566 )  
						
						 
						
						... 
						
						
						
						- Add a new `CreateSecretOption` struct for creating secrets
- Implement a `CreateOrgSecret` function to create a secret in an
organization
- Add a new route in `api.go` to handle the creation of organization
secrets
- Update the Swagger template to include the new `CreateOrgSecret` API
endpoint
---------
Signed-off-by: appleboy <appleboy.tw@gmail.com > 
						
						
					 
					
						2023-08-22 11:20:34 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								yp05327 
							
						 
					 
					
						
						
							
						
						a4a567f29f 
					 
					
						
						
							
							Check disabled workflow when rerun jobs ( #26535 )  
						
						 
						
						... 
						
						
						
						In GitHub, we can not rerun jobs if the workflow is disabled.
---------
Co-authored-by: silverwind <me@silverwind.io >
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com > 
						
						
					 
					
						2023-08-22 10:30:02 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								wxiaoguang 
							
						 
					 
					
						
						
							
						
						0731abc444 
					 
					
						
						
							
							Remove avatarHTML from template helpers ( #26598 )  
						
						 
						
						... 
						
						
						
						The HTML code is more readable and more correct (it needs `"ui avatar"`
class)
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-21 15:00:14 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								CaiCandong 
							
						 
					 
					
						
						
							
						
						5bd63f83e3 
					 
					
						
						
							
							Improve translation of milestone filters ( #26569 )  
						
						 
						
						... 
						
						
						
						https://github.com/go-gitea/gitea/issues/26567#issue-1855312074 
> The terms `closest` and `furthest` don't describe the actual sorting
behavior as these two are semantically relative to the current date.
> Could we switch to `earliest` and `latest` instead?
close  #26567 
---------
Co-authored-by: yp05327 <576951401@qq.com >
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-21 21:11:07 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yarden Shoham 
							
						 
					 
					
						
						
							
						
						16dee4f1b2 
					 
					
						
						
							
							Add branch_filter to hooks API endpoints ( #26599 )  
						
						 
						
						... 
						
						
						
						We now include the branch filler in the response.
- Closes  #26591  
# Before

# After

---------
Signed-off-by: Yarden Shoham <git@yardenshoham.com >
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-21 11:43:52 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jason Song 
							
						 
					 
					
						
						
							
						
						c179ab4236 
					 
					
						
						
							
							Fix "issueReposQueryPattern does not match query" ( #26556 )  
						
						 
						
						... 
						
						
						
						Fix
`https://github.com/go-gitea/gitea/pull/26545#discussion_r1295734340 `
---------
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com >
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-17 12:38:02 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								yp05327 
							
						 
					 
					
						
						
							
						
						9665622378 
					 
					
						
						
							
							Differentiate better between user settings and admin settings ( #26538 )  
						
						 
						
						... 
						
						
						
						User settings page and admin settings page are too similar. I thinlk
this will be better of using `User Settings` and `Admin Settings` as the
navbar's title.
Before:


After:

 
						
						
					 
					
						2023-08-16 10:12:03 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								yp05327 
							
						 
					 
					
						
						
							
						
						82f6e3d845 
					 
					
						
						
							
							Improve deadline icon location in milestone list page ( #26532 )  
						
						 
						
						
						
						
					 
					
						2023-08-16 16:22:25 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								silverwind 
							
						 
					 
					
						
						
							
						
						3e044d2c9f 
					 
					
						
						
							
							Use unique class for breadcrumb divider ( #26524 )  
						
						 
						
						... 
						
						
						
						Fix regression from https://github.com/go-gitea/gitea/pull/25539 :
https://github.com/go-gitea/gitea/pull/26519#issuecomment-1678825200 .
Before:
<img width="429" alt="Screenshot 2023-08-15 at 15 46 12"
src="https://github.com/go-gitea/gitea/assets/115237/a818f60a-77a2-48fe-8e6f-363d152ccb1e ">
After:
<img width="424" alt="Screenshot 2023-08-15 at 15 46 19"
src="https://github.com/go-gitea/gitea/assets/115237/c90159e2-ced2-4a74-8a0f-a1b2b5d0b565 ">
<img width="605" alt="Screenshot 2023-08-15 at 15 56 11"
src="https://github.com/go-gitea/gitea/assets/115237/3ded6f57-86f4-422a-86cb-56dd2c216dee "> 
						
						
					 
					
						2023-08-16 00:08:23 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								yp05327 
							
						 
					 
					
						
						
							
						
						bc930f332f 
					 
					
						
						
							
							Fix typo of RunerOwnerID ( #26508 )  
						
						 
						
						
						
						
					 
					
						2023-08-15 23:10:40 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								yp05327 
							
						 
					 
					
						
						
							
						
						7f8028e5a1 
					 
					
						
						
							
							Fix display problems of members and teams unit ( #26363 )  
						
						 
						
						... 
						
						
						
						Fix:
- display member count and team count in the menu bar

- Also display member unit in the menu bar if there are no hidden
members in public org

- hidden member board when there's no seeable members.
In this org, we only have hidden members: 

We will hidden the member board when doer is not the member of this org

Before:

If you click the number in the members board, you will access the
members page, which is not expected.

---------
Co-authored-by: delvh <dev.lh@web.de >
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-15 16:00:35 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Bo-Yi Wu 
							
						 
					 
					
						
						
							
						
						79d74d208f 
					 
					
						
						
							
							Add API route to list org secrets ( #26485 )  
						
						 
						
						... 
						
						
						
						- Add a new function `CountOrgSecrets` in the file
`models/secret/secret.go`
- Add a new file `modules/structs/secret.go`
- Add a new function `ListActionsSecrets` in the file
`routers/api/v1/api.go`
- Add a new file `routers/api/v1/org/action.go`
- Add a new function `listActionsSecrets` in the file
`routers/api/v1/org/action.go`
go-sdk: https://gitea.com/gitea/go-sdk/pulls/629 
---------
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com >
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: techknowlogick <matti@mdranta.net >
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-15 14:32:43 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								a1012112796 
							
						 
					 
					
						
						
							
						
						19872063a3 
					 
					
						
						
							
							add disable workflow feature ( #26413 )  
						
						 
						
						... 
						
						
						
						As title, that's simmilar with github.


---------
Signed-off-by: a1012112796 <1012112796@qq.com >
Co-authored-by: silverwind <me@silverwind.io >
Co-authored-by: Jason Song <i@wolfogre.com > 
						
						
					 
					
						2023-08-14 15:14:30 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								puni9869 
							
						 
					 
					
						
						
							
						
						cafce3b4b5 
					 
					
						
						
							
							Allow to archive labels ( #26478 )  
						
						 
						
						... 
						
						
						
						## Archived labels 
This adds the structure to allow for archived labels.
Archived labels are, just like closed milestones or projects, a medium to hide information without deleting it.
It is especially useful if there are outdated labels that should no longer be used without deleting the label entirely.
## Changes
1. UI and API have been equipped with the support to mark a label as archived
2. The time when a label has been archived will be stored in the DB
## Outsourced for the future
There's no special handling for archived labels at the moment.
This will be done in the future.
## Screenshots


Part of https://github.com/go-gitea/gitea/issues/25237 
---------
Co-authored-by: delvh <dev.lh@web.de >
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com > 
						
						
					 
					
						2023-08-14 11:56:14 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								silverwind 
							
						 
					 
					
						
						
							
						
						56b6b2b88e 
					 
					
						
						
							
							Fix tooltip of commit select button ( #26472 )  
						
						 
						
						... 
						
						
						
						Previously, the tooltip for this button was only shown after opening and
closing it once because it was only set after the server response, now
it shows before opening it. 
						
						
					 
					
						2023-08-14 02:16:40 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denys Konovalov 
							
						 
					 
					
						
						
							
						
						7456573541 
					 
					
						
						
							
							fix grab cursor on default column ( #26476 )  
						
						 
						
						... 
						
						
						
						Fix https://github.com/go-gitea/gitea/pull/26448#issuecomment-1676194200 
I accidentally set grab cursor for project columns instead of issue
cards, which actually turned out not to be a problem - with proper check
for the default column, which can't be moved.
---------
Co-authored-by: delvh <dev.lh@web.de >
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-14 09:15:16 +08:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Earl Warren 
							
						 
					 
					
						
						
							
						
						50fc22eecf 
					 
					
						
						
							
							Add ThreadID parameter for Telegram webhooks ( #25996 )  
						
						 
						
						... 
						
						
						
						Telegram has recently implemented threads (channels) for group chats.
Co-authored-by: neveraskedtoexist <matikot415@gmail.com > 
						
						
					 
					
						2023-08-13 14:00:06 +00:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Lunny Xiao 
							
						 
					 
					
						
						
							
						
						ca74b074ea 
					 
					
						
						
							
							Use correct pull request commit link instead of a generic commit link ( #26434 )  
						
						 
						
						... 
						
						
						
						Replace #26197 
Since #25528  merged, the links of pull request commits should be
redirect to pull file changes UI but not the generic one.
---------
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-13 11:04:42 +02:00  
					
					
						 
						
						
							
							
							 
							
							
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Denys Konovalov 
							
						 
					 
					
						
						
							
						
						ab78c39e41 
					 
					
						
						
							
							Refactor project templates ( #26448 )  
						
						 
						
						... 
						
						
						
						This PR refactors a bunch of projects-related code, mostly the
templates.
The following things were done:
  - rename boards to columns in frontend code
  - use the new `ctx.Locale.Tr` method
  - cleanup template, remove useless newlines, classes, comments
  - merge org-/user and repo level project template together
    - move "new column" button into project toolbar
- move issue card (shared by projects and pinned issues) to shared
template, remove useless duplicated styles
- add search function to projects (to make the layout more similar to
milestones list where it is inherited from 😆 )
  - maybe more changes I forgot I've done 😆  
Closes  #24893 
After:



---------
Co-authored-by: silverwind <me@silverwind.io > 
						
						
					 
					
						2023-08-12 10:30:28 +00:00