Files
vikunja/desktop
renovate[bot] b9e571fd0d chore(deps): update dependency electron-builder to v26.8.0 (#2253)
This PR contains the following updates:

| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
|
[electron-builder](https://redirect.github.com/electron-userland/electron-builder)
([source](https://redirect.github.com/electron-userland/electron-builder/tree/HEAD/packages/electron-builder))
| [`26.7.0` →
`26.8.0`](https://renovatebot.com/diffs/npm/electron-builder/26.7.0/26.8.0)
|
![age](https://developer.mend.io/api/mc/badges/age/npm/electron-builder/26.8.0?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/electron-builder/26.7.0/26.8.0?slim=true)
|

---

### Release Notes

<details>
<summary>electron-userland/electron-builder (electron-builder)</summary>

###
[`v26.8.0`](https://redirect.github.com/electron-userland/electron-builder/blob/HEAD/packages/electron-builder/CHANGELOG.md#2680)

[Compare
Source](https://redirect.github.com/electron-userland/electron-builder/compare/electron-builder@26.7.0...electron-builder@26.8.0)

##### Minor Changes

- Feat(win): adding support for latest artifacts for win-codesign
tooling to be pulled from `electron-builder-binaries`
*[`#9430`](https://redirect.github.com/electron-userland/electron-builder/pull/9430)
[`1b39a8e`](1b39a8e23c)
[@&#8203;mmaietta](https://redirect.github.com/mmaietta)*

##### Patch Changes

<details><summary>Updated 3 dependencies</summary>

<small>


[`cd7c0d9`](cd7c0d9a73)
[`c18f0eb`](c18f0eb26b)
[`769b608`](769b6080a7)
[`9ba36f9`](9ba36f9879)
[`1b113b7`](1b113b758d)
[`1b39a8e`](1b39a8e23c)

</small>

- `app-builder-lib@26.8.0`
- `builder-util@26.8.0`
- `dmg-builder@26.8.0`

</details>

</details>

---

### Configuration

📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3
* * * ) (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/go-vikunja/vikunja).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMi4wIiwidXBkYXRlZEluVmVyIjoiNDMuMjIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-18 16:28:29 +01:00
..
2024-02-08 14:53:56 +01:00
2024-02-08 14:53:56 +01:00
2024-02-10 14:46:33 +01:00
2024-02-08 14:53:56 +01:00
2024-02-08 14:53:56 +01:00

Vikunja desktop

License: GPL-3.0-or-later

The Vikunja frontend all repackaged as an electron app to run as a desktop app!

Dev

As this package does not contain any code, only a thin wrapper around electron, you will need to do this to get the actual frontend bundle and build the app:

First, build the frontend:

cd ../frontend
pnpm install
pnpm run build

Then, copy the frontend to this directory:

cd desktop
cp -r ../frontend/dist frontend/
sed -i 's/\/api\/v1//g' frontend/index.html # Make sure to trigger the "enter the Vikunja url" prompt

Then you can run the desktop app like this:

pnpm install
pnpm start

Building for release

  1. Run the snippet from above, but with a valid frontend version instead of unstable
  2. Change the version in package.json (that's the one that will be used by electron-builder)
  3. pnpm install
  4. pnpm run dist --linux --windows

License

This project is licensed under the GPL-3.0-or-later license. See the LICENSE file for details.