Gaétan Lepage
d77a2129f3
zed-editor: make node-based built-in LSPs work on NixOS ( #354063 )
2024-11-10 15:17:48 +01:00
Jan Solanti
7cb44f20f6
zed-editor: make node-based built-in LSPs work on NixOS
...
Since version 0.155.2 Zed has checked PATH for a node.js binary before
attempting to download its own. Make use of this by prepending a
nixpkgs-provided node.js into PATH via a wrapper script around the main
`zed-editor` binary.
2024-11-09 22:22:54 +02:00
Bruno Bigras
d0cab6aa5a
zed-editor: 0.159.10 -> 0.160.7
2024-11-06 14:02:50 -05:00
Bruno Bigras
ff427fbc30
zed-editor: 0.159.7 -> 0.159.10
2024-11-04 10:13:47 -05:00
Bruno Bigras
e4f302deb8
zed-editor: 0.159.6 -> 0.159.7
2024-11-01 11:07:58 -04:00
Gaétan Lepage
877f76abe2
zed-editor: 0.159.5 -> 0.159.6 ( #352649 )
2024-11-01 13:50:16 +01:00
Niklas Korz
c69d708f63
zed-editor: fix license generation
2024-10-31 17:18:13 +01:00
Bruno Bigras
ee07d4f2f3
zed-editor: 0.159.5 -> 0.159.6
2024-10-31 11:50:25 -04:00
Gaétan Lepage
c426aa8bc9
zed-editor: 0.158.2 -> 0.159.5 ( #352420 )
2024-10-31 11:14:15 +01:00
Bruno Bigras
d82f84ed2b
zed-editor: 0.158.2 -> 0.159.5
2024-10-30 13:59:42 -04:00
K900
7f898ed413
Merge remote-tracking branch 'origin/master' into staging-next
2024-10-25 21:06:42 +03:00
Bruno Bigras
264d77eb79
zed-editor: 0.158.1 -> 0.158.2
2024-10-24 17:39:15 -04:00
Emily
d7416b7f97
zed-editor: fix incorrect manual merge
2024-10-24 09:55:39 +01:00
K900
dee94df6f2
Merge remote-tracking branch 'origin/master' into staging-next
2024-10-24 09:28:51 +03:00
Bruno Bigras
bacf0557a0
zed-editor: 0.157.5 -> 0.158.1
2024-10-23 14:19:29 -04:00
Niklas Korz
1d4e138222
zed-editor: change auto-update message
2024-10-20 22:14:23 +02:00
Niklas Korz
d79ec5ed83
zed-editor: fix darwin
2024-10-19 22:58:23 +02:00
Bruno Bigras
cdc9fbfae7
zed-editor: 0.156.2 -> 0.157.5
2024-10-16 16:30:58 -04:00
Gaetan Lepage
da60725146
zed-editor: 0.156.1 -> 0.156.2
...
Diff: https://github.com/zed-industries/zed/compare/refs/tags/v0.156.1...0.156.2
Changelog: https://github.com/zed-industries/zed/releases/tag/v0.156.2
2024-10-15 08:33:26 +02:00
Gaetan Lepage
d579d17ebc
zed-editor: 0.156.0 -> 0.156.1
...
Diff: https://github.com/zed-industries/zed/compare/refs/tags/v0.156.0...0.156.1
Changelog: https://github.com/zed-industries/zed/releases/tag/v0.156.1
2024-10-10 16:44:42 +02:00
Gaetan Lepage
184f458628
zed-editor: 0.155.2 -> 0.156.0
...
Diff: https://github.com/zed-industries/zed/compare/refs/tags/v0.155.2...0.156.0
Changelog: https://github.com/zed-industries/zed/releases/tag/v0.156.0
2024-10-10 07:31:04 +02:00
Bruno Bigras
f050aea788
zed-editor: 0.154.4 -> 0.155.2
2024-10-03 08:12:18 +02:00
Bruno Bigras
b461e407bd
zed-editor: 0.154.3 -> 0.154.4
2024-10-01 21:37:04 +02:00
Bruno Bigras
dd1e9aabfb
zed-editor: 0.154.2 -> 0.154.3
2024-09-28 00:32:25 -04:00
Gaetan Lepage
ba3f48c2d6
zed-editor: 0.154.1 -> 0.154.2
...
Diff: https://github.com/zed-industries/zed/compare/refs/tags/v0.154.1...0.154.2
Changelog: https://github.com/zed-industries/zed/releases/tag/v0.154.2
2024-09-26 14:24:20 +02:00
Gaetan Lepage
434cc988e4
zed-editor: 0.153.6 -> 0.154.1
...
Diff:
https://github.com/zed-industries/zed/compare/refs/tags/v0.153.6...0.154.1
Changelog: https://github.com/zed-industries/zed/releases/tag/v0.154.1
2024-09-26 07:45:49 +02:00
Artturin
e0464e4788
treewide: replace stdenv.is
with stdenv.hostPlatform.is
...
In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
John Titor
a28f1df81f
zed-editor: rename zed binary to zeditor
...
At least three packages provide a "zed" binary including `zfs`, `spicedb-zed`, and `zed` binary which can lead to conflicts.
Renaming the `cli` binary to `zeditor` is even recommmeded in zed-editor official packaging instructions.
https://github.com/zed-industries/zed/blob/main/docs/src/development/linux.md#other-things-to-note
Signed-off-by: John Titor <50095635+JohnRTitor@users.noreply.github.com>
2024-09-24 17:09:17 +05:30
John Titor
b2b5981284
zed-editor: change pname to zed-editor
...
There are like three different packages with zed
2024-09-24 15:47:23 +05:30
Bruno Bigras
72f230e1c3
zed-editor: 0.152.4 -> 0.153.6
2024-09-19 13:00:56 -04:00
Bruno Bigras
7bed2fedd8
zed-editor: 0.152.3 -> 0.152.4
2024-09-16 20:50:30 -04:00
Bruno Bigras
6c18083a43
zed-editor: 0.151.2 -> 0.152.3
2024-09-10 15:54:47 -04:00
Bruno Bigras
50a288414b
zed-editor: 0.151.1 -> 0.151.2
2024-09-06 12:32:32 -04:00
Niklas Korz
992bcdbeca
zed-editor: add fhs passthru
2024-09-05 18:45:01 +02:00
Niklas Korz
afce61251d
zed-editor: fix --version
2024-09-05 12:32:01 +02:00
Niklas Korz
b82be0d48c
zed-editor: fix license menu
...
Without the generated licenses file, Zed crashes when triggering the "View Dependency licenses" menu button.
2024-09-05 12:32:01 +02:00
Bruno Bigras
131bd1aba1
zed-editor: 0.150.4 -> 0.151.1
2024-09-04 11:34:09 -04:00
Patka
18af402eeb
zed-editor: update default fonts
...
upstream moved to using flex-mono and plex-sans instead of maintaining their own custom fonts. For more info see: https://github.com/zed-industries/zed/pull/13596
2024-09-01 12:20:33 +02:00
Bruno Bigras
29114fd658
zed-editor: 0.149.6 -> 0.150.4
2024-08-28 13:02:38 -04:00
Gaetan Lepage
4a791bd5d4
zed-editor: 0.149.5 -> 0.149.6
...
Diff: https://github.com/zed-industries/zed/compare/refs/tags/v0.149.5...0.149.6
Changelog: https://github.com/zed-industries/zed/releases/tag/v0.149.6
2024-08-27 15:02:01 +02:00
Gaetan Lepage
c6996e869b
zed-editor: 0.149.3 -> 0.149.5
...
Diff: https://github.com/zed-industries/zed/compare/refs/tags/v0.149.3...0.149.5
Changelog: https://github.com/zed-industries/zed/releases/tag/v0.149.5
2024-08-22 23:19:48 +02:00
Gaétan Lepage
8294a46c6c
Merge pull request #336135 from bbigras/push-qwqxkxsymmsl
...
zed-editor: 0.148.1 -> 0.149.3
2024-08-21 07:45:20 +02:00
Bruno Bigras
40024302ff
zed-editor: 0.148.1 -> 0.149.3
2024-08-20 15:02:11 -04:00
Gaetan Lepage
8fb69d99c0
zed-editor: disable auto-updates
2024-08-20 16:13:19 +02:00
Bruno Bigras
7fbe785f8a
zed-editor: 0.148.0 -> 0.148.1
2024-08-15 11:06:28 -04:00
Bruno Bigras
a9228c106d
zed-editor: 0.147.2 -> 0.148.0
2024-08-14 13:42:56 -04:00
Gaetan Lepage
d15083e985
zed-editor: 0.146.5 -> 0.147.2
...
Diff: https://github.com/zed-industries/zed/compare/refs/tags/v0.146.5...0.147.2
Changelog: https://github.com/zed-industries/zed/releases/tag/v0.147.2
2024-08-08 10:15:22 +02:00
Gaetan Lepage
89604b3f63
zed-editor: 0.146.4 -> 0.146.5
...
Diff: https://github.com/zed-industries/zed/compare/refs/tags/v0.146.4...0.146.5
Changelog: https://github.com/zed-industries/zed/releases/tag/v0.146.5
2024-08-03 11:07:37 +02:00
Gaetan Lepage
6ae6635e54
zed-editor: 0.146.3 -> 0.146.4
...
Diff: https://github.com/zed-industries/zed/compare/refs/tags/v0.146.3...0.146.4
Changelog: https://github.com/zed-industries/zed/releases/tag/v0.146.4
2024-08-01 22:13:09 +02:00
Gaetan Lepage
2e316462ff
zed-editor: 0.145.1 -> 0.146.3
...
Diff: https://github.com/zed-industries/zed/compare/refs/tags/v0.145.1...0.146.3
Changelog: https://github.com/zed-industries/zed/releases/tag/v0.146.3
2024-08-01 07:40:44 +02:00