Thomas Fanninger před 9 roky
rodič
revize
62f9563ab3
6 změnil soubory, kde provedl 49 přidání a 18 odebrání
  1. 4 4
      .SRCINFO
  2. 2 2
      PKGBUILD
  3. 6 6
      app.ini.patch
  4. 8 3
      app_new.ini
  5. 8 3
      app_old.ini
  6. 21 0
      gogs.changelog

+ 4 - 4
.SRCINFO

@@ -1,8 +1,8 @@
 # Generated by mksrcinfo v8
-# Sun Jan 31 12:56:07 UTC 2016
+# Wed Feb 24 18:00:42 UTC 2016
 pkgbase = gogs
 	pkgdesc = Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language.
-	pkgver = 0.8.25
+	pkgver = 0.8.43
 	pkgrel = 1
 	epoch = 1
 	url = http://gogs.io/
@@ -32,9 +32,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.25
+	source = gogs::git+https://github.com/gogits/gogs.git#tag=v0.8.43
 	sha512sums = 834e95fe9bcfa291a573ad1fa43f41bbed844658a918ff4fcf53ab8a44a296206ee4003eab1d9a2785c9126be077022f4907846d2eb6c5d64050b5e81ce47f44
-	sha512sums = 659fe35845d729034efdb9e647850bfd2d8e53d95cd14a4d17dcd947e4d9719ed608bd254e1578d63aa2f7cb07234f7316a6c2d15deb0fd82bd7e2b27b4252da
+	sha512sums = c4e4f48b1edf2e4988b5c833ee9b8627b204b82f0121f2bcceaf425237d66690318004ccd901d770f0c046dc06631f12ed66a0fa77719b8b688f17749f396154
 	sha512sums = e45775adafeecad5deaf24a98cd85b25a8383cb0e89905b2927c13fe7f0ec9918a42071ce43eabc429d8a826db93bb75ffb1927dce9c431ed88b0b5c619fd60d
 	sha512sums = SKIP
 

+ 2 - 2
PKGBUILD

@@ -3,7 +3,7 @@
 
 pkgname=gogs
 _pkgname=${pkgname}
-pkgver=0.8.25
+pkgver=0.8.43
 pkgrel=1
 epoch=1
 pkgdesc="Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language."
@@ -32,7 +32,7 @@ source=('gogs.service.patch'
         "$_pkgname::git+https://${_gourl}.git#tag=v${pkgver}")
 
 sha512sums=(834e95fe9bcfa291a573ad1fa43f41bbed844658a918ff4fcf53ab8a44a296206ee4003eab1d9a2785c9126be077022f4907846d2eb6c5d64050b5e81ce47f44
-            659fe35845d729034efdb9e647850bfd2d8e53d95cd14a4d17dcd947e4d9719ed608bd254e1578d63aa2f7cb07234f7316a6c2d15deb0fd82bd7e2b27b4252da
+            c4e4f48b1edf2e4988b5c833ee9b8627b204b82f0121f2bcceaf425237d66690318004ccd901d770f0c046dc06631f12ed66a0fa77719b8b688f17749f396154
             e45775adafeecad5deaf24a98cd85b25a8383cb0e89905b2927c13fe7f0ec9918a42071ce43eabc429d8a826db93bb75ffb1927dce9c431ed88b0b5c619fd60d
             'SKIP')
 

+ 6 - 6
app.ini.patch

@@ -6,27 +6,27 @@
 < ROOT =
 ---
 > ROOT = /srv/gogs/repo
-76c76
+83c83
 < STATIC_ROOT_PATH =
 ---
 > STATIC_ROOT_PATH = /usr/share/themes/gogs/default
-92c92
+99c99
 < PATH = data/gogs.db
 ---
 > PATH = /srv/gogs/sqlite/gogs.db
-181c181
+186c186
 < PROVIDER_CONFIG = data/sessions
 ---
 > PROVIDER_CONFIG = /srv/gogs/sessions
-196c196
+201c201
 < AVATAR_UPLOAD_PATH = data/avatars
 ---
 > AVATAR_UPLOAD_PATH = /srv/gogs/data/avatars
-206c206
+211c211
 < PATH = data/attachments
 ---
 > PATH = /srv/gogs/data/attachments
-221c221
+226c226
 < ROOT_PATH =
 ---
 > ROOT_PATH = /var/log/gogs

+ 8 - 3
app_new.ini

@@ -27,6 +27,10 @@ EXPLORE_PAGING_NUM = 20
 ISSUE_PAGING_NUM = 10
 ; Number of maximum commits showed in one activity feed
 FEED_MAX_COMMIT_NUM = 5
