NOW ARCHIVED AND MERGED INTO ONE REPO, SEE https://kolaente.dev/vikunja/vikunja
This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
renovate 5e4450cbe6
continuous-integration/drone/push Build is passing Details
chore(deps): update dependency electron to v23.1.2 (#140)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [electron](https://github.com/electron/electron) | devDependencies | patch | [`23.1.1` -> `23.1.2`](https://renovatebot.com/diffs/npm/electron/23.1.1/23.1.2) |

---

### Release Notes

<details>
<summary>electron/electron</summary>

### [`v23.1.2`](https://github.com/electron/electron/releases/tag/v23.1.2)

[Compare Source](https://github.com/electron/electron/compare/v23.1.1...v23.1.2)

### Release Notes for v23.1.2

#### Fixes

-   Fixed `destroyed` event not emitted on `close` for `BrowserView.webContents`. [#&#8203;37451](https://github.com/electron/electron/pull/37451) <span style="font-size:small;">(Also in [24](https://github.com/electron/electron/pull/37450))</span>
-   Fixed an incorrect result returned when using secure as a cookies filter. [#&#8203;37248](https://github.com/electron/electron/pull/37248) <span style="font-size:small;">(Also in [22](https://github.com/electron/electron/pull/37247), [24](https://github.com/electron/electron/pull/37246))</span>
-   Fixed an issue where `minWidth`/`minHeight` and `maxWidth`/`maxHeight` would not be enforced if the user set an `aspectRatio` on macOS. [#&#8203;37457](https://github.com/electron/electron/pull/37457) <span style="font-size:small;">(Also in [22](https://github.com/electron/electron/pull/37458), [24](https://github.com/electron/electron/pull/37456))</span>
-   Fixed an issue where passing both `hasReply` and `actions` to a main process Notification on macOS resulted in the first action being obscured and unavailable. [#&#8203;37448](https://github.com/electron/electron/pull/37448) <span style="font-size:small;">(Also in [22](https://github.com/electron/electron/pull/37447), [24](https://github.com/electron/electron/pull/37449))</span>
-   Fixed draggable regions not working in Mac App Store builds. [#&#8203;37473](https://github.com/electron/electron/pull/37473) <span style="font-size:small;">(Also in [24](https://github.com/electron/electron/pull/37474))</span>
-   Fixed right-click events not being delivered in frameless window draggable regions. [#&#8203;37394](https://github.com/electron/electron/pull/37394) <span style="font-size:small;">(Also in [24](https://github.com/electron/electron/pull/37395))</span>

#### Other Changes

-   Improved error messages for `contents.takeHeapSnapshot`. [#&#8203;37460](https://github.com/electron/electron/pull/37460) <span style="font-size:small;">(Also in [22](https://github.com/electron/electron/pull/37459), [24](https://github.com/electron/electron/pull/37461))</span>
-   Updated Chromium to 110.0.5481.177. [#&#8203;37389](https://github.com/electron/electron/pull/37389)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), 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, click this checkbox.

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDAuMiIsInVwZGF0ZWRJblZlciI6IjMyLjI0MC4yIn0=-->

Reviewed-on: #140
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2023-03-03 16:36:19 +00:00
build Fix missing application icon on Linux. (#19) 2021-01-27 17:10:57 +00:00
.drone.yml chore: disable mac builds 2022-10-01 09:58:29 +02:00
.gitignore Ignore tgz files 2020-10-10 23:28:52 +02:00
CHANGELOG.md chore: 0.20.3 release preperations 2023-01-24 17:19:15 +01:00
LICENSE Change license to GPLv3 2021-01-10 16:29:17 +01:00
README.md chore: remove sponsor 2023-02-15 11:12:22 +01:00
cliff.toml chore: release preparations 2022-08-03 23:15:25 +02:00
default.nix Add nix dev shell 2020-07-19 21:47:03 +02:00
main.js fix: open links in OS default browser 2022-12-23 19:04:50 +01:00
package.json chore(deps): update dependency electron to v23.1.2 (#140) 2023-03-03 16:36:19 +00:00
portInUse.js Have a default port and only switch to a random one if that's taken 2020-10-17 20:31:06 +02:00
renovate.json Configure Renovate (#1) 2020-11-01 14:03:54 +00:00
yarn.lock chore(deps): update dependency electron to v23.1.2 (#140) 2023-03-03 16:36:19 +00:00

README.md

Vikunja desktop

Build Status License: GPL v3 Download

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

Dev

As this repo 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:

rm -rf frontend vikunja-frontend-master.zip 
wget https://dl.vikunja.io/frontend/vikunja-frontend-master.zip
unzip vikunja-frontend-master.zip -d frontend
sed -i 's/\/api\/v1//g' frontend/index.html # Make sure to trigger the "enter the Vikunja url" prompt

Building for release

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