diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 0000000..d057b21 --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,4 @@ +{ + "tabWidth": 4, + "trailingComma": "es5" +} diff --git a/bun.lockb b/bun.lockb index bb767f0..15c2e30 100644 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 23e7a35..3b1e2e7 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ }, "devDependencies": { "@astrojs/react": "^3.3.2", + "prettier": "3.3.3", "react": "^18.3.1", "react-dom": "^18.3.1" } diff --git a/src/components/FAQ.jsx b/src/components/FAQ.jsx index 3541153..f2d21f0 100644 --- a/src/components/FAQ.jsx +++ b/src/components/FAQ.jsx @@ -81,6 +81,16 @@ const FAQData = [ }, ], }, + { + question: "How do I run this on my Linux distribution?", + answer: "If you have a compatible Linux setup, then qsv pro should work as intended from the AppImage. You may need to change the AppImage file's permission to be executable by running the 'chmod +x ' command where 'AppImage path' is the path to your AppImage file. Then you may attempt running the AppImage file. If you get a FUSE error, please visit the documentation listed below to install FUSE version 2 for your system.", + links: [ + { + label: "AppImage/AppImageKit FUSE wiki article", + url: "https://github.com/AppImage/AppImageKit/wiki/FUSE", + }, + ], + }, { question: "Is there a light theme?", answer: "Yes, you may change the theme with the sun/moon icon on the navigation panel of qsv pro.",