+; Value of `theme-color` meta tag, used by Android >= 5.0
+; An invalid color like "none" or "disable" will have the default style
+; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android
+THEME_COLOR_META_TAG = `#ff5343`
 
 [ui.admin]
 ; Number of users that are showed in one page
@@ -41,6 +45,9 @@ ORG_PAGING_NUM = 50
 [markdown]
 ; Enable hard line break extension
 ENABLE_HARD_LINE_BREAK = false
+; List of custom URL-Schemes that are allowed as links when rendering Markdown
+; for example git,magnet
+CUSTOM_URL_SCHEMES =
 
 [server]
 PROTOCOL = http
@@ -88,7 +95,7 @@ USER = root
 PASSWD =
 ; For "postgres" only, either "disable", "require" or "verify-full"
 SSL_MODE = disable
-; For "sqlite3" and "tidb"
+; For "sqlite3" and "tidb", use absolute path when you start as service
 PATH = /srv/gogs/sqlite/gogs.db
 
 [admin]
@@ -113,8 +120,6 @@ REGISTER_EMAIL_CONFIRM = false
 DISABLE_REGISTRATION = false
 ; User must sign in to view anything.
 REQUIRE_SIGNIN_VIEW = false
-; Cache avatar as picture
-ENABLE_CACHE_AVATAR = false
 ; Mail notification
 ENABLE_NOTIFY_MAIL = false
 ; More detail: https://github.com/gogits/gogs/issues/165

+ 8 - 3
app_old.ini

@@ -27,6 +27,10 @@ EXPLORE_PAGING_NUM = 20
 ISSUE_PAGING_NUM = 10
 ; Number of maximum commits showed in one activity feed
 FEED_MAX_COMMIT_NUM = 5
+; Value of `theme-color` meta tag, used by Android >= 5.0
+; An invalid color like "none" or "disable" will have the default style
+; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android
+THEME_COLOR_META_TAG = `#ff5343`
 
 [ui.admin]
 ; Number of users that are showed in one page
@@ -41,6 +45,9 @@ ORG_PAGING_NUM = 50
 [markdown]
 ; Enable hard line break extension
 ENABLE_HARD_LINE_BREAK = false
+; List of custom URL-Schemes that are allowed as links when rendering Markdown
+; for example git,magnet
+CUSTOM_URL_SCHEMES =
 
 [server]
 PROTOCOL = http
@@ -88,7 +95,7 @@ USER = root
 PASSWD =
 ; For "postgres" only, either "disable", "require" or "verify-full"
 SSL_MODE = disable
-; For "sqlite3" and "tidb"
+; For "sqlite3" and "tidb", use absolute path when you start as service
 PATH = data/gogs.db
 
 [admin]
@@ -113,8 +120,6 @@ REGISTER_EMAIL_CONFIRM = false
 DISABLE_REGISTRATION = false
 ; User must sign in to view anything.
 REQUIRE_SIGNIN_VIEW = false
-; Cache avatar as picture
-ENABLE_CACHE_AVATAR = false
 ; Mail notification
 ENABLE_NOTIFY_MAIL = false
 ; More detail: https://github.com/gogits/gogs/issues/165

+ 21 - 0
gogs.changelog

@@ -1,3 +1,24 @@
+2015-02-24
+
+	* V0.8.43
+	Bug fix: Old activities still visible for repositories that lost access #2148
+	Bug fix: Issue references have bad links behind a reverse proxy sub-path #2229
+	Bug fix: Line breaks in email is not in HTML format #2332
+	Bug fix: Long webhook URL is truncated #2465
+	Bug fix: Multiple Webhooks with Slack type send wrong payloads #2485
+	Bug fix: Image path breaks when it contains space #2556
+	Bug fix: 500 when edit wiki after transfer the repository #2558
+	Bug fix: 500 after delete user when view releases #2596
+	Bug fix: Wrong avatar_url field in webhook payload #2630
+	Improvement: Able to config log path on install page #691
+	Improvement: Add default_branch field to repository object in webhooks #1059
+	Improvement: Display activities for close and reopen issues #1821
+	Improvement: Able to fork mirror repository #2505
+	Improvement: Highlight code blocks in issue page #2538
+	Features: Add config option [markdown] CUSTOM_URL_SCHEMES to allows Markdown render custom URL schemes #2406
+	Features: Support syntax highlight on diff view #2528
+	Features: Support convert mirror repository to regular type #2607
+
 2015-01-30
 
 	* V0.8.25