Skip to content

Commit b2d4a5f

Browse files
committed
chore: update version to 0.2.0 and improve theme styles
1 parent ea804c7 commit b2d4a5f

File tree

7 files changed

+9
-10
lines changed

7 files changed

+9
-10
lines changed

src-tauri/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.

src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ function setupUpdateManagement() {
537537
}
538538
}
539539
}
540-
540+
541541
// Imposta la versione corrente
542542
setCurrentVersion();
543543

src/managers/update-manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ export class UpdateManager {
250250
compareVersions(a, b) {
251251
try {
252252
console.log('🔍 Confronto versioni:', { a, b });
253-
253+
254254
// Pulisci le versioni da prefissi e suffissi non numerici
255255
const cleanA = this.cleanVersionString(a);
256256
const cleanB = this.cleanVersionString(b);

src/styles/layout.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/* Default body background - neutral for all pages */
22
body {
3-
background-color: #f6f6f6;
43
transition: background-color 0.3s ease;
54
margin: 0;
65
padding: 0;

src/styles/shared-components.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
[data-theme="dark"] .base-card,
5454
[data-theme="dark"] .base-card-compact,
5555
[data-theme="dark"] .base-section {
56-
background: #1e293b;
57-
border-color: #334155;
56+
background: #212121;
57+
border-color: #313233;
5858
}
5959

6060
[data-theme="dark"] .stat-card {
@@ -87,8 +87,8 @@
8787
}
8888

8989
[data-theme="dark"] .sidebar-base {
90-
background: #1e293b;
91-
border-color: #334155;
90+
background: #212121;
91+
border-color: #313233;
9292
}
9393

9494
[data-theme="dark"] .row-base {

src/styles/variables.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/* Dark Theme Variables */
3232
[data-theme="dark"] {
3333
color: #e2e8f0;
34-
background-color: #0f172a;
34+
background-color: #1b1b1b;
3535

3636
/* Base Application Colors - dark versions */
3737
--accent-color: #f8fafc;

src/utils/theme-loader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ThemeLoader {
3939
// that gets updated by the build process or manually maintained
4040

4141
// This could be enhanced to use a build-time script that generates this list
42-
const knownThemes = [
42+
const knownThemes = [
4343
'espresso.css',
4444
'matrix.css',
4545
'pommodore64.css'

0 commit comments

Comments
 (0)