Skip to content

Commit

Permalink
pierwsza faktyczna zmiana
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeoneUnknownForReal committed Dec 3, 2024
1 parent 4b0eacc commit a21f42a
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 45 deletions.
4 changes: 2 additions & 2 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
--color-on-background: black;
--color-background-hover: #eee;
--color-on-background-hover: black;
--color-primary: #0066ff;
--color-primary: #ff0000;
--color-on-primary: white;
--color-error: #de0000;
--color-on-error: white;
Expand All @@ -16,7 +16,7 @@ header.dark {
--color-on-background: white;
--color-background-hover: #27262c;
--color-on-background-hover: white;
--color-primary: #283593;
--color-primary: #932828;
--color-primary-disabled: #1f213c;
--color-on-primary: white;
--color-error: #de0000;
Expand Down
4 changes: 2 additions & 2 deletions data/_editors.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"role": "owner",
"name": "List Owner",
"name": "Someone",
"link": "https://www.youtube.com/@Prometheus_Alt"
},
{
Expand All @@ -21,7 +21,7 @@
},
{
"role": "dev",
"name": "List Coder",
"name": "Someone",
"link": "https://www.youtube.com/@Prometheus_Alt"
}
]
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1024" />
<title>Your List Name</title>
<title>Polish List</title>

<!-- Replace your server icon by uploading an image file named "list_icon.png"-->
<link rel="icon" href="/list_icon.png" />
Expand Down Expand Up @@ -37,18 +37,18 @@
<body id="app">
<header :class="{ dark: store.dark }">
<div class="logo">
<h2>Sample List</h2>
<h2>PLL</h2>
<p>v1.0.0</p>
</div>
<nav class="nav">
<router-link class="nav__tab" to="/">
<span class="type-label-lg">List</span>
<span class="type-label-lg">Lista</span>
</router-link>
<router-link class="nav__tab" to="/leaderboard">
<span class="type-label-lg">Leaderboard</span>
<span class="type-label-lg">Tabela</span>
</router-link>
<router-link class="nav__tab" to="/roulette">
<span class="type-label-lg">Roulette</span>
<span class="type-label-lg">Ruletka</span>
</router-link>
<div class="nav__actions">
<button
Expand All @@ -69,7 +69,7 @@ <h2>Sample List</h2>
class="nav__cta type-label-lg"
href="#"
target="_blank"
>Submit Record</a
>Upublikuj rekord</a
>
</div>
</nav>
Expand Down
12 changes: 6 additions & 6 deletions js/components/List/LevelAuthors.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,35 +16,35 @@ export default {
template: `
<div class="level-authors">
<template v-if="selfVerified">
<div class="type-title-sm">Creator & Verifier</div>
<div class="type-title-sm">Twórca i Weryfikator</div>
<p class="type-body">
<span>{{ author }}</span>
</p>
</template>
<template v-else-if="creators.length === 0">
<div class="type-title-sm">Creator</div>
<div class="type-title-sm">Twórca</div>
<p class="type-body">
<span>{{ author }}</span>
</p>
<div class="type-title-sm">Verifier</div>
<div class="type-title-sm">Weryfikator</div>
<p class="type-body">
<span>{{ verifier }}</span>
</p>
</template>
<template v-else>
<div class="type-title-sm">Creators</div>
<div class="type-title-sm">Twórcy</div>
<p class="type-body">
<template v-for="(creator, index) in creators" :key="\`creator-\$\{creator\}\`">
<span >{{ creator }}</span
><span v-if="index < creators.length - 1">, </span>
</template>
</p>
<div class="type-title-sm">Verifier</div>
<div class="type-title-sm">Weryfikator</div>
<p class="type-body">
<span>{{ verifier }}</span>
</p>
</template>
<div class="type-title-sm">Publisher</div>
<div class="type-title-sm">Wydawca</div>
<p class="type-body">
<span>{{ author }}</span>
</p>
Expand Down
43 changes: 14 additions & 29 deletions js/pages/List.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,21 @@ export default {
<iframe class="video" id="videoframe" :src="video" frameborder="0"></iframe>
<ul class="stats">
<li>
<div class="type-title-sm">Points when completed</div>
<div class="type-title-sm">Punkty gdy ukończone</div>
<p>{{ score(selected + 1, 100, level.percentToQualify) }}</p>
</li>
<li>
<div class="type-title-sm">ID</div>
<div class="type-title-sm">Identyfikator</div>
<p>{{ level.id }}</p>
</li>
<li>
<div class="type-title-sm">Password</div>
<p>{{ level.password || 'Free to Copy' }}</p>
<div class="type-title-sm">Hasło</div>
<p>{{ level.password || 'Bez hasła' }}</p>
</li>
</ul>
<h2>Records</h2>
<p v-if="selected + 1 <= 75"><strong>{{ level.percentToQualify }}%</strong> or better to qualify</p>
<p v-else-if="selected +1 <= 150"><strong>100%</strong> or better to qualify</p>
<h2>Rekordy</h2>
<p v-if="selected + 1 <= 75"><strong>{{ level.percentToQualify }}%</strong> lub więcej, by się dostać</p>
<p v-else-if="selected +1 <= 150"><strong>100%</strong> lub więcej, by się dostać</p>
<p v-else>This level does not accept new records.</p>
<table class="records">
<tr v-for="record in level.records" class="record">
Expand All @@ -71,7 +71,7 @@ export default {
<img v-if="record.mobile" :src="\`/assets/phone-landscape\${store.dark ? '-dark' : ''}.svg\`" alt="Mobile">
</td>
<td class="hz">
<p>{{ record.hz }}Hz</p>
<p>{{ record.hz }}kns</p>
</td>
</tr>
</table>
Expand All @@ -86,10 +86,10 @@ export default {
<p class="error" v-for="error of errors">{{ error }}</p>
</div>
<div class="og">
<p class="type-label-md">Website layout made by <a href="https://tsl.pages.dev/" target="_blank">TheShittyList</a></p>
<p class="type-label-md">Baza strony zrobiona przez <a href="https://tsl.pages.dev/" target="_blank">TheShittyList</a></p>
</div>
<template v-if="editors">
<h3>List Editors</h3>
<h3>Edytorzy Listy</h3>
<ol class="editors">
<li v-for="editor in editors">
<img :src="\`/assets/\${roleIconMap[editor.role]}\${store.dark ? '-dark' : ''}.svg\`" :alt="editor.role">
Expand All @@ -98,30 +98,15 @@ export default {
</li>
</ol>
</template>
<h3>Submission Requirements</h3>
<h3>Wymagania Publikacyjne</h3>
<p>
Achieved the record without using hacks (however, FPS bypass is allowed, up to 360fps)
- Upublikuj rekord poziomu bez oszustw (kns przejście jest dozwolone do 480kns. Modyfikacja KPK nie jest)
</p>
<p>
Achieved the record on the level that is listed on the site - please check the level ID before you submit a record
- Poziom musi mieć polskich twórców i osobę go weryfikującą.
</p>
<p>
Have either source audio or clicks/taps in the video. Edited audio only does not count
</p>
<p>
The recording must have a previous attempt and entire death animation shown before the completion, unless the completion is on the first attempt. Everyplay records are exempt from this
</p>
<p>
The recording must also show the player hit the endwall, or the completion will be invalidated.
</p>
<p>
Do not use secret routes or bug routes
</p>
<p>
Do not use easy modes, only a record of the unmodified level qualifies
</p>
<p>
Once a level falls onto the Legacy List, we accept records for it for 24 hours after it falls off, then afterwards we never accept records for said level
- Wszytko wypowiedzane w filmie musi być po polsku.
</p>
</div>
</div>
Expand Down

0 comments on commit a21f42a

Please sign in to comment.