- Update to version 0.32.0:
* BREAKING CHANGE: switch config/layout/theme language to KDL (https://github.com/zellij-org/zellij/pull/1759) * debugging: Improve error handling in screen thread (https://github.com/zellij-org/zellij/pull/1670) * fix: Server exits when client panics (https://github.com/zellij-org/zellij/pull/1731) * fix: Server panics when writing to suppressed pane (https://github.com/zellij-org/zellij/pull/1749) * debugging: Improve error handling in screen thread private functions (https://github.com/zellij-org/zellij/pull/1770) * fix(nix): add DiskArbitration and Foundation to darwin builds (https://github.com/zellij-org/zellij/pull/1724) * debugging: Remove calls to `panic` in server/tab (https://github.com/zellij-org/zellij/pull/1748) * debugging: Improve error format in server/thread_bus (https://github.com/zellij-org/zellij/pull/1775) * feat: command pane - send commands to Zellij and re-run them with ENTER (https://github.com/zellij-org/zellij/pull/1787) * fix: escape quotes and backslashes when converting YAML to KDL (https://github.com/zellij-org/zellij/pull/1790) * fix: frameless pane wrong size after closing other panes (https://github.com/zellij-org/zellij/pull/1776) * fix: error on mixed nodes in layouts (https://github.com/zellij-org/zellij/pull/1791) * fix: error on duplicate pane_template / tab_template definitions in layouts (https://github.com/zellij-org/zellij/pull/1792) * fix: accept session-name through the cli properly (https://github.com/zellij-org/zellij/pull/1793) * fix: Prevent recursive sessions from layout files (https://github.com/zellij-org/zellij/pull/1766) * fix: better error messages and recovery from layout issues (https://github.com/zellij-org/zellij/pull/1797) * feat: allow layouts to have a global cwd (https://github.com/zellij-org/zellij/pull/1798) * feat: edit panes in layouts (https://github.com/zellij-org/zellij/pull/1799) * debugging: Log `thread_bus` IPC messages only in debug mode (https://github.com/zellij-org/zellij/pull/1800) * feat: improve zellij run CLI (https://github.com/zellij-org/zellij/pull/1804) * docs: Add tips for code contributions to CONTRIBUTING (https://github.com/zellij-org/zellij/pull/1805) * feat: change floating panes to be grouped rather than scattered (https://github.com/zellij-org/zellij/pull/1810) * fix: default to vi editor when we can't an editor in EDITOR or VISUAL and none is configured (https://github.com/zellij-org/zellij/pull/1811) * deps: upgrade log4rs to 1.2.0 (https://github.com/zellij-org/zellij/pull/1814) * feat: allow `DumpScreen` to dump the viewport by default (https://github.com/zellij-org/zellij/pull/1794) * Terminal compatibility: clear scroll region when terminal pane is cleared (https://github.com/zellij-org/zellij/pull/1826) * feat: allow defining tab cwd in layouts (https://github.com/zellij-org/zellij/pull/1828) * debugging: Remove calls to `unwrap` from plugin WASM VM (https://github.com/zellij-org/zellij/pull/1827) * debugging: Improve error handling in `server/route` (https://github.com/zellij-org/zellij/pull/1808) OBS-URL: https://build.opensuse.org/package/show/utilities/zellij?expand=0&rev=40
This commit is contained in:
parent
fcc499246e
commit
7a9a70ff83
@ -1,9 +1,8 @@
|
||||
1. Install `rpmdevtools`
|
||||
2. If updating a version, modify the Version string.
|
||||
3. Run `rpmdev-spectool -g zellij.spec` and remove the previous version tar ball.
|
||||
4. Add the new tarball and extract it
|
||||
5. Move the extracted `zellij-<new-version>` as `zellij`.
|
||||
6. Run `osc service disabledrun`
|
||||
4. Edit the service file cargo-vendor to point to the new tar ball.
|
||||
5. Run `osc service disabledrun`
|
||||
|
||||
Then add version changes with `osc vc` and then `osc ci`
|
||||
|
||||
|
6
_service
6
_service
@ -1,11 +1,9 @@
|
||||
<services>
|
||||
<service name="cargo_vendor" mode="disabled">
|
||||
<param name="srcdir">zellij</param>
|
||||
<param name="srctar">v0.32.0.tar.gz</param>
|
||||
<param name="compression">gz</param>
|
||||
<param name="update">true</param>
|
||||
</service>
|
||||
<service name="cargo_audit" mode="disabled">
|
||||
<param name="srcdir">zellij</param>
|
||||
</service>
|
||||
<service name="cargo_audit" mode="disabled" />
|
||||
</services>
|
||||
|
||||
|
3
v0.32.0.tar.gz
Normal file
3
v0.32.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e81cfc94bc15faeb1cacaddcea20e6f8220e6d288b84dfdf221c17d4868de2c0
|
||||
size 9003458
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:82c042861ab309281fa1916c89f11676b12a74ae9fc5efddcb9c6bcd9b0fe627
|
||||
size 35588267
|
||||
oid sha256:aef1b309c6b4db0f43c7694321b34d3ade98ae35ba6f0e1ecc7974a41967df38
|
||||
size 36586309
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:286b08523457cdadee89bb1839f8d08ac402af00f3e27063520a7ed9ee7afc8a
|
||||
size 9316097
|
@ -1,3 +1,39 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 28 23:31:49 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||
|
||||
- Update to version 0.32.0:
|
||||
* BREAKING CHANGE: switch config/layout/theme language to KDL (https://github.com/zellij-org/zellij/pull/1759)
|
||||
* debugging: Improve error handling in screen thread (https://github.com/zellij-org/zellij/pull/1670)
|
||||
* fix: Server exits when client panics (https://github.com/zellij-org/zellij/pull/1731)
|
||||
* fix: Server panics when writing to suppressed pane (https://github.com/zellij-org/zellij/pull/1749)
|
||||
* debugging: Improve error handling in screen thread private functions (https://github.com/zellij-org/zellij/pull/1770)
|
||||
* fix(nix): add DiskArbitration and Foundation to darwin builds (https://github.com/zellij-org/zellij/pull/1724)
|
||||
* debugging: Remove calls to `panic` in server/tab (https://github.com/zellij-org/zellij/pull/1748)
|
||||
* debugging: Improve error format in server/thread_bus (https://github.com/zellij-org/zellij/pull/1775)
|
||||
* feat: command pane - send commands to Zellij and re-run them with ENTER (https://github.com/zellij-org/zellij/pull/1787)
|
||||
* fix: escape quotes and backslashes when converting YAML to KDL (https://github.com/zellij-org/zellij/pull/1790)
|
||||
* fix: frameless pane wrong size after closing other panes (https://github.com/zellij-org/zellij/pull/1776)
|
||||
* fix: error on mixed nodes in layouts (https://github.com/zellij-org/zellij/pull/1791)
|
||||
* fix: error on duplicate pane_template / tab_template definitions in layouts (https://github.com/zellij-org/zellij/pull/1792)
|
||||
* fix: accept session-name through the cli properly (https://github.com/zellij-org/zellij/pull/1793)
|
||||
* fix: Prevent recursive sessions from layout files (https://github.com/zellij-org/zellij/pull/1766)
|
||||
* fix: better error messages and recovery from layout issues (https://github.com/zellij-org/zellij/pull/1797)
|
||||
* feat: allow layouts to have a global cwd (https://github.com/zellij-org/zellij/pull/1798)
|
||||
* feat: edit panes in layouts (https://github.com/zellij-org/zellij/pull/1799)
|
||||
* debugging: Log `thread_bus` IPC messages only in debug mode (https://github.com/zellij-org/zellij/pull/1800)
|
||||
* feat: improve zellij run CLI (https://github.com/zellij-org/zellij/pull/1804)
|
||||
* docs: Add tips for code contributions to CONTRIBUTING (https://github.com/zellij-org/zellij/pull/1805)
|
||||
* feat: change floating panes to be grouped rather than scattered (https://github.com/zellij-org/zellij/pull/1810)
|
||||
* fix: default to vi editor when we can't an editor in EDITOR or VISUAL and none is configured (https://github.com/zellij-org/zellij/pull/1811)
|
||||
* deps: upgrade log4rs to 1.2.0 (https://github.com/zellij-org/zellij/pull/1814)
|
||||
* feat: allow `DumpScreen` to dump the viewport by default (https://github.com/zellij-org/zellij/pull/1794)
|
||||
* Terminal compatibility: clear scroll region when terminal pane is cleared (https://github.com/zellij-org/zellij/pull/1826)
|
||||
* feat: allow defining tab cwd in layouts (https://github.com/zellij-org/zellij/pull/1828)
|
||||
* debugging: Remove calls to `unwrap` from plugin WASM VM (https://github.com/zellij-org/zellij/pull/1827)
|
||||
* debugging: Improve error handling in `server/route` (https://github.com/zellij-org/zellij/pull/1808)
|
||||
* debugging: Detect plugin version mismatches (https://github.com/zellij-org/zellij/pull/1838)
|
||||
* feat: add help to cli options (https://github.com/zellij-org/zellij/pull/1839)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 15 00:32:25 UTC 2022 - Soc Virnyl Estela <socvirnyl.estela@gmail.com>
|
||||
|
||||
|
@ -18,12 +18,12 @@
|
||||
|
||||
%bcond_with test
|
||||
Name: zellij
|
||||
Version: 0.31.4
|
||||
Version: 0.32.0
|
||||
Release: 0
|
||||
Summary: Terminal workspace with batteries included
|
||||
License: MIT
|
||||
URL: https://github.com/zellij-org/zellij
|
||||
Source0: https://github.com/zellij-org/zellij/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
Source0: https://github.com/zellij-org/zellij/archive/refs/tags/v%{version}.tar.gz
|
||||
Source1: vendor.tar.gz
|
||||
Source2: cargo_config
|
||||
Source3: README.suse-maint.md
|
||||
|
Loading…
x
Reference in New Issue
Block a user