Commit log
6537def
Allow having multiple mouse event handlers of the same kind
Click to expand commit body
Co-Authored-By: Kay Simmons <kay@zed.dev>
Julia
and
Kay Simmons
created
3 years ago
Max Brunsfeld
created
3 years ago
0a63d2e
Merge pull request #1900 from zed-industries/fix-terminal-performance
Click to expand commit body
Check for wakeups correctly
Mikayla Maki
created
3 years ago
ce0dfde
Check for wakeups correctly
Mikayla Maki
created
3 years ago
44bb2ce
Rename `Store` to `ConnectionPool`
Antonio Scandurra
created
3 years ago
6c83be3
Remove obsolete code from `Store`
Antonio Scandurra
created
3 years ago
0a4517f
WIP: Introduce a `db` field to `Session`
Click to expand commit body
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Antonio Scandurra
and
Nathan Sobo
created
3 years ago
c34a5f3
Introduce a new `Session` struct to server message handlers
Click to expand commit body
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Antonio Scandurra
and
Nathan Sobo
created
3 years ago
4f39181
Revert "Don't replace newer diagnostics with older ones"
Click to expand commit body
This reverts commit 71eeeedc05f7ed6978f2ebfc6f169a7bc9cc8907.
Antonio Scandurra
created
3 years ago
e7e45be
Revert "Wait for previous `UpdateFollowers` message ack before sending new ones"
Click to expand commit body
This reverts commit fe93263ad450a1460ccb5edfde1ca868d132e8c6.
Antonio Scandurra
created
3 years ago
8621c88
Use int8 for `scan_id` and `inode` in Postgres
Antonio Scandurra
created
3 years ago
Antonio Scandurra
created
3 years ago
0f4598a
Fix seed script
Antonio Scandurra
created
3 years ago
6415809
Fix errors in Postgres schema
Antonio Scandurra
created
3 years ago
fe93263
Wait for previous `UpdateFollowers` message ack before sending new ones
Antonio Scandurra
created
3 years ago
3b34d85
Remove unwrap from `Server::share_project`
Antonio Scandurra
created
3 years ago
71eeeed
Don't replace newer diagnostics with older ones
Antonio Scandurra
created
3 years ago
532a599
Use `Db::get_guest_connection_ids` in other db methods
Antonio Scandurra
created
3 years ago
9eee22f
Fix column name in query
Nathan Sobo
created
3 years ago
94fe93c
Move unshare_project to db module
Nathan Sobo
created
3 years ago
93824dd
Fix top-level header in discord webhook action
Joseph Lyons
created
3 years ago
e5f05c9
Move leave_project from Store to db module
Nathan Sobo
created
3 years ago
bdb521c
Fix typo in query
Nathan Sobo
created
3 years ago
c613c98
Move comment to correct location
Joseph Lyons
created
3 years ago
Max Brunsfeld
created
3 years ago
c1291a0
WIP: Allow subscribing to remote entity before creating a model
Click to expand commit body
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Co-Authored-By: Max Brunsfeld <max@zed.dev>
Antonio Scandurra
,
Nathan Sobo
, and
Max Brunsfeld
created
3 years ago
ccc8c24
Merge pull request #1894 from zed-industries/opt-as-meta-fix
Click to expand commit body
Fix small terminal bugs
Mikayla Maki
created
3 years ago
8e6c5db
Fix unscaled scrolling when using an imprecise mouse wheel
Mikayla Maki
created
3 years ago
3c53fcd
Added alt-left: move word left and alt-right: move word right in the terminal for for antonio
Mikayla Maki
created
3 years ago
adf43c8
Batch some of the new queries in `Db`
Click to expand commit body
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Antonio Scandurra
and
Nathan Sobo
created
3 years ago
faf2653
Wait for acknowledgment before sending the next diagnostic summary
Antonio Scandurra
created
3 years ago
9bc57c0
Move `Store::start_language_server` to `Db`
Antonio Scandurra
created
3 years ago
95369f9
Move `Store::update_diagnostic_summary` to `Db`
Antonio Scandurra
created
3 years ago
117458f
Send worktree updates after project metadata has been sent
Antonio Scandurra
created
3 years ago
eeb32fa
Improve queries for composite primary keys
Antonio Scandurra
created
3 years ago
f9567ae
Cascade deletes when project is deleted
Antonio Scandurra
created
3 years ago
c151c87
Correctly leave projects when leaving room
Antonio Scandurra
created
3 years ago
3190236
Update worktree entry instead of erroring when it already exists
Antonio Scandurra
created
3 years ago
17dfbb9
Merge pull request #1897 from zed-industries/allow-users-to-sign-up-multiple-times
Joseph T. Lyons
created
3 years ago
c3cf056
allow users to sign up multiple times without throwing a 500
Joseph Lyons
created
3 years ago
Nathan Sobo
created
3 years ago
f4e9759
Merge pull request #1896 from zed-industries/fix-invites
Click to expand commit body
Once we email someone an invite, honor the invitation
Nathan Sobo
created
3 years ago
fdf758e
Once we email someone an invite, honor the invitation
Click to expand commit body
Previously, we were waiting to decrement the invite_count until a user
confirmed their email address, which created weird situations where we would
email people only to have them get a 500 when trying to sign up. Now, we
decrement the invite_count upon sending the email and always honor the
invitation.
Co-Authored-By: Joseph Lyons <joseph@zed.dev>
Co-Authored-By: Max Brunsfeld <max@zed.dev>
Nathan Sobo
,
Joseph Lyons
, and
Max Brunsfeld
created
3 years ago
0dfacd7
Merge pull request #1895 from zed-industries/ruby-solargraph
Click to expand commit body
Add ruby LSP support via SolarGraph
Max Brunsfeld
created
3 years ago
36c07f9
Add ruby LSP support via SolarGraph
Max Brunsfeld
created
3 years ago
0192903
fixed clear problem
Mikayla Maki
created
3 years ago
0817f90
Fix syntax error in schema
Antonio Scandurra
created
3 years ago
ad67f5e
Always use the database to retrieve collaborators for a project
Antonio Scandurra
created
3 years ago
e9eadca
Move `Store::update_worktree` to `Db::update_worktree`
Antonio Scandurra
created
3 years ago
4b1dcf2
Always use strings to represent paths over the wire
Click to expand commit body
Previously, the protocol used a mix of strings and bytes without any consistency.
When we go to multiple platforms, we won't be able to mix encodings of paths anyway.
We don't know this is the right approach, but it at least makes things consistent
and easy to read in the database, on the wire, etc. Really, we should be using entry
ids etc to refer to entries on the wire anyway, but there's a chance this is the
wrong decision.
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
Antonio Scandurra
and
Nathan Sobo
created
3 years ago
Page 8 of 145