Skip to content

Commit

Permalink
beta.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendonovich committed Nov 14, 2024
1 parent 9f53701 commit 8763db6
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "desktop"
version = "0.3.0-beta.9-audio-rc"
version = "0.3.0-beta.9"
description = "Beautiful, shareable screen recordings."
authors = ["you"]
edition = "2021"
Expand Down
10 changes: 6 additions & 4 deletions apps/desktop/src/routes/(window-chrome)/setup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,11 @@ export default function () {
setInitialCheck(false);
};

const [showStartup, showStartupActions] = createResource(
() => true
// generalSettingsStore.get().then((s) => !s?.hasCompletedStartup)
const [showStartup, showStartupActions] = createResource(() =>
generalSettingsStore.get().then((s) => {
if (s === undefined) return true;
return !s.hasCompletedStartup;
})
);

return (
Expand Down Expand Up @@ -441,7 +443,7 @@ function Startup(props: { onClose: () => void }) {
${isLogoAnimating() ? "logo-bounce" : ""}`}
/>
</div>
<h1 class="text-5xl md:text-5xl font-bold font-medium text-gray-50 mb-4 drop-shadow-[0_0_20px_rgba(0,0,0,0.2)]">
<h1 class="text-5xl md:text-5xl font-bold text-gray-50 mb-4 drop-shadow-[0_0_20px_rgba(0,0,0,0.2)]">
Welcome to Cap
</h1>
<p class="text-2xl text-gray-50/70 max-w-md mx-auto drop-shadow-[0_0_20px_rgba(0,0,0,0.2)]">
Expand Down
14 changes: 14 additions & 0 deletions apps/web/content/changelog/15.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: Performance + Audio improvements and more
app: Cap Desktop
publishedAt: "2024-11-14"
version: 0.3.0-beta.9
image:
---

- High performance screen recording - >30fps recording coming soon!
- Mic level indicator
- Stereo audio support
- Switch to native window decorations
- New welcome screen on first launch
- Fixed the camera preview disappearing when resizing on external displays

1 comment on commit 8763db6

@vercel
Copy link

@vercel vercel bot commented on 8763db6 Nov 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.