1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-29 16:07:40 +01:00

Fix conflicts lol

This commit is contained in:
Cooper Ransom 2024-03-03 15:30:53 -05:00
commit d7527212bd
4 changed files with 42 additions and 20 deletions

22
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: GitlabSync
on:
- push
- delete
jobs:
sync:
runs-on: ubuntu-latest
name: Git Repo Sync
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: wangchucheng/git-repo-sync@v0.1.0
with:
# Such as https://github.com/wangchucheng/git-repo-sync.git
target-url: https://gitlab.com/itzCozi/sudo-flix
# Such as wangchucheng
target-username: itzCozi
# You can store token in your project's 'Setting > Secrets' and reference the name here. Such as ${{ secrets.ACCESS\_TOKEN }}
target-token: glpat-y24SW9CqLWRtmkWGFAez

View file

@ -114,17 +114,17 @@
"stopEditing": "Stop editing" "stopEditing": "Stop editing"
}, },
"search": { "search": {
"allResults": "That's all we have!", "allResults": "That's all we have...",
"failed": "Failed to find media, try again!", "failed": "Failed to find media, try again!",
"loading": "Loading...", "loading": "Loading...",
"noResults": "We couldn't find anything!", "noResults": "We couldn't find anything :(",
"placeholder": { "placeholder": {
"default": "What do you want to watch?", "default": "What do you want to watch?",
"extra": [ "extra": [
"What do you want to explore?", "What do you want to stream?",
"What's on your watchlist?", "Sudo-Flix is the best site ever!",
"What's your favorite movie?", "What's on your watchlist today?",
"What's your favorite series?" "How was your day?"
] ]
}, },
"sectionTitle": "Search results" "sectionTitle": "Search results"

View file

@ -154,7 +154,7 @@ function ParticlesCanvas() {
const day = date.getDate(); const day = date.getDate();
if ( if (
(month === 11 && day >= 24 && day <= 26) || (month === 11 && day >= 24 && day <= 26) ||
Math.random() < 0.091 // 9.1% Math.random() < 0.051 // 5.1%
) { ) {
imageOverride = [ imageOverride = [
{ {
@ -174,7 +174,7 @@ function ParticlesCanvas() {
const day2 = date.getDate(); const day2 = date.getDate();
if ( if (
(month2 === 9 && day2 >= 29 && day2 <= 31) || (month2 === 9 && day2 >= 29 && day2 <= 31) ||
Math.random() < 0.09 // 9% Math.random() < 0.05 // 5%
) { ) {
imageOverride = [ imageOverride = [
{ {
@ -190,7 +190,7 @@ function ParticlesCanvas() {
} }
// Fish easter egg // Fish easter egg
const shouldShowFishie = Math.random() < 0.4; // 40% const shouldShowFishie = Math.random() < 0.1; // 10%
if (shouldShowFishie) { if (shouldShowFishie) {
imageOverride = [ imageOverride = [
{ {
@ -208,7 +208,7 @@ function ParticlesCanvas() {
// Weed easter egg // Weed easter egg
const month3 = date.getMonth() + 1; const month3 = date.getMonth() + 1;
const day3 = date.getDate(); const day3 = date.getDate();
const shouldShowZa = (month3 === 4 && day3 === 20) || Math.random() < 0.35; // 35% const shouldShowZa = (month3 === 4 && day3 === 20) || Math.random() < 0.25; // 25%
if (shouldShowZa) { if (shouldShowZa) {
imageOverride = [ imageOverride = [
{ {
@ -220,7 +220,7 @@ function ParticlesCanvas() {
} }
// Kitty easter egg // Kitty easter egg
const shouldShowCat = Math.random() < 0.25; // 25% const shouldShowCat = Math.random() < 0.2; // 20%
if (shouldShowCat) { if (shouldShowCat) {
imageOverride = [ imageOverride = [
{ {
@ -232,7 +232,7 @@ function ParticlesCanvas() {
} }
// Movie & popcorn easter egg // Movie & popcorn easter egg
const shouldShowParaphernalia = Math.random() < 0.2; // 20% const shouldShowParaphernalia = Math.random() < 0.3; // 30%
if (shouldShowParaphernalia) { if (shouldShowParaphernalia) {
imageOverride = [ imageOverride = [
{ {
@ -248,7 +248,7 @@ function ParticlesCanvas() {
} }
// Chicken easter egg // Chicken easter egg
const shouldShow4thDecor = Math.random() < 0.1; // 10% const shouldShow4thDecor = Math.random() < 0.06; // 6%
if (shouldShow4thDecor) { if (shouldShow4thDecor) {
imageOverride = [ imageOverride = [
{ {
@ -268,7 +268,7 @@ function ParticlesCanvas() {
} }
// Dev easter egg // Dev easter egg
const shouldShowCode = Math.random() < 0.05; // 5% const shouldShowCode = Math.random() < 0.03; // 3%
if (shouldShowCode) { if (shouldShowCode) {
imageOverride = [ imageOverride = [
{ {

View file

@ -105,20 +105,20 @@ function App() {
useHistoryListener(); useHistoryListener();
useOnlineListener(); useOnlineListener();
const { t } = useTranslation(); const { t } = useTranslation();
const [showDowntime, setShowDowntime] = useState(true); const maintenance = false;
const [showDowntime, setShowDowntime] = useState(maintenance);
const handleButtonClick = () => { const handleButtonClick = () => {
setShowDowntime(false); setShowDowntime(false);
}; };
useEffect(() => { useEffect(() => {
const token = localStorage.getItem("downtimeToken"); const sessionToken = sessionStorage.getItem("downtimeToken");
if (token) { if (!sessionToken) {
setShowDowntime(true); setShowDowntime(true);
} else { sessionStorage.setItem("downtimeToken", "true");
localStorage.setItem("downtimeToken", "true");
} }
}, []); }, [setShowDowntime]);
return ( return (
<Layout> <Layout>