Skip to content

Commit

Permalink
add support plugin config and permission system on zellij 0.38
Browse files Browse the repository at this point in the history
  • Loading branch information
h1romas4 committed Aug 28, 2023
1 parent fceed3c commit 3cff9b3
Show file tree
Hide file tree
Showing 12 changed files with 389 additions and 159 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
path: |
~/.rustup
~/.cargo
key: ${{ runner.os }}-rust-1.69-opt
key: ${{ runner.os }}-rust-1.71-opt

- name: Rust Toolchain Setup
if: steps.cache-toolchaine.outputs.cache-hit != 'true'
Expand Down
58 changes: 58 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build zellij-datetime",
"type": "shell",
"command": "cargo build",
"presentation": {
"reveal": "always",
"panel": "shared"
}
},
{
"label": "Run zellij-datetime",
"dependsOn": ["Build zellij-datetime"],
"type": "shell",
"command": "podman",
"args": [
"run",
"--name",
"zellij-datetime",
"--env",
"SHELL=/usr/bin/bash",
"-v",
"${workspaceRoot}/../zellij/target/release/:/opt/zellij",
"-v",
"${workspaceRoot}:/opt/zellij-datetime",
"-w",
"/opt/zellij-datetime",
"-it",
"--rm",
"ubuntu:22.04",
"/opt/zellij/zellij",
"-l",
"plugin.kbl"
],
"presentation": {
"reveal": "always",
"panel": "shared"
}
},
{
"label": "Stop zellij-datetime",
"type": "shell",
"command": "podman",
"args": [
"stop",
"zellij-datetime"
],
"presentation": {
"reveal": "always",
"panel": "shared"
}
}
]
}
9 changes: 0 additions & 9 deletions .zellij-datetime.kdl

This file was deleted.

129 changes: 121 additions & 8 deletions Cargo.lock

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

7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
[package]
name = "zellij-datetime"
version = "0.16.0"
version = "0.17.0"
authors = ["h1romas4 <[email protected]>"]
edition = "2021"

[dependencies]
zellij-tile = "0.37.2"
zellij-tile-utils = "0.37.2"
zellij-tile = "0.38.0"
zellij-tile-utils = "0.38.0"
ansi_term = "^0.12"
chrono-wasi = "^0.4"
kdl = { version = "^4.5" }
linked-hash-map = "^0.5"
csscolorparser = "^0.6"

Expand Down
Loading

0 comments on commit 3cff9b3

Please sign in to comment.