Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix for timeout, apply new branch changes #183

Merged
merged 7 commits into from
Oct 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ data
dist
out
channels
scripts

npm-debug.log
.all-contributorsrc
Expand Down
12 changes: 6 additions & 6 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ steps:
repo: mauriceo/viewtube
tags:
- latest
- '0.4.0'
- '0.4.1'
- '0.4'
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
branch:
- master
- stable
event:
- push

Expand All @@ -39,7 +39,7 @@ steps:
from_secret: docker_password
when:
branch:
- dev
- main
event:
- push

Expand All @@ -51,7 +51,7 @@ steps:
to: -1001411660806
when:
branch:
- master
- stable
event:
- push
status:
Expand All @@ -60,5 +60,5 @@ steps:

trigger:
branch:
- master
- dev
- stable
- main
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
This file is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.1] - 2020-10-26

### Fixed

- Set API timeout to 30 seconds [#183](https://github.com/ViewTube/viewtube-vue/pull/183)

## [0.4.0] - 2020-10-20

### Added
Expand Down Expand Up @@ -70,7 +76,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[unreleased]: https://github.com/viewtube/viewtube-vue/compare/v0.4.0...dev
[unreleased]: https://github.com/viewtube/viewtube-vue/compare/v0.4.1...main
[0.4.1]: https://github.com/viewtube/viewtube-vue/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/viewtube/viewtube-vue/compare/v0.3.1...v0.4.0
[0.3.1]: https://github.com/viewtube/viewtube-vue/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/viewtube/viewtube-vue/compare/v0.2.1...v0.3.0
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1 align="center">
<sub>
<img src="https://raw.githubusercontent.com/ViewTube/viewtube-vue/master/.github/images/logo.png"
<img src="https://raw.githubusercontent.com/ViewTube/viewtube-vue/stable/.github/images/logo.png"
height="50"
width="50">
</sub>
Expand All @@ -11,10 +11,10 @@ ViewTube is an alternative YouTube frontend using the [invidio.us](https://githu

It can recommend, play and search for videos. It saves your watch progress and you can subscribe to channels for them to appear in your subscription feed.

[![DeepScan grade](https://deepscan.io/api/teams/11097/projects/14017/branches/250433/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=11097&pid=14017&bid=250433)
[![DeepScan grade](https://deepscan.io/api/teams/11097/projects/14017/branches/262917/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=11097&pid=14017&bid=262917)
[![Build Status](https://drone.oeger.li/api/badges/ViewTube/viewtube-vue/status.svg)](https://drone.oeger.li/ViewTube/viewtube-vue)
[![vue2](https://img.shields.io/badge/vue-2.x-brightgreen.svg)](https://vuejs.org/)
[![GitHub](https://img.shields.io/github/license/mauriceoegerli/viewtube-vue)](https://github.com/ViewTube/viewtube-vue/blob/master/LICENSE)
[![GitHub](https://img.shields.io/github/license/mauriceoegerli/viewtube-vue)](https://github.com/ViewTube/viewtube-vue/blob/stable/LICENSE)
![Docker Image Size (tag)](https://img.shields.io/docker/image-size/mauriceo/viewtube/latest?label=docker%20image)

<h2 align="center">
Expand Down
2 changes: 1 addition & 1 deletion client/plugins/services/viewTubeApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default class {
constructor(apiUrl: string) {
this.apiPrototype.request = axios.create({
baseURL: apiUrl,
timeout: 10000
timeout: 30000
});
this.api = createApi(this.apiPrototype);
}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Maurice Oegerli",
"country": "Switzerland",
"email": "viewtube@m-o.dev",
"version": "0.4.0",
"version": "0.4.1",
"license": "AGPLv3",
"private": true,
"scripts": {
Expand Down Expand Up @@ -32,7 +32,7 @@
],
"husky": {
"hooks": {
"pre-commit": "lint-staged && ./no-master.sh"
"pre-commit": "lint-staged && ./scripts/no-master.sh"
}
},
"lint-staged": {
Expand Down
4 changes: 2 additions & 2 deletions no-master.sh → scripts/no-master.sh
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

branch="$(git rev-parse --abbrev-ref HEAD)"

if [ "$branch" = "master" ]; then
echo "[ERROR] You shouldn't commit directly to master branch"
if [ "$branch" = "stable" ]; then
echo "[ERROR] You shouldn't commit directly to the stable branch"
echo "[INFO] If this is intended, use --skip-verify"
exit 1
fi