Skip to content

Commit

Permalink
Merge pull request #44 from KunalSin9h/load
Browse files Browse the repository at this point in the history
fix: image not showing on loading screen
  • Loading branch information
KunalSin9h authored Oct 21, 2023
2 parents b38b337 + a73563a commit 64b7269
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 8 deletions.
21 changes: 21 additions & 0 deletions assets/brand/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"name": "secops",
"private": true,
"scripts": {
"build": "tsc && vite build",
"build": "tsc \u0026\u0026 vite build",
"dev": "vite",
"format": "prettier --write \"src/**/*.{js,ts,json,md,jsx,tsx,mdx}\"",
"format:check": "prettier --check \"src/**/*.{js,ts,json,md,jsx,tsx,mdx}\"",
Expand All @@ -58,5 +58,5 @@
"preview": "vite preview",
"tauri": "tauri"
},
"version": "0.11.0"
"version": "0.11.1"
}
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ edition = '2021'
license = 'MIT'
name = 'secops'
repository = 'https://github.com/kunalsin9h/secops'
version = '0.11.0'
version = '0.11.1'

[profile]
[profile.ci]
Expand Down
6 changes: 3 additions & 3 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "Secops",
"version": "0.11.0"
"version": "0.11.1"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -72,11 +72,11 @@
},
{
"center": true,
"decorations": false,
"decorations": true,
"height": 350,
"label": "loading",
"resizable": false,
"title": "Secops | Loading...",
"title": "Secops Starting...",
"url": "loading.html",
"width": 300
}
Expand Down
26 changes: 24 additions & 2 deletions src/screens/loading.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=device-width, initial-scale=1.0" />
<title>Secops | Loading...</title>
<title>Secops Starting...</title>

<style>
html {
Expand Down Expand Up @@ -60,7 +60,29 @@
<body>
<div class="main">
<div class="brand">
<img src="https://tiddi.kunalsin9h.com/3xvLH9M" alt="Secops Logo"/>
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="60px" height="60px" viewBox="0 0 501.000000 498.000000"
preserveAspectRatio="xMidYMid meet">

<g transform="translate(0.000000,498.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M2320 4950 c-829 -70 -1555 -538 -1956 -1263 -95 -172 -185 -400
-233 -593 -53 -209 -65 -325 -65 -594 0 -195 3 -275 16 -340 9 -47 19 -107 23
-134 9 -66 39 -179 82 -311 249 -766 891 -1374 1676 -1589 239 -66 360 -80
657 -80 244 0 277 2 410 26 407 75 738 218 1061 459 475 354 813 889 928 1466
43 215 55 355 48 582 -9 320 -55 543 -173 841 -265 667 -836 1198 -1529 1421
-115 37 -286 75 -417 94 -130 18 -403 26 -528 15z m340 -1225 c527 -64 945
-444 1066 -970 15 -63 19 -119 18 -265 0 -174 -2 -192 -32 -303 -118 -445
-470 -789 -922 -897 -131 -31 -332 -38 -464 -16 -837 143 -1292 1035 -910
1784 189 372 550 625 959 670 116 13 157 13 285 -3z"/>
<path d="M2424 3131 c-237 -38 -439 -207 -514 -431 -31 -91 -38 -244 -16 -342
68 -308 339 -512 655 -495 170 9 302 68 423 189 74 75 136 186 163 293 19 76
19 222 -1 305 -41 176 -173 341 -335 418 -46 22 -104 44 -129 50 -66 16 -187
22 -246 13z"/>
</g>
</svg>

<!-- <img src="https://tiddi.kunalsin9h.com/3xvLH9M" alt="Secops Logo"/> -->
<span class="name">Secops</span>
</div>
<div class="loading">
Expand Down

0 comments on commit 64b7269

Please sign in to comment.