Skip to content

Commit d378f19

Browse files
committed
🔖 Update versions to 0.1.1
1 parent 820ad53 commit d378f19

File tree

6 files changed

+22
-20
lines changed

6 files changed

+22
-20
lines changed

‎backend/Cargo.lock‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎backend/Cargo.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "app"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "A Semantic File Search Desktop Application"
55
authors = ["pAkalpa"]
66
license = ""

‎backend/tauri.conf.json‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "File Sense",
11-
"version": "0.1.0"
11+
"version": "0.1.1"
1212
},
1313
"tauri": {
1414
"systemTray": {
@@ -106,8 +106,8 @@
106106
"visible": false
107107
},
108108
{
109-
"width": 400,
110-
"height": 200,
109+
"width": 330,
110+
"height": 128,
111111
"decorations": false,
112112
"url": "splashscreen.html",
113113
"label": "splashscreen",

‎frontend/package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "frontend",
33
"private": true,
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

‎frontend/public/splashscreen.html‎

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,9 @@
202202

203203
.home-container {
204204
width: 100%;
205+
height: 100%;
205206
display: flex;
206207
overflow: auto;
207-
min-height: 100vh;
208208
align-items: center;
209209
border-color: var(--dl-color-gray-black);
210210
border-width: 1px;
@@ -213,21 +213,22 @@
213213
background-color: #fff;
214214
}
215215
.home-container1 {
216-
flex: 0 0 auto;
217-
width: 400px;
218-
height: 200px;
216+
flex: 0 0 100%;
217+
width: 100%;
218+
height: 100%;
219219
display: flex;
220220
align-items: center;
221221
border-color: #000000;
222222
border-style: solid;
223223
border-width: 2px;
224-
border-radius: var(--dl-radius-radius-radius8);
225224
flex-direction: column;
226225
justify-content: center;
227226
background-color: #18181a;
228227
}
229228
.home-container2 {
230-
flex: 0 0 auto;
229+
flex: 0 0 100%;
230+
margin-top: 2%;
231+
margin-bottom: 2%;
231232
width: auto;
232233
height: 100%;
233234
display: flex;
@@ -237,9 +238,9 @@
237238
}
238239
.home-r1 {
239240
gap: var(--dl-space-space-unit);
240-
flex: 0 0 auto;
241+
flex: 0 0 100%;
241242
width: var(--dl-size-size-xlarge);
242-
height: auto;
243+
height: 100%;
243244
display: flex;
244245
align-items: center;
245246
justify-content: center;
@@ -251,7 +252,7 @@
251252
.home-container3 {
252253
flex: 0 0 auto;
253254
width: auto;
254-
height: auto;
255+
height: 100%;
255256
display: flex;
256257
align-items: flex-end;
257258
flex-direction: column;
@@ -278,11 +279,12 @@
278279
.home-r2 {
279280
flex: 0 0 auto;
280281
width: 100%;
282+
padding-right: 1%;
281283
height: auto;
282284
display: flex;
283285
margin-top: var(--dl-space-space-halfunit);
284286
align-items: flex-start;
285-
justify-content: flex-start;
287+
justify-content: flex-end;
286288
}
287289
.home-text3 {
288290
color: rgb(255, 255, 255);
@@ -294,7 +296,7 @@
294296
.home-r3 {
295297
flex: 0 0 auto;
296298
width: 100%;
297-
height: auto;
299+
height: 100%;
298300
display: flex;
299301
margin-top: var(--dl-space-space-halfunit);
300302
align-items: flex-start;
@@ -314,11 +316,11 @@
314316
<img alt="image" src="icon-200h.png" class="home-image" />
315317
<div class="home-container3">
316318
<h1 class="home-text">File Sense</h1>
317-
<span class="home-text1">Semantic File Search</span>
319+
<span class="home-text1">Semantic Image Search</span>
318320
<span class="home-text2">by Pasindu Akalpa</span>
319321
</div>
320322
</div>
321-
<div class="home-r2"><h1 class="home-text3">v. 1.0</h1></div>
323+
<div class="home-r2"><h1 class="home-text3">v0.1.1</h1></div>
322324
<div class="home-r3">
323325
<img
324326
src="infinity-1.3s-200px-200h.gif"

‎package.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "file-sense",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "A Semantic File Search Desktop Application",
55
"scripts": {
66
"postinstall": "node py-install.js && cd frontend && yarn",

0 commit comments

Comments
 (0)