Skip to content

Commit

Permalink
update registry by adding all known packages (#69)
Browse files Browse the repository at this point in the history
followup to #56 

## Description
this should update the `registry.nuon` file thanks to the content of
previous `index.nuon` (see cbca144 for the pipeline used to update the
registry).

this PR uses the latest version of each package.

## try it out
```nushell
nupm search --registry ./registry.nuon explore
    | into record
    | update pkgs { into record }
    | table --expand
```
```
────┬──────────────────────────────────────────────────────
name│registry
path│./registry.nuon
    │────────┬─────────────────────────────────────────────
pkgs│name    │nu_plugin_explore
    │version │0.1.2
    │url     │https://github.com/:amtoine/nu_plugin_explore
    │revision│0.1.2
    │path    │.
    │type    │git
    │────────┴─────────────────────────────────────────────
────┴──────────────────────────────────────────────────────
```
  • Loading branch information
amtoine authored Feb 18, 2024
1 parent 29916fc commit f7e8155
Show file tree
Hide file tree
Showing 2 changed files with 156 additions and 35 deletions.
24 changes: 0 additions & 24 deletions index.nuon

This file was deleted.

167 changes: 156 additions & 11 deletions registry.nuon
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,166 @@

{
git: [
[name version url revision path];
[
nu-git-manager
0.5.0
https://github.com/amtoine/nu-git-manager.git
0.5.0
name,
version,
url,
revision,
path
];
[
nu_plugin_audio_hook,
"0.1.12",
"https://github.com/FMotalleb/nu_plugin_audio_hook",
"v0.1.12",
.
],
[
nu_plugin_clipboard,
"0.3.4",
"https://github.com/FMotalleb/nu_plugin_clipboard",
"27faf8d",
.
],
[
nu_plugin_desktop_notifications,
"1.0.7",
"https://github.com/FMotalleb/nu_plugin_desktop_notifications",
"7556310",
.
],
[
nu_plugin_image,
"0.3.2",
"https://github.com/FMotalleb/nu_plugin_image",
"7703e79",
.
],
[
nu_plugin_port_list,
"1.2.10",
"https://github.com/FMotalleb/nu_plugin_port_list",
"dddd72d",
.
],
[
nu_plugin_port_scan,
"1.0.10",
"https://github.com/FMotalleb/nu_plugin_port_scan",
"7424a69",
.
],
[
nu_plugin_qr_maker,
"1.0.2",
"https://github.com/FMotalleb/nu_plugin_qr_maker",
"73bf1e4",
.
],
[
nu-git-manager,
"0.6.0",
"https://github.com/amtoine/nu-git-manager",
"0.6.0",
pkgs/nu-git-manager
]

],
[
nu-git-manager-sugar
0.5.0
https://github.com/amtoine/nu-git-manager.git
0.5.0
nu-git-manager-sugar,
"0.6.0",
"https://github.com/amtoine/nu-git-manager",
"0.6.0",
pkgs/nu-git-manager-sugar
],
[
nu-pomodoro,
"0.1.0",
"https://github.com/amtoine/nu-pomodoro",
"main",
.
],
[
nu-right-prompt,
"0.1.0",
"https://github.com/amtoine/nu-right-prompt",
"main",
.
],
[
nu_plugin_explore,
"0.1.2",
"https://github.com/amtoine/nu_plugin_explore",
"4e8cc0b4e359986bc3cb214161f637b18f648d65",
.
],
[
nu-clippy,
"0.1.0",
"https://github.com/amtoine/scripts",
"b7c3401b4d2019909af203bfe89207aa39d52a1e",
nu-clippy
],
[
nu-logout,
"0.1.0",
"https://github.com/amtoine/scripts",
"b7c3401b4d2019909af203bfe89207aa39d52a1e",
nu-logout
],
[
nu-monitor-manager,
"0.1.0",
"https://github.com/amtoine/scripts",
"b7c3401b4d2019909af203bfe89207aa39d52a1e",
nu-monitor-manager
],
[
nu-scripts,
"0.1.0",
"https://github.com/amtoine/scripts",
"b7c3401b4d2019909af203bfe89207aa39d52a1e",
nu-scripts
],
[
nu-sound-manager,
"0.1.0",
"https://github.com/amtoine/scripts",
"b7c3401b4d2019909af203bfe89207aa39d52a1e",
nu-sound-manager
],
[
nu-zellij,
"0.1.0",
"https://github.com/amtoine/zellij-layouts",
"46f4ded194a13b6acfb7b5b25ea9d179e4e74e12",
nu-zellij
],
[
nu-hooks,
"0.1.0",
"https://github.com/nushell/nu_scripts",
"f04cb44",
nu-hooks
],
[
nu-themes,
"0.1.0",
"https://github.com/nushell/nu_scripts",
"f04cb44",
themes
],
[
nupm,
"0.1.0",
"https://github.com/nushell/nupm",
"29916fc",
.
],
[
tmux-sessionizer,
"0.1.0",
"https://github.com/amtoine/tmux-sessionizer",
"18f5cef534b8b494e4dee645e453231dd5d1bc4c",
.
]
]
}

0 comments on commit f7e8155

Please sign in to comment.