801f41e
Move audio dependency to dev
Mikayla Maki created
801f41e
Move audio dependency to dev
Mikayla Maki created
8b8bafe
Remove spurious audio depedency
Mikayla Maki created
594b6e8
collab 0.16.0
Mikayla Maki created
6a15ae9
v0.95.x dev
Joseph T. Lyons created
76873c5
Z-2276/Z-2275: Project & Branch switchers (#2662)
This PR adds project and branch switchers in top left corner. Release Notes: - Added a project & branch switcher under project name.
Nate Butler created
b80281e
cargo fmt
Piotr Osiewicz created
1baa135
Update project & git menus to be Toggleable<Interactive<ContainedText>>
Co-Authored-By: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com>
Nate Butler and Piotr Osiewicz created
de01fa1
Update collaboration sounds, add sounds to screensharing (#2679)
Updates all collab sounds, add screen sharing sounds. Release Notes: - Improved collaboration sounds for joining and leaving a call, muting and unmuting the mic. - Added a sound when you start and stop screen sharing.
Nate Butler created
0e0d78d
Do not render recent paths in toolbar's project switcher
Piotr Osiewicz created
ec47464
branch_list: Show match count on the right hand side of a header.
Co-authored-by: Antonio <antonio@zed.dev>
Piotr Osiewicz and Antonio created
85add26
Track regions instead of clicks.
Get rid of superfluous params in RenderParams related to hover & click state. Co-authored-by: Antonio <antonio@zed.dev>
Piotr Osiewicz and Antonio created
91a94d2
Simplify inlay map data (#2683)
Current logic does not need to access inlays by id in O(1), future dynamic hints would need to know which hint they hover at, but that will be done using binary search over the position's anchor we hover on; nothing else seems to need this HashMap in the near future. Because of that removal, no need to store `InlayId` apart from the `Inlay`, hence remove the `InlayProperties` struct entirely. This allows to eliminate a few generics along the way. Release Notes: - N/A
Kirill Bulatov created
cc88bff
Fix click-through behaviour of git panel
Co-authored-by: Antonio <antonio@zed.dev>
Piotr Osiewicz and Antonio created
d7f6b5e
Remove InlayProperties
Kirill Bulatov created
6ba1c30
Simplify inlay map data
Kirill Bulatov created
8b3b1a6
fixup! Remove stacks from branch list header
Piotr Osiewicz created
64b77bf
Remove stacks from branch list header
Co-authored-by: Antonio <antonio@zed.dev>
Piotr Osiewicz and Antonio created
5505ebf
Support `assistant: quote selection` on multibuffers (#2682)
Fixes https://linear.app/zed-industries/issue/Z-2430/assistant-quote-selection-does-not-work-in-multi-buffer Release Notes: - Added support for invoking `assistant: quote selection` (`cmd->`) when editing a multi-buffer.
Antonio Scandurra created
d5f0df9
Support `assistant: quote selection` on multibuffers
Antonio Scandurra created
1914037
Restore focus to previously focused view when dismissing a modal (#2680)
Fixes https://linear.app/zed-industries/issue/Z-2500/focus-is-moved-from-the-assistant-panel-when-opening-and-closing Release Notes: - Fixed a bug that caused modals (such as the command palette) to not restore focus when dismissing them.
Antonio Scandurra created
03a00df
Restore focus to previously focused view when dismissing a modal
Antonio Scandurra created
a8602b2
Add `Modal::has_focus` and introduce a `ModalHandle` trait object
Antonio Scandurra created
25564ea
Introduce a `WindowContext::focus` method that implies the window id
Antonio Scandurra created
a7ce602
Update collaboration sounds, add sounds to screensharing
Nate Butler created
31483db
Accept `null` as a valid action, to disable a keystroke (#2678)
Deals with https://github.com/zed-industries/community/issues/772
Closes
https://linear.app/zed-industries/issue/Z-1518/allow-keybindings-to-be-removed
Now, configuration like
```json5
[
{
"context": "Editor",
"bindings": {
"alt-v": null,
}
}
]
```
will make `alt+v` to print `√` instead of moving the caret one page up.
Release Notes:
- Added a way to disable keybindings with `null` value
Kirill Bulatov created
4c51ab8
Accept `null` as a valid action, to disable a keystroke
co-authored-by: Mikayla Maki <mikayla@zed.dev>
Kirill Bulatov and Mikayla Maki created
76af424
Rename `color_scheme` -> `theme` (#2677)
Just some theme tidying, renames some things to be more consistent with our planned naming conventions going forward. Release Notes: - N/A (No public facing changes)
Nate Butler created
48371ab
Remove PickerEvent::Dismiss emission from picker header
Piotr Osiewicz created
e9b34de
Fix click behaviour of vcs/project dropdowns
Piotr Osiewicz created
f461a70
Remove unused ts aliases
Nate Butler created
65dbb38
`color_scheme` -> `theme`
Nate Butler created
c5a42c3
Remove unused `color_scheme` field in the theme (#2676)
We removed the `theme_testbench` crate a while back - It seems like that was the only thing using the `color_scheme` field in the exported theme. Removing this from the theme removes something like 42k lines of generated JSON every time we build the theme (2k lines / 28% of the total lines per generated theme!) Release Notes: - N/A (No public facing changes)
Nate Butler created
a732b2e
Remove unused `color_scheme` field in the theme
I totally didn't mean to commit this right to main T_T
Nate Butler created
c409059
Revert "Remove unused `color_scheme` field in the theme"
This reverts commit 5a1476a1e58c43e64d051e5af9786d8edaa85088.
Nate Butler created
5a1476a
Remove unused `color_scheme` field in the theme
Nate Butler created
0b4c5db
Use theme store to pass `color_scheme` directly to components (#2675)
This PR adds a theme store to allow components to directly access the
theme without requiring it to be passed down as props every time it is
used.
So before, you might need to do something like `text(theme, "variant",
"hovered")`, you could now just call `text("variant", "hovered")`.
This also means that style_trees don't need to be called with a theme
either:
```ts
export default function app(): any {
const theme = useTheme()
return {
meta: {
name: theme.name,
is_light: theme.is_light,
},
command_palette: command_palette(),
contact_notification: contact_notification(),
// etc...
}
}
```
We do this by creating a zustand store to store the theme, and allow it
to be accessed with `useThemeStore.getState().theme`.
```ts
import { create } from "zustand"
import { ColorScheme } from "./color_scheme"
type ThemeState = {
theme: ColorScheme | undefined
setTheme: (theme: ColorScheme) => void
}
export const useThemeStore = create<ThemeState>((set) => ({
theme: undefined,
setTheme: (theme) => set(() => ({ theme })),
}))
export const useTheme = (): ColorScheme => {
const { theme } = useThemeStore.getState()
if (!theme) throw new Error("Tried to use theme before it was loaded")
return theme
}
```
Release Notes:
- N/A (No public facing changes)
Nate Butler created
8a5e704
Update a few more components
Nate Butler created
d5acfe8
Use theme store to pass `color_scheme` directly to components
Nate Butler created
f8316dd
Add sound effects to calls (#2673)
This PR adds joined, leaving, mute, and unmute sound effects to Zed. Release Notes: - Added joined, leaving, mute, and unmute sound effects (preview-only)
Mikayla Maki created
c700342
Guard against uninstantiated globals in tests
Mikayla Maki created
0e4c904
Add joined sound effect when new participants join the room
Mikayla Maki created
d212782
Add first-pass sound support to Zed
Mikayla Maki created
14eab4e
branch list: dismiss correct window on PickerEvent.
Query proper window
Piotr Osiewicz created
6c01aea
Do not perform OnTypeFormating after pair brace insert (#2672)
Closes https://linear.app/zed-industries/issue/Z-2358/ra-brace-auto-surround-causes-duplicate-end-char-with-selection Release Notes: - Fixed a bug when duplicate brace appeared after selected text got surrounded with braces
Kirill Bulatov created
806268f
Merge branch 'main' into git-menu
Piotr Osiewicz created
85701c9
Do not perform OnTypeFormating after pair brace insert
Co-Authored-By: Julia Risley <julia@zed.dev>
Kirill Bulatov and Julia Risley created
4eedc3e
Remove flex from underneath the pickers
Piotr Osiewicz created
8efb66b
Do not add extra spaces to hints (#2671)
Closes https://linear.app/zed-industries/issue/Z-2526/inlay-hints-in-typescript-types-have-extra-space-before#comment-ac88a101 Release Notes: - N/A
Kirill Bulatov created
43d4f04
Do not add extra spaces to hints
Kirill Bulatov created
026ad19
Dismiss dropdowns on click out
Piotr Osiewicz created