Skip to content

Commit ff992f7

Browse files
committed
Merge branch 'dev'
2 parents 340ec48 + ad14a6f commit ff992f7

10 files changed

Lines changed: 19 additions & 11 deletions

CONTROL/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Version: 1.16.0.r01
2+
- Update, installation script improvement.
3+
- Gitea 1.16.0 major release notes (https://github.com/go-gitea/gitea/releases/tag/v1.16.0).
4+
|=> Security fixes, stability improvements, added features and much more...
5+
16
Version: 1.15.10.r01
27
- Update, container running user and group.
38
- Add, auto-migration system for users leaving iGi's old Gitea app for this one.

CONTROL/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"general":{
33
"package":"gitea-docker",
44
"name":"Gitea",
5-
"version":"1.15.10.r01",
5+
"version":"1.16.0.r01",
66
"depends":[
77
"docker-ce(>=20.10.2.r2)"
88
],

CONTROL/description-fr.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Gitea est une solution Opensource d'hébergement de code léger et rapide écrite en Go. Elle est publiée sous la licence MIT.
2-
Version actuelle de Gitea : 1.15.10 - Fonctionne avec une connexion HTTPS.
2+
Version actuelle de Gitea : 1.16.0 - Fonctionne avec une connexion HTTPS.
33

44
!!! NOUVEAU !!! : Supporte maintenant la migration de l'ancien iGi Gitea vers celui-ci.
55

CONTROL/description.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Gitea is an Opensource solution for lightweight and fast code hosting written in Go. It is published under the MIT license.
2-
Gitea current version: 1.15.10 - Work with an HTTPS connection.
2+
Gitea current version: 1.16.0 - Work with an HTTPS connection.
33

44
!!! NEW !!! : Now supports the migration from the old iGi Gitea to this one.
55

CONTROL/post-uninstall.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
#!/bin/sh
22

3-
echo "gitea-adm: --== post-uninstall ==--"
3+
echo "gitea-adm: --== post-uninstall ==--"
4+
5+
exit 0

CONTROL/pre-install.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
#!/bin/sh
22

3-
echo "gitea-adm: --== pre-install ==--"
3+
echo "gitea-adm: --== pre-install ==--"
4+
5+
exit 0

CONTROL/pre-uninstall.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ echo "gitea-adm: --== pre-uninstall ==--"
55
# Environment variables
66
GITEA_VERSION=$(cat $APKG_PKG_DIR/gitea_version)
77
GITEA_CONTAINER=$(docker container ls -a | grep Gitea | awk '{print $1}')
8+
GITEA_IMAGE=$(docker images | grep gitea/gitea | grep $GITEA_VERSION | awk '{print $3}')
89

910
# Force shutdown of the container and delete it
1011
echo "gitea-adm: Stopping and removing container"
@@ -15,8 +16,6 @@ if [ -n "$GITEA_CONTAINER" ]; then
1516
docker rm -f "$GITEA_CONTAINER"
1617
fi
1718

18-
19-
GITEA_IMAGE=$(docker images | grep gitea/gitea | grep $GITEA_VERSION | awk '{print $3}')
2019
# REMOVE docker image on uninstalling & updating
2120
echo "gitea-adm: Removing docker image"
2221
echo "gitea-adm: Image ID: $GITEA_IMAGE"

CONTROL/start-stop.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
# Environment variables
3+
# Environment variable
44
GITEA_CONTAINER=Gitea
55

66
case "$1" in

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# gitea-adm
22

3-
__Gitea version__: _`1.15.10`_
3+
__Gitea version__: _`1.16.0`_
44

55
![GitHub license](https://img.shields.io/badge/license-GPL--3.0-%23fe7d37) ![GitHub last commit](https://img.shields.io/github/last-commit/EndMove/gitea-adm)
66

@@ -45,4 +45,4 @@ When an update is available you can do it directly from APP CENTRAL in ADM. If y
4545

4646
## An issue or a request ?
4747

48-
You can report a problem, ask for help or make changes at any time by following this [link](https://github.com/EndMove/gitea-adm/issues/new). Remember that I am not the developer of Gitea but of Gitea-ADM.
48+
You can report a problem, ask for help or make changes at any time by following this [link](https://github.com/EndMove/gitea-adm/issues/new). Remember that I am not the developer of Gitea but of Gitea-ADM.

gitea_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.10
1+
1.16.0

0 commit comments

Comments
 (0)