diff --git a/ROADMAP.md b/ROADMAP.md index f502dbb..8656136 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -25,6 +25,7 @@ None of this is guaranteed to be worked on by anyone. #### Normal Priority +- Video pagination - Video counter for each category - Public profile view (linked in published challenge) - Detailed descriptions for Challenges and Player profiles diff --git a/src/components/ChallengeList.vue b/src/components/ChallengeList.vue index ff81efd..be3433f 100644 --- a/src/components/ChallengeList.vue +++ b/src/components/ChallengeList.vue @@ -4,7 +4,7 @@ - Sign in on the top left + Sign in on the top right to share your challenge code. @@ -44,7 +44,7 @@ Be the first, you can edit your profile to customize your challenge - and set yourself available. + and set yourself to available. diff --git a/src/components/Video.vue b/src/components/Video.vue index 2a7636e..dc7f5df 100644 --- a/src/components/Video.vue +++ b/src/components/Video.vue @@ -8,16 +8,17 @@ By {{ video.author }} + - - + + {{ categoryObject.label() }} @@ -80,10 +81,10 @@ export default { return this.video.url.replace('/watch?v=', '/embed/') }, width() { - return this.currentDimensions.width + return this.currentDimensions.width * this.dimensionsModifier }, height() { - return this.currentDimensions.height + return this.currentDimensions.height * this.dimensionsModifier }, cardWidth() { return this.width + 12 @@ -91,6 +92,9 @@ export default { currentDimensions() { return this.$vuetify.breakpoint.lgAndUp ? this.dimensions['lg'] : this.dimensions['sm'] }, + dimensionsModifier() { + return this.showEmbed && this.$vuetify.breakpoint.lgAndUp ? 1.75 : 1 + }, categoryObject() { return new Category(this.video.category) }, diff --git a/src/views/Home.vue b/src/views/Home.vue index a433d9c..54f5a87 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -19,12 +19,13 @@ -

You can either visit the mdi-fencing Arena and find other players to play against.

-

To use this feature and share your invite code you will have to sign in first to be able to fill out your player profile.

+

Visit the mdi-fencing Arena and find other players to play against.

+

Useful for casual matches or organizing a tournament setting.

+

To share your invite code you will have to sign in first to be able to fill out your player profile.

-

Or you can visit the mdi-video Video library to find educational and entertaining content from community creators.

+

Or you can visit the mdi-video Video library to find educational and entertaining content from community creators.