Skip to content

Commit 2f701ea

Browse files
authoredDec 22, 2024
fix(logo): fix logo path in compilation (#129)
* fix(logo): fix logo path in compile * chore: bump versions
1 parent 2e82e27 commit 2f701ea

File tree

8 files changed

+90
-69
lines changed

8 files changed

+90
-69
lines changed
 

‎.changes/config.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"changeTags": {
44
"feat": "New Features",
55
"fix": "Bug Fixes",
6+
"hotfix": "Hot Fixes",
67
"perf": "Performance Improvements",
78
"chore": "Chores",
89
"refactor": "Refactors"

‎.changes/fix-logo.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"algohub": patch:hotfix
3+
---
4+
5+
Fix logo paths in `index.html` and `SplashScreen.vue`.

‎index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/acm-light.png" />
5+
<link rel="icon" type="image/svg+xml" href="/algohub-night.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>AlgoHub</title>
88
</head>

‎package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"start": "tailwindcss -i ./input.css -o ./src/assets/tailwind.css --watch",
88
"dev": "farm",
99
"dev:vite": "vite",
10+
"dev:local": "cross-env LOCAL=true farm",
1011
"build": "farm build",
1112
"build:vite": "vue-tsc --noEmit && vite build",
1213
"preview": "vite preview",
@@ -38,8 +39,8 @@
3839
},
3940
"devDependencies": {
4041
"@farmfe/cli": "^1.0.4",
41-
"@farmfe/core": "=1.4.7",
42-
"@farmfe/js-plugin-postcss": "^1.10.0",
42+
"@farmfe/core": "^1.6.0",
43+
"@farmfe/js-plugin-postcss": "^1.11.0",
4344
"@farmfe/plugin-worker": "^0.0.6",
4445
"@primevue/auto-import-resolver": "^4.2.5",
4546
"@tauri-apps/cli": "^2.1.0",
@@ -50,7 +51,8 @@
5051
"archons": "^0.2.5",
5152
"core-js": "^3.39.0",
5253
"covector": "^0.12.3",
53-
"tailwindcss": "^3.4.16",
54+
"cross-env": "^7.0.3",
55+
"tailwindcss": "^3.4.17",
5456
"typescript": "^5.7.2",
5557
"unplugin-vue-components": "^0.27.5",
5658
"vite": "^5.4.11",

‎pnpm-lock.yaml

+73-63
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎scripts/release-aur.mjs

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ Type=Application
4242
}
4343
`;
4444

45+
/**
46+
* @param {import("fs").PathLike} filePath
47+
*/
4548
function generateSHA256(filePath) {
4649
return new Promise((resolve, reject) => {
4750
const hash = createHash("sha256");

‎src-tauri/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/components/SplashScreen.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ onMounted(async () => {
7171
<div @click="onChange" class="bg-gray-900 flex flex-col items-center justify-center h-full w-full">
7272
<div class="flex flex-col items-center justify-center h-full w-full max-w-[700px] gap-[2em]">
7373
<div class="flex flex-col items-center justify-center">
74-
<img src="/acm-light.png" class="w-48" />
74+
<img src="/algohub-day.svg" class="w-48" />
7575
<div class=" text-white text-center font-bold text-4xl w-full">AlgoHub
7676
</div>
7777
</div>

0 commit comments

Comments
 (0)