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

Update acceptance #72

Merged
merged 15 commits into from
Oct 4, 2023
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
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
time: "08:00"
timezone: "Europe/Amsterdam"
8 changes: 4 additions & 4 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ name: Scala CI

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
Expand Down
3 changes: 1 addition & 2 deletions app/assets/stylesheets/utils/components/_slider.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@
}
}
&__picture {
height: 95%;
width: auto;
max-height: 95%;
transition: transform 1s;
&:hover {
transform: translateZ(20px);
Expand Down
32 changes: 16 additions & 16 deletions app/views/main.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,27 @@ <h1 class="cover__title">Lunatech’s<br />engineer blog</h1>

<div class="slider">
<div class="slider__group">
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char1.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char2.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char3.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char4.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char1.webp")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char2.webp")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char3.webp")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char4.webp")"></div>

<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char1.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char2.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char3.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char4.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char1.webp")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char2.webp")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char3.webp")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char4.webp")"></div>
</div>

<div class="slider__group">
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char5.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char6.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char7.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char8.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char5.webp")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char6.webp")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char7.webp")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char8.webp")"></div>

<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char5.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char6.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char7.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char8.png")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char5.webp")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char6.webp")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char7.webp")"></div>
<div class="slider__person"><img class="slider__picture" src="@routes.Assets.versioned("images/char8.webp")"></div>
</div>
</div>

Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ version := "1.0-SNAPSHOT"

lazy val root = (project in file(".")).enablePlugins(PlayScala)

scalaVersion := "2.13.11"
scalaVersion := "2.13.12"

libraryDependencies ++= Seq(
guice, ws, ehcache,
"org.scalatestplus.play" %% "scalatestplus-play" % "5.1.0" % Test,
"org.asciidoctor" % "asciidoctorj" % "2.5.9",
"org.asciidoctor" % "asciidoctorj" % "2.5.10",
"com.47deg" %% "github4s" % "0.21.0",
"com.typesafe.play" %% "play-json" % "2.9.4",
"com.typesafe.play" %% "play-json" % "2.10.1",
)

Global / onChangedBuildSource := ReloadOnSourceChanges
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.0
sbt.version=1.9.6
Binary file removed public/images/char1.png
Binary file not shown.
Binary file added public/images/char1.webp
Binary file not shown.
Binary file removed public/images/char2.png
Binary file not shown.
Binary file added public/images/char2.webp
Binary file not shown.
Binary file removed public/images/char3.png
Binary file not shown.
Binary file added public/images/char3.webp
Binary file not shown.
Binary file removed public/images/char4.png
Binary file not shown.
Binary file added public/images/char4.webp
Binary file not shown.
Binary file removed public/images/char5.png
Binary file not shown.
Binary file added public/images/char5.webp
Binary file not shown.
Binary file removed public/images/char6.png
Binary file not shown.
Binary file added public/images/char6.webp
Binary file not shown.
Binary file removed public/images/char7.png
Binary file not shown.
Binary file added public/images/char7.webp
Binary file not shown.
Binary file removed public/images/char8.png
Binary file not shown.
Binary file added public/images/char8.webp
Binary file not shown.