[PR #469] [CLOSED] Installation from binary docs page typo #15402

Closed
opened 2025-11-02 11:45:45 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/469
Author: @termlimit
Created: 12/24/2016
Status: Closed

Base: release/v1.0Head: master


📝 Commits (3)

📊 Changes

48 files changed (+69416 additions, -15 deletions)

View changed files

📝 main.go (+1 -1)
📝 models/migrations/migrations.go (+1 -0)
📝 models/models.go (+22 -0)
📝 models/user.go (+15 -0)
📝 modules/setting/setting.go (+1 -0)
📝 public/js/index.js (+12 -12)
📝 routers/api/v1/api.go (+9 -0)
routers/api/v1/user/watch.go (+123 -0)
📝 routers/install.go (+4 -2)
vendor/github.com/denisenkom/go-mssqldb/LICENSE.txt (+27 -0)
vendor/github.com/denisenkom/go-mssqldb/README.md (+95 -0)
vendor/github.com/denisenkom/go-mssqldb/buf.go (+222 -0)
vendor/github.com/denisenkom/go-mssqldb/charset.go (+113 -0)
vendor/github.com/denisenkom/go-mssqldb/collation.go (+39 -0)
vendor/github.com/denisenkom/go-mssqldb/cp1250.go (+262 -0)
vendor/github.com/denisenkom/go-mssqldb/cp1251.go (+262 -0)
vendor/github.com/denisenkom/go-mssqldb/cp1252.go (+262 -0)
vendor/github.com/denisenkom/go-mssqldb/cp1253.go (+262 -0)
vendor/github.com/denisenkom/go-mssqldb/cp1254.go (+262 -0)
vendor/github.com/denisenkom/go-mssqldb/cp1255.go (+262 -0)

...and 28 more files

📄 Description

URL: https://docs.gitea.io/en-us/install-from-binary/

block of code here:
wget -O gitea https://dl.gitea.io/gitea/v1.0.0/gitea-v1.0.0-linux-amd64 chmod +x gitea
Should be:
wget -O gitea https://dl.gitea.io/gitea/1.0.0/gitea-1.0.0-linux-amd64 chmod +x gitea

Actual location of files: https://dl.gitea.io/gitea/1.0.0/ and there are no v1.0.0 only 1.0.0 files listed.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-gitea/gitea/pull/469 **Author:** [@termlimit](https://github.com/termlimit) **Created:** 12/24/2016 **Status:** ❌ Closed **Base:** `release/v1.0` ← **Head:** `master` --- ### 📝 Commits (3) - [`f2ff0ee`](https://github.com/go-gitea/gitea/commit/f2ff0ee846e8ef42e2f7ba960e86bd8e397f007f) Raised version to 1.1.0 (#468) - [`25b5ffb`](https://github.com/go-gitea/gitea/commit/25b5ffb6af390eac8d4a76c134379fd1ae88a423) Enables mssql support (#383) - [`8a4161c`](https://github.com/go-gitea/gitea/commit/8a4161c72335900407b8f111027ad9ed53c0b631) API Endpoint for watching (#191) ### 📊 Changes **48 files changed** (+69416 additions, -15 deletions) <details> <summary>View changed files</summary> 📝 `main.go` (+1 -1) 📝 `models/migrations/migrations.go` (+1 -0) 📝 `models/models.go` (+22 -0) 📝 `models/user.go` (+15 -0) 📝 `modules/setting/setting.go` (+1 -0) 📝 `public/js/index.js` (+12 -12) 📝 `routers/api/v1/api.go` (+9 -0) ➕ `routers/api/v1/user/watch.go` (+123 -0) 📝 `routers/install.go` (+4 -2) ➕ `vendor/github.com/denisenkom/go-mssqldb/LICENSE.txt` (+27 -0) ➕ `vendor/github.com/denisenkom/go-mssqldb/README.md` (+95 -0) ➕ `vendor/github.com/denisenkom/go-mssqldb/buf.go` (+222 -0) ➕ `vendor/github.com/denisenkom/go-mssqldb/charset.go` (+113 -0) ➕ `vendor/github.com/denisenkom/go-mssqldb/collation.go` (+39 -0) ➕ `vendor/github.com/denisenkom/go-mssqldb/cp1250.go` (+262 -0) ➕ `vendor/github.com/denisenkom/go-mssqldb/cp1251.go` (+262 -0) ➕ `vendor/github.com/denisenkom/go-mssqldb/cp1252.go` (+262 -0) ➕ `vendor/github.com/denisenkom/go-mssqldb/cp1253.go` (+262 -0) ➕ `vendor/github.com/denisenkom/go-mssqldb/cp1254.go` (+262 -0) ➕ `vendor/github.com/denisenkom/go-mssqldb/cp1255.go` (+262 -0) _...and 28 more files_ </details> ### 📄 Description URL: https://docs.gitea.io/en-us/install-from-binary/ block of code here: ` wget -O gitea https://dl.gitea.io/gitea/v1.0.0/gitea-v1.0.0-linux-amd64 chmod +x gitea ` Should be: ` wget -O gitea https://dl.gitea.io/gitea/1.0.0/gitea-1.0.0-linux-amd64 chmod +x gitea ` Actual location of files: https://dl.gitea.io/gitea/1.0.0/ and there are no v1.0.0 only 1.0.0 files listed. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-02 11:45:45 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#15402