008f5d8cf1 
					 
					
						
						
							
							Add default label in branch select list ( #26697 )  
						
						
						
						
					 
					
						2023-08-29 12:15:19 +00:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						aeeeac8edf 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-08-29 00:22:17 +00:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						2401e6e121 
					 
					
						
						
							
							[skip ci] Updated licenses and gitignores  
						
						
						
						
					 
					
						2023-08-28 00:22:48 +00:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						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 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						37b3ba22a1 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-08-27 00:27:26 +00:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						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 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						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 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						0d55f64e6c 
					 
					
						
						
							
							chore(actions): support cron schedule task ( #26655 )  
						
						... 
						
						
						
						Replace #22751  
1. only support the default branch in the repository setting.
2. autoload schedule data from the schedule table after starting the
service.
3. support specific syntax like `@yearly`, `@monthly`, `@weekly`,
`@daily`, `@hourly`
## How to use
See the [GitHub Actions
document](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule )
for getting more detailed information.
```yaml
on:
  schedule:
    - cron: '30 5 * * 1,3'
    - cron: '30 5 * * 2,4'
jobs:
  test_schedule:
    runs-on: ubuntu-latest
    steps:
      - name: Not on Monday or Wednesday
        if: github.event.schedule != '30 5 * * 1,3'
        run: echo "This step will be skipped on Monday and Wednesday"
      - name: Every time
        run: echo "This step will always run"
```
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com >
---------
Co-authored-by: Jason Song <i@wolfogre.com >
Co-authored-by: techknowlogick <techknowlogick@gitea.io >
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com >
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com > 
						
						
					 
					
						2023-08-24 03:06:51 +00:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						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 
						 
				 
			
				
					
						
							
							
								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 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						f6e7798405 
					 
					
						
						
							
							Add link to job details and tooltip to commit status in repo list in dashboard ( #26326 )  
						
						... 
						
						
						
						Tooltip:

Link to the target job:
 
						
						
					 
					
						2023-08-21 15:26:10 +08:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						00cf36d6c7 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-08-19 00:20:23 +00:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						445dbda276 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-08-18 00:21:36 +00:00 
						 
				 
			
				
					
						
							
							
								Jason Song 
							
						 
					 
					
						
						
							
						
						47fddaadc8 
					 
					
						
						
							
							Support rebuilding issue indexer manually ( #26546 )  
						
						... 
						
						
						
						Provide a way to rebuild issue indexer manually.
So if the indexer get outdated because of some bugs like #26539 , we can
rebuild it.
<img width="1104" alt="image"
src="https://github.com/go-gitea/gitea/assets/9418365/ac242e29-6f04-47ca-b3d0-801a796448d3 ">
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-17 14:05:17 +00:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						16aee56e6a 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-08-17 00:21:25 +00:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						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 
						 
				 
			
				
					
						
							
							
								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 
						 
				 
			
				
					
						
							
							
								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 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						e17e43f1db 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-08-12 00:20:47 +00:00 
						 
				 
			
				
					
						
							
							
								Denys Konovalov 
							
						 
					 
					
						
						
							
						
						63ab92d797 
					 
					
						
						
							
							Pre-register OAuth2 applications for git credential helpers ( #26291 )  
						
						... 
						
						
						
						This PR is an extended implementation of #25189  and builds upon the
proposal by @hickford  in #25653 , utilizing some ideas proposed
internally by @wxiaoguang .
Mainly, this PR consists of a mechanism to pre-register OAuth2
applications on startup, which can be enabled or disabled by modifying
the `[oauth2].DEFAULT_APPLICATIONS` parameter in app.ini. The OAuth2
applications registered this way are being marked as "locked" and
neither be deleted nor edited over UI to prevent confusing/unexpected
behavior. Instead, they're being removed if no longer enabled in config.

The implemented mechanism can also be used to pre-register other OAuth2
applications in the future, if wanted.
Co-authored-by: hickford <mirth.hickford@gmail.com >
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com >
---------
Co-authored-by: M Hickford <mirth.hickford@gmail.com >
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com > 
						
						
					 
					
						2023-08-09 14:24:07 +02:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						906e253d5e 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-08-09 00:26:05 +00:00 
						 
				 
			
				
					
						
							
							
								Panagiotis "Ivory" Vasilopoulos 
							
						 
					 
					
						
						
							
						
						daf7092863 
					 
					
						
						
							
							Improve multiple strings in en-US locale ( #26213 )  
						
						... 
						
						
						
						I kept sending pull requests that consisted of one-line changes. It's
time to
settle this once and for all. (Maybe.)
- Explain Gitea behavior and the consequences of each
  setting better, so that the user does not have to consult
  the docs.
- Do not use different spellings of identical terms
  interchangeably, e.g. `e-mail` and `email`.
- Use more conventional terms to describe the same things,
  e.g. `Confirm Password` instead of `Re-Type Password`.
- Introduces additional clarification for Mirror Settings
- Small adjustments in test
- This is a cry for help.
- Grammar and spelling consistencies for en-US locale
  (e.g. cancelled -> canceled)
- Introduce tooltip improvements.
---------
Co-authored-by: delvh <dev.lh@web.de >
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com >
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-08-08 15:25:05 +00:00 
						 
				 
			
				
					
						
							
							
								KN4CK3R 
							
						 
					 
					
						
						
							
						
						0c6ae61229 
					 
					
						
						
							
							Allow package cleanup from admin page ( #25307 )  
						
						... 
						
						
						
						Until now expired package data gets deleted daily by a cronjob. The
admin page shows the size of all packages and the size of unreferenced
data. The users (#25035 , #20631 ) expect the deletion of this data if
they run the cronjob from the admin page but the job only deletes data
older than 24h.
This PR adds a new button which deletes all expired data.

---------
Co-authored-by: silverwind <me@silverwind.io > 
						
						
					 
					
						2023-08-08 00:46:10 +00:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						049e400327 
					 
					
						
						
							
							[skip ci] Updated licenses and gitignores  
						
						
						
						
					 
					
						2023-08-07 00:27:21 +00:00 
						 
				 
			
				
					
						
							
							
								delvh 
							
						 
					 
					
						
						
							
						
						8736b134bd 
					 
					
						
						
							
							Display human-readable text instead of cryptic filemodes ( #26352 )  
						
						... 
						
						
						
						Now, you don't need to be a git expert anymore to know what these
numbers mean.
## Before

## After

or when the mode actually changed:
 
						
						
					 
					
						2023-08-06 21:52:34 +02:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						865d2221c0 
					 
					
						
						
							
							Add Retry button when creating a mirror-repo fails ( #26228 )  
						
						... 
						
						
						
						fixed  #26156  
* Added a retry button in the frontend (only displayed when the status
is abnormal)
* After clicking Retry, the backend adds the task back to the task queue


---------
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com > 
					
						2023-08-04 10:21:32 +08:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						907bedaad0 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-08-04 00:26:21 +00:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						6832a8eb06 
					 
					
						
						
							
							Add locale for deleted head branch ( #26296 )  
						
						... 
						
						
						
						As title.
It will be displayed in:
 
						
						
					 
					
						2023-08-03 22:07:15 +00:00 
						 
				 
			
				
					
						
							
							
								Panagiotis "Ivory" Vasilopoulos 
							
						 
					 
					
						
						
							
						
						0827fbd49c 
					 
					
						
						
							
							Make confusable character warning less jarring ( #25069 )  
						
						... 
						
						
						
						This commit assumes that the warning can be made more discreet
so as to make it less annoying for the people that do not actually
need the warning, without necessarily increasing the risk for those
that do need it.
This doesn't fix the underlying problem of the warning being shown
in certain cases that, say, a certain kind of whitespace character
like 0x1E could be absolutely justifiable from a technical
perspective.
---------
Co-authored-by: delvh <dev.lh@web.de > 
						
						
					 
					
						2023-08-03 22:16:06 +08:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						539015403f 
					 
					
						
						
							
							Fix the topic validation rule and suport dots ( #26286 )  
						
						... 
						
						
						
						1. Allow leading and trailing spaces by user input, these spaces have
already been trimmed at backend
2. Allow using dots in the topic 
						
						
					 
					
						2023-08-03 09:18:06 +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 
						 
				 
			
				
					
						
							
							
								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 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						7dc2e50113 
					 
					
						
						
							
							[skip ci] Updated licenses and gitignores  
						
						
						
						
					 
					
						2023-07-31 00:32:16 +00: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 
						 
				 
			
				
					
						
							
							
								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 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						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 
						 
				 
			
				
					
						
							
							
								Panagiotis "Ivory" Vasilopoulos 
							
						 
					 
					
						
						
							
						
						b3c71ec64f 
					 
					
						
						
							
							Fix minor capitalization error in string ( #26100 )  
						
						... 
						
						
						
						Co-authored-by: silverwind <me@silverwind.io >
Co-authored-by: Giteabot <teabot@gitea.io >
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com > 
						
						
					 
					
						2023-07-25 11:00:32 +00:00 
						 
				 
			
				
					
						
							
							
								JakobDev 
							
						 
					 
					
						
						
							
						
						6598d0291c 
					 
					
						
						
							
							Allow Organisations to have a E-Mail ( #25082 )  
						
						... 
						
						
						
						Resolves  #25057 
This adds a E-Mail field to Organisations. The E-Mail is just shown on
the Profile when it is visited by a logged in User. The E-mail is not
used for something else.
**Screenshots:**


---------
Co-authored-by: Denys Konovalov <kontakt@denyskon.de >
Co-authored-by: Denys Konovalov <privat@denyskon.de >
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com >
Co-authored-by: Giteabot <teabot@gitea.io > 
					
						2023-07-25 08:26:27 +00:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						5db640abcd 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-07-25 00:27:42 +00:00 
						 
				 
			
				
					
						
							
							
								Panagiotis "Ivory" Vasilopoulos 
							
						 
					 
					
						
						
							
						
						4b6764bbb3 
					 
					
						
						
							
							Make organization redirect warning more clear ( #26077 )  
						
						
						
						
					 
					
						2023-07-24 04:17:32 +00:00 
						 
				 
			
				
					
						
							
							
								HesterG 
							
						 
					 
					
						
						
							
						
						24c3bb95ac 
					 
					
						
						
							
							Categorize admin settings sidebar panel ( #26030 )  
						
						... 
						
						
						
						This PR reorganize and categorize the admin settings sidebar panel into
groups:
- User Accounts, User Emails, Organizations, Authentication Sources ->
Identity & Access
- Repositories, Packages -> Code Assets
- Webhooks, Applications -> Integrations
Before:
<img width="1346" alt="Screen Shot 2023-07-21 at 10 30 28"
src="https://github.com/go-gitea/gitea/assets/17645053/e0c5ae83-464f-4aaa-8bab-2c5258c9278d ">
After:
all configurable settings enabled (package, oauth, webhook)
<img width="1153" alt="Screen Shot 2023-07-21 at 10 27 30"
src="https://github.com/go-gitea/gitea/assets/17645053/88acf3f5-0623-4307-8654-69c654d80874 ">
all configurable settings disabled (package, oauth, webhook)
<img width="1391" alt="Screen Shot 2023-07-21 at 10 25 19"
src="https://github.com/go-gitea/gitea/assets/17645053/9e13aa60-e75c-4077-afd6-3da9e0ae18dd ">
only oauth enabled
<img width="1323" alt="Screen Shot 2023-07-21 at 10 26 23"
src="https://github.com/go-gitea/gitea/assets/17645053/ce4f9ec0-b141-4d5e-ac13-46d001724dc5 ">
only webhook enabled
<img width="1350" alt="Screen Shot 2023-07-21 at 10 26 55"
src="https://github.com/go-gitea/gitea/assets/17645053/702491bd-083e-44fa-82bc-52c4571e54ac "> 
						
						
					 
					
						2023-07-24 09:05:16 +08:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						4e4a71f3a0 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-07-24 00:27:48 +00:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						73033b1ad8 
					 
					
						
						
							
							Improve text for empty issue/pr description ( #26047 )  
						
						... 
						
						
						
						The previous text implied that content was going to be added later, but
I don't think we should make such assumptions.
<img width="346" alt="image"
src="https://github.com/go-gitea/gitea/assets/115237/518133a7-2c4c-4463-91ee-5fe439898032 "> 
						
						
					 
					
						2023-07-22 17:32:50 +08:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						3acaaa29dd 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-07-21 00:26:46 +00:00 
						 
				 
			
				
					
						
							
							
								Dominik Heidler 
							
						 
					 
					
						
						
							
						
						2e128dd1fc 
					 
					
						
						
							
							RPM Registry: Show zypper commands for SUSE based distros as well ( #25981 )  
						
						... 
						
						
						
						After RPM is supported with https://github.com/go-gitea/gitea/pull/23380 
let's show the user
how to add the repo and install the RPM via all common package managers.
---------
Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-07-20 17:37:31 +02:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						cf467119ff 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-07-20 00:27:21 +00:00 
						 
				 
			
				
					
						
					 
					
						
						
							
						
						50e14699d3 
					 
					
						
						
							
							Update path related documents ( #25417 )  
						
						... 
						
						
						
						Update WorkPath/WORK_PATH related documents, remove out-dated
information.
Remove "StaticRootPath" on the admin config display page, because few
end user really need it, it only causes misconfiguration.

Co-authored-by: Giteabot <teabot@gitea.io > 
						
						
					 
					
						2023-07-19 11:22:57 +02:00 
						 
				 
			
				
					
						
							
							
								GiteaBot 
							
						 
					 
					
						
						
							
						
						c7455e9f23 
					 
					
						
						
							
							[skip ci] Updated translations via Crowdin  
						
						
						
						
					 
					
						2023-07-19 00:46:27 +00:00