Bladeren bron

Version 0.8.10

Thomas Fanninger 10 jaren geleden
bovenliggende
commit
29229904a2
6 gewijzigde bestanden met toevoegingen van 33 en 15 verwijderingen
  1. 4 4
      .SRCINFO
  2. 3 3
      PKGBUILD
  3. 6 6
      app.ini.patch
  4. 4 1
      app_new.ini
  5. 4 1
      app_old.ini
  6. 12 0
      gogs.changelog

+ 4 - 4
.SRCINFO

@@ -1,7 +1,7 @@
 pkgbase = gogs
 	pkgdesc = Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language.
-	pkgver = 0.8.0
-	pkgrel = 2
+	pkgver = 0.8.10
+	pkgrel = 1
 	epoch = 1
 	url = http://gogs.io/
 	install = gogs.install
@@ -30,9 +30,9 @@ pkgbase = gogs
 	source = gogs.service.patch
 	source = app.ini.patch
 	source = helper.sh
-	source = gogs::git+https://github.com/gogits/gogs.git#tag=v0.8.0
+	source = gogs::git+https://github.com/gogits/gogs.git#tag=v0.8.10
 	sha512sums = 834e95fe9bcfa291a573ad1fa43f41bbed844658a918ff4fcf53ab8a44a296206ee4003eab1d9a2785c9126be077022f4907846d2eb6c5d64050b5e81ce47f44
-	sha512sums = e0538ece387a9dcc9c4f3d9194287ce3a3a31a8c64711f046c362c866f460bb1a33a71cf7e3a768a82f91bb7afe7edb2a3d0d0868faa0dba1b49f6c30e443adf
+	sha512sums = b83b488f08d9ac04070d75c583bfe94d028a73380fff3b6fcd9b4e2efb766eaf99618feab86a8970868f295d863d2583a97ede3acbc138340a7a88f678fb71d7
 	sha512sums = e45775adafeecad5deaf24a98cd85b25a8383cb0e89905b2927c13fe7f0ec9918a42071ce43eabc429d8a826db93bb75ffb1927dce9c431ed88b0b5c619fd60d
 	sha512sums = SKIP
 

+ 3 - 3
PKGBUILD

@@ -3,8 +3,8 @@
 
 pkgname=gogs
 _pkgname=${pkgname}
-pkgver=0.8.0
-pkgrel=2
+pkgver=0.8.10
+pkgrel=1
 epoch=1
 pkgdesc="Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language."
 arch=('i686' 'x86_64' 'armv6h' 'armv7h')
@@ -32,7 +32,7 @@ source=('gogs.service.patch'
         "$_pkgname::git+https://${_gourl}.git#tag=v${pkgver}")
 
 sha512sums=(834e95fe9bcfa291a573ad1fa43f41bbed844658a918ff4fcf53ab8a44a296206ee4003eab1d9a2785c9126be077022f4907846d2eb6c5d64050b5e81ce47f44
-            e0538ece387a9dcc9c4f3d9194287ce3a3a31a8c64711f046c362c866f460bb1a33a71cf7e3a768a82f91bb7afe7edb2a3d0d0868faa0dba1b49f6c30e443adf
+            b83b488f08d9ac04070d75c583bfe94d028a73380fff3b6fcd9b4e2efb766eaf99618feab86a8970868f295d863d2583a97ede3acbc138340a7a88f678fb71d7
             e45775adafeecad5deaf24a98cd85b25a8383cb0e89905b2927c13fe7f0ec9918a42071ce43eabc429d8a826db93bb75ffb1927dce9c431ed88b0b5c619fd60d
             'SKIP')
 

+ 6 - 6
app.ini.patch

@@ -6,27 +6,27 @@
 < ROOT =
 ---
 > ROOT = /srv/gogs/repo
-75c75
+74c74
 < STATIC_ROOT_PATH =
 ---
 > STATIC_ROOT_PATH = /usr/share/themes/gogs/default
-91c91
+90c90
 < PATH = data/gogs.db
 ---
 > PATH = /srv/gogs/sqlite/gogs.db
-192c192
+191c191
 < PROVIDER_CONFIG = data/sessions
 ---
 > PROVIDER_CONFIG = /srv/gogs/sessions
-207c207
+206c206
 < AVATAR_UPLOAD_PATH = data/avatars
 ---
 > AVATAR_UPLOAD_PATH = /srv/gogs/data/avatars
-217c217
+216c216
 < PATH = data/attachments
 ---
 > PATH = /srv/gogs/data/attachments
-232c232
+231c231
 < ROOT_PATH =
 ---
 > ROOT_PATH = /var/log/gogs

+ 4 - 1
app_new.ini

@@ -61,7 +61,6 @@ SSH_PORT = 22
 OFFLINE_MODE = false
 DISABLE_ROUTER_LOG = false
 ; Generate steps:
-; $ cd path/to/gogs/custom/https
 ; $ ./gogs cert -ca=true -duration=8760h0m0s -host=myhost.example.com
 ;
 ; Or from a .pfx file exported from the Windows certificate store (do
@@ -339,6 +338,10 @@ pl-PL = pl
 bg-BG = bg
 it-IT = it
 
+; Extension mapping to highlight class
+; e.g. .toml=ini
+[highlight.mapping]
+
 [other]
 SHOW_FOOTER_BRANDING = false
 ; Show version information about gogs and go in the footer

+ 4 - 1
app_old.ini

@@ -61,7 +61,6 @@ SSH_PORT = 22
 OFFLINE_MODE = false
 DISABLE_ROUTER_LOG = false
 ; Generate steps:
-; $ cd path/to/gogs/custom/https
 ; $ ./gogs cert -ca=true -duration=8760h0m0s -host=myhost.example.com
 ;
 ; Or from a .pfx file exported from the Windows certificate store (do
@@ -339,6 +338,10 @@ pl-PL = pl
 bg-BG = bg
 it-IT = it
 
+; Extension mapping to highlight class
+; e.g. .toml=ini
+[highlight.mapping]
+
 [other]
 SHOW_FOOTER_BRANDING = false
 ; Show version information about gogs and go in the footer

+ 12 - 0
gogs.changelog

@@ -1,3 +1,15 @@
+2015-12-18
+
+	* V0.8.10
+	Bug fix: Can't identify git version on Windows #2167
+	Bug fix: Wiki preview does not work on Firefox #2171
+	Bug fix: 500 when view repository watchers and stargazers with PostgreSQL #2176
+	Bug fix: Cannot detect correct file encoding #2185
+	Bug fix: Huge diff hangs
+	Bug fix: Cannot handle non-commit tag
+	Bug fix: Dashboard news feeds for organizations are wrong #2223
+	Features: Add more APIs: user emails, organizations #1692
+
 2015-12-12
 
 	* V0.8.0