Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' of https://github.com/VueTubeApp/VueTube
Browse files Browse the repository at this point in the history
  • Loading branch information
Frontesque committed Jun 15, 2022
2 parents a583aec + 422213e commit e239726
Show file tree
Hide file tree
Showing 60 changed files with 1,058 additions and 513 deletions.
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: 💬 Discord
url: https://vuetube.app/discord
about: Join the Discord server to chat and ask questions
- name: 💬 Telegram
url: https://t.me/vuetube
about: Join the Telegram group to chat and ask questions
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: ❓ Question
description: Ask a quesion related to VueTube
labels: [question]
body:

- type: textarea
id: question
attributes:
label: Ask your question
description: What do you want to know?
placeholder: |
Example:
"How do I add a plugin?"
validations:
required: true

- type: textarea
id: aditional-info
attributes:
label: Aditional information
placeholder: |
Additional useful information, for example, a screenshot.
- type: checkboxes
id: acknowledgements
attributes:
label: Acknowledgements
description: Your question will be closed if you haven't done these steps.
options:
- label: I have searched the existing issues and this is a new question, **NOT** a duplicate or related to another open issue.
required: true
- label: I have written a short but informative title.
required: true
- label: I will fill out all of the requested information in this form.
required: true
- label: My question isn't asked in FAQ (Frequently Asked Questions).
required: true
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
CODE_SIGNING_ALLOWED="NO"
CODE_SIGN_ENTITLEMENTS=""
- name: Make IPA
run: mkdir Payload && mv ~/Library/Developer/Xcode/DerivedData/App-*/Build/Products/Debug-maccatalyst/App.app/ Payload && zip -r Payload.zip Payload && mv Payload.zip VueTube.ipa
run: mkdir Payload && mv ~/Library/Developer/Xcode/DerivedData/App-*/Build/Products/Debug-iphoneos/App.app/ Payload && zip -r Payload.zip Payload && mv Payload.zip VueTube.ipa

- name: Upload artifacts
uses: actions/upload-artifact@v2
Expand Down
14 changes: 0 additions & 14 deletions Icons/Stable.svg

This file was deleted.

8 changes: 1 addition & 7 deletions NUXT/components/Player/captions.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
<template>
<v-btn
fab
text
small
disabled
style="position: absolute; top: 0.25rem; right: 3rem"
>
<v-btn fab text small disabled>
<v-icon>mdi-closed-caption-outline</v-icon>
</v-btn>
</template>
11 changes: 2 additions & 9 deletions NUXT/components/Player/close.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
<template>
<!-- TODO: change /home to $router.goBack() or $router.go(-1) -->
<v-btn
fab
text
small
style="position: absolute; top: 0.25rem; right: 0.25rem"
to="/home"
color="white"
>
<!-- // TODO: change /home to $router.goBack() or $router.go(-1) -->
<v-btn fab text small to="/home" color="white">
<v-icon>mdi-close</v-icon>
</v-btn>
</template>
13 changes: 4 additions & 9 deletions NUXT/components/Player/fullscreen.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
<template>
<v-btn
fab
text
small
color="white"
style="position: absolute; bottom: 0.25rem; right: 0.25rem"
@click.stop="$emit('fullscreen')"
>
<v-icon>{{ fullscreen ? "mdi-fullscreen-exit" : "mdi-fullscreen" }}</v-icon>
<v-btn fab text small color="white" @click.stop="$emit('fullscreen')">
<v-icon size="1.25rem">{{
fullscreen ? "mdi-fullscreen-exit" : "mdi-fullscreen"
}}</v-icon>
</v-btn>
</template>

Expand Down
Loading

0 comments on commit e239726

Please sign in to comment.