1
0
mirror of https://git.cloudron.io/cloudron/gitea-app synced 2025-09-26 23:17:28 +00:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Girish Ramakrishnan
1e9964fe49 Version 1.27.0 2023-02-20 11:00:55 +01:00
Girish Ramakrishnan
23fa45cbc8 display name support 2023-02-20 10:35:53 +01:00
3 changed files with 8 additions and 4 deletions

View File

@@ -1159,3 +1159,7 @@
* Fix incorrect role labels for migrated issues and comments (#22914) (#22923)
* Fix PR file tree folders no longer collapsing (#22864) (#22872)
* Escape filename when assemble URL (#22850) (#22871)
[1.27.0]
* Email display name support

View File

@@ -4,7 +4,7 @@
"author": "Gitea developers",
"description": "file://DESCRIPTION.md",
"tagline": "A painless self-hosted Git Service",
"version": "1.26.4",
"version": "1.27.0",
"upstreamVersion": "1.18.4",
"healthCheckPath": "/explore",
"httpPort": 3000,
@@ -12,7 +12,7 @@
"addons": {
"mysql": { },
"sendmail": { },
"localstorage": { },
"localstorage": { "supportsDisplayName": true },
"ldap": { }
},
"tcpPorts": {
@@ -37,7 +37,7 @@
"tags": [ "version control", "git", "code hosting", "development", "github", "bitbucket", "gitlab" ],
"changelog": "file://CHANGELOG.md",
"postInstallMessage": "file://POSTINSTALL.md",
"minBoxVersion": "7.2.0",
"minBoxVersion": "7.3.0",
"forumUrl": "https://forum.cloudron.io/category/19/gitea",
"documentationUrl": "https://docs.cloudron.io/apps/gitea/"
}

View File

@@ -114,7 +114,7 @@ crudini --set "/run/gitea/app.ini" repository.upload TEMP_PATH "/run/gitea/tmp/u
crudini --set "/run/gitea/app.ini" mailer HOST "${CLOUDRON_MAIL_SMTP_SERVER}:${CLOUDRON_MAIL_SMTPS_PORT}"
crudini --set "/run/gitea/app.ini" mailer USER "${CLOUDRON_MAIL_SMTP_USERNAME}"
crudini --set "/run/gitea/app.ini" mailer PASSWD "${CLOUDRON_MAIL_SMTP_PASSWORD}"
crudini --set "/run/gitea/app.ini" mailer FROM "${CLOUDRON_MAIL_FROM}"
crudini --set "/run/gitea/app.ini" mailer FROM "${CLOUDRON_MAIL_FROM_DISPLAY_NAME:-Gitea} <${CLOUDRON_MAIL_FROM}>"
crudini --set "/run/gitea/app.ini" mailer SKIP_VERIFY "true"
crudini --set "/run/gitea/app.ini" security INSTALL_LOCK "true"
crudini --set "/run/gitea/app.ini" security REVERSE_PROXY_LIMIT 1