Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 8 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
# QuecManager BETA 2.3.6 Changelog
# QuecManager BETA 2.3.8 Changelog

1. Merged Tailscale and WebSocat fixes
2. Refactored speedtest to use websocat
3. Improved speedtest UI
3. Fixed merged scs feature
4. Added animation to theme toggler
5. Added Tracking Area Code
6. Added New Feature: Connection Monitoring Alerts. This feature sends an automated email once there was a disconnect happened.
7. Added alert dialog for accepting SSL certificate for wss
8. Added back IPs and DNS to data to home
9. Added preferred temperature measurement unit
10. Improved uci usage for preferred settings
11.
1. Fixed profile dialog script which was caused by an incorrect expected uci entries
2. Fixed memory storage card's localstorage logic
3. Fixed home-traffic parsing for SA network mode
4. Added force http to https settings
5. Added minor UI changes for features' title and descriptions
6. Changed speedtest puffer color to match the theme
7. Added FPLMN Settings to help users clear forbidden network list

Note: Using https is now recommended
61 changes: 26 additions & 35 deletions app/dashboard/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,40 +70,31 @@ const AboutPage = () => {
};

return (
<Card>
<CardHeader>
<CardTitle>QuecManager</CardTitle>
<div className="grid xl:gap-y-10 gap-y-8 gap-4">
<div className="grid gap-4">
<div className="flex flex-row gap-2 justify-between items-center">
<div className="flex flex-row items-center gap-x-2">
<div className="container mx-auto p-6">
<div className="mb-6">
<h1 className="text-3xl font-bold mb-2">About QuecManager</h1>
<p className="text-muted-foreground">
Learn more about QuecManager and the team behind it.
</p>
</div>
<div className="grid lg:grid-cols-2 grid-cols-1 grid-flow-row gap-8">
<Card>
<CardHeader>
<div className="flex items-center justify-between">
<div className="space-y-1">
<CardTitle>Device Technical Details</CardTitle>
<CardDescription>
What is QuecManager and how it can help you.
View technical details of your device.
</CardDescription>
</div>
<div className="flex flex-row items-center gap-x-2">
<Button onClick={() => setHideSensitiveData((prev) => !prev)}>
{hideSensitiveData ? (
<Eye className="xl:size-6 size-5" />
) : (
<EyeOff className="xl:size-6 size-5" />
)}
<span className="hidden md:block">
{hideSensitiveData ? "Show" : "Hide"} Sensitive Data
</span>
</Button>
</div>
<Button onClick={() => setHideSensitiveData((prev) => !prev)}>
{hideSensitiveData ? (
<Eye className="xl:size-6 size-5" />
) : (
<EyeOff className="xl:size-6 size-5" />
)}
</Button>
</div>
</div>
</div>
</CardHeader>
<CardContent className="grid lg:grid-cols-2 grid-cols-1 grid-flow-row gap-8">
<Card>
<CardHeader>
<CardTitle>Device Technical Details</CardTitle>
<CardDescription>
View technical details of your device.
</CardDescription>
</CardHeader>
<CardContent>
<div className="mb-4">
Expand Down Expand Up @@ -476,11 +467,11 @@ const AboutPage = () => {
</CardContent>
</Card>
</div>
</CardContent>
<CardFooter className="flex justify-center">
<p>QuecManager © 2024 - For Personal Use Only. All rights reserved.</p>
</CardFooter>
</Card>
</div>
<footer className="flex justify-center mt-6">
<p className="font-semibold">QuecManager © 2024 - For Personal Use Only. All rights reserved.</p>
</footer>
</div>
);
};

Expand Down
Loading