Announcing qijul 0.1

Hi all,

I wrote a small qt user interface for pijul. It can be found there: https://nest.pijul.org/FlorentBecker/qijul. currently, it gives a graphical version of pijul log, pijul status and pijul diff. There are a few bugs, notably qijul currently locks the repository while it is open. More commands should follow soonish.

The plan is to have a pijul status centric interface, à la magit. Patches and bug reports are of course welcome. I haven’t tried building on platforms other than nixos, but cargo build should do the job if you have an installation of qt, at least on linux.

2 Likes

By the way, have you tried my vc-pijul (in the Pijul repository itself)?

Not yet, I’m not fond of vc-* under emacs, but I should eventually do that.

I’d like to know why, I’ve never used it before. Also, I have an error when trying to run qijul:

QQmlApplicationEngine failed to load component
file:///home/pe/Recherche/pijul/qijul/main.qml:4 module “QtQuick.Controls” version 2.4 is not installed

1 Like

It’s from some time ago, but I remember the way information was organised between the different buffers was unpleasant to me (stuff seemed never to be where I wanted it). Maybe if I tried it again it would feel better now.

I’ll look into that. Indeed, I have the same problem with nix-shell --pure.

Indeed, it was picking some qml files at runtime from my installation of kde. This should be fixed now.

1 Like

I’m getting this error when I try to run qijul:

QQmlApplicationEngine failed to load component
file:///home/christian/src/qijul/main.qml:6 module “org.kde.kirigami” is not installed

Installing the kirigami2 package works. Idk if it’s intended or not, as kirigami isn’t listed as a dependency in the readme.

1 Like

Indeed, it should be listed in the readme, thanks (and it now is)

I’m unable to do a fresh build:

kvark@ant /hub/tools $ pijul clone https://nest.pijul.org/FlorentBecker/qijul
Pulling patches: 100% (34/34), done.
Applying patches: 100% (34/34), done.
kvark@ant /hub/tools $ cd qijul/
kvark@ant /hub/tools/qijul $ ls
bindings.json  build.rs  Cargo.toml  default.nix  main.qml  qml.qrc  README.md  shell.nix  src
kvark@ant /hub/tools/qijul $ cargo build
    Updating crates.io index
error: failed to load source for a dependency on `libpijul`

Caused by:
  Unable to update /hub/tools/pijul/libpijul

Caused by:
  failed to read `/hub/tools/pijul/libpijul/Cargo.toml`

Caused by:
  No such file or directory (os error 2)

indeed, qijul currently depends on the master version of libpijul. You need to do a pijul clone https://nest.pijul.org/pijul_org/pijul in the parent directory to build qijul. If you already have a checkout of the pijul source code, you can update its location in qijul/Cargo.toml.

Have fun with qijul!

Actually, libpijul 0.12.2 is fine. I just fixed that in Cargo.toml, so a fresh clone of qijul should now compile.