Skip to content
This repository was archived by the owner on Mar 8, 2026. It is now read-only.

Commit ccb4c78

Browse files
committed
file moves, credits add and css, version text,
1 parent c546484 commit ccb4c78

7 files changed

Lines changed: 104 additions & 40 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,15 @@ body {
8282

8383
.frame > .textYap {
8484
text-align: center;
85+
}
86+
87+
#logs {
88+
font-family: 'Courier New', Courier, monospace;
89+
font-size: 0.9em;
90+
max-width: 100%;
91+
overflow-x: auto;
92+
93+
user-select: text;
94+
-webkit-user-select: text;
95+
cursor: text;
8596
}

src/front/main/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<link rel="stylesheet" href="popup/popupStyle.css">
2+
<link rel="stylesheet" href="cacaStyle.css">
23

34
<script>
45
let selectedPath = null;

src/front/main/popup/credits.html

Lines changed: 68 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,64 @@
11
<div id="creditsPopup" class="popup-overlay" onclick="if(event.target == this) closePopup('creditsPopup')">
22
<div class="popup-content">
3-
<h3>Credits</h3>
3+
<div class="overflow" style="height: 375px;">
4+
<h2>Credits</h2>
45

5-
<a href="https://codedave.pages.dev/">
6-
<div class="item">
7-
<img src="https://codedave.pages.dev/assets/misc/Daveberry%20Wave.png" width="50" height="50" alt="Daveberry"/>
8-
9-
<div class="info">
10-
<span class="bigText">Daveberry</span> <br/>
11-
<span class="role"> Lead Dev </span> <br/>
12-
<span> The guy who did everything in this native app </span>
6+
<a href="https://codedave.pages.dev/" target="_blank">
7+
<div class="item">
8+
<img src="https://codedave.pages.dev/assets/misc/Daveberry%20Wave.png" width="50" height="50" alt="Daveberry"/>
9+
10+
<div class="info">
11+
<span class="bigText">Daveberry</span> <br/>
12+
<span class="role"> Lead Dev </span> <br/>
13+
<span> The guy who did everything in this native app </span>
14+
</div>
15+
</div>
16+
</a>
17+
18+
<a href="https://runyra.neocities.org/" target="_blank">
19+
<div class="item">
20+
<img src="https://runyra.neocities.org/runa.png" width="50" height="50" alt="Runyra" class="circleProfile"/>
21+
22+
<div class="info">
23+
<span class="bigText">Runyra</span> <br/>
24+
<span class="role"> Lead Dev </span> <br/>
25+
<span> Basically nothing, but working on the Vencord/Equicord plugin in discord.</span>
26+
</div>
1327
</div>
14-
</div>
15-
</a>
28+
</a>
1629

17-
<a href="https://runyra.neocities.org/">
18-
<div class="item">
19-
<img src="https://runyra.neocities.org/runa.png" width="50" height="50" alt="Runyra" class="circleProfile"/>
30+
<h2 style="padding-top: 10px;">Service Providers</h2>
31+
32+
<a href="https://catbox.moe/" target="_blank">
33+
<div class="item">
34+
<div class="info">
35+
<span class="bigText">Catbox</span> <br/>
36+
<span class="role"> File Host </span> <br/>
37+
<span> Sickass file hosting </span>
38+
</div>
39+
</div>
40+
</a>
41+
42+
<a href="https://litterbox.catbox.moe/" target="_blank">
43+
<div class="item">
44+
<div class="info">
45+
<span class="bigText">Litterbox</span> <br/>
46+
<span class="role"> File Host </span> <br/>
47+
<span> Sickass file hosting 2 </span>
48+
</div>
49+
</div>
50+
</a>
2051

21-
<div class="info">
22-
<span class="bigText">Runyra</span> <br/>
23-
<span class="role"> Lead Dev </span> <br/>
24-
<span> Basically nothing, but working on the Vencord/Equicord plugin in discord.</span>
52+
<a href="https://buzzheavier.com/" target="_blank">
53+
<div class="item">
54+
<div class="info">
55+
<span class="bigText">BuzzHeavier</span> <br/>
56+
<span class="role"> File Host </span> <br/>
57+
<span> Sickass file hosting 3 </span>
58+
</div>
2559
</div>
26-
</div>
27-
</a>
60+
</a>
61+
</div>
2862

2963
<div class="button secondary" onclick="closePopup('creditsPopup')">Close</div>
3064
</div>
@@ -33,6 +67,7 @@ <h3>Credits</h3>
3367
<style>
3468
.item {
3569
background-color: var(--elemColor);
70+
/* box-shadow: 0px 5px 5px var(--elemColor); */
3671
border-radius: 8px;
3772

3873
width: auto;
@@ -62,4 +97,17 @@ <h3>Credits</h3>
6297
.role {
6398
font-weight: bold;
6499
}
100+
101+
.bar {
102+
height: 3px;
103+
margin: 10px;
104+
border-radius: 10px;
105+
106+
background-color: var(--elemColor);
107+
/* box-shadow: 0px 5px 5px var(--elemColor); */
108+
border-radius: 10px;
109+
110+
margin-top: 10px;
111+
margin-bottom: 10px;
112+
}
65113
</style>

src/front/main/popup/popupStyle.css

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,36 @@
44
left: 0;
55
width: 100%;
66
height: 100%;
7+
78
background: rgba(0, 0, 0, 0.4);
9+
810
display: none;
911
justify-content: center;
1012
align-items: center;
13+
1114
z-index: 1000;
1215
transition: all 0.3s ease;
1316
}
1417

1518
.popup-content {
1619
background: var(--frameColor);
20+
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
21+
1722
padding: 30px;
1823
border-radius: 8px;
1924
text-align: center;
20-
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
2125
width: 300px;
26+
2227
animation: fadeIn 0.3s ease-out;
2328
}
2429

30+
.popup-content .overflow {
31+
max-height: 80vh;
32+
overflow-y: auto;
33+
scrollbar-width: thin;
34+
scrollbar-color: var(--elemColor) var(--frameColor);
35+
}
36+
2537
@keyframes fadeIn {
2638
from {
2739
opacity: 0;
@@ -37,6 +49,7 @@
3749
.popup-content h3 {
3850
margin-top: 0;
3951
margin-bottom: 20px;
52+
4053
color: #fff;
4154
font-family: 'Outfit', sans-serif;
4255
font-weight: 600;
@@ -51,16 +64,4 @@
5164

5265
.secondary {
5366
margin-top: 20px !important;
54-
}
55-
56-
#logs {
57-
font-family: 'Courier New', Courier, monospace;
58-
font-size: 0.9em;
59-
border-radius: 8px;
60-
max-width: 100%;
61-
overflow-x: auto;
62-
63-
user-select: text;
64-
-webkit-user-select: text;
65-
cursor: text;
6667
}

src/front/main/popup/settings.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
<div class="popup-content">
33
<h3>Settings</h3>
44
<p>Coming soon...</p>
5+
<p>EST: Probably whenever I'm motivated to do it.</p>
6+
<span style="color: gray; font-size: 12px;">hint hint: gift me something and I'll do it faster 👀</span>
57
<div class="button secondary" onclick="closePopup('settingsPopup')">Close</div>
68
</div>
79
</div>

src/front/window.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
from src.back.system.contact import API
77

88
def startUp(debugMode):
9-
def loadCSS(window):
10-
whereCss = os.path.join(os.path.dirname(__file__), "cacaStyle.css")
11-
with open(whereCss, "r") as f:
12-
css = f.read()
13-
window.load_css(css)
9+
# def loadCSS(window):
10+
# whereCss = os.path.join(os.path.dirname(__file__), "cacaStyle.css")
11+
# with open(whereCss, "r") as f:
12+
# css = f.read()
13+
# window.load_css(css)
1414

1515
here = os.path.join(os.path.dirname(__file__), "main", "index.html")
1616
print.debug(f"URL for HTTP is at {here}")
@@ -31,7 +31,7 @@ def loadCSS(window):
3131

3232
print.debug(f"Using icon at: {iconPath}")
3333

34-
window = wv.create_window(
34+
wv.create_window(
3535
title="Send Your Files",
3636
url=here,
3737
js_api=API(),
@@ -40,7 +40,7 @@ def loadCSS(window):
4040
height=600,
4141
)
4242

43-
window.events.loaded += loadCSS
43+
# window.events.loaded += loadCSS
4444
wv.start(
4545
http_server=True,
4646
private_mode=True,

version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.1.1

0 commit comments

Comments
 (0)