Package Details: morgen-bin 3.6.1-1

Git Clone URL: https://aur.archlinux.org/morgen-bin.git (read-only, click to copy)
Package Base: morgen-bin
Description: Morgen is a modern, intuitive and smart calendar application and successor to MineTime
Upstream URL: https://morgen.so
Keywords: calendar
Licenses: custom
Provides: morgen
Submitter: eso
Maintainer: eso
Last Packager: eso
Votes: 6
Popularity: 0.000080
First Submitted: 2021-06-23 09:38 (UTC)
Last Updated: 2024-11-19 13:03 (UTC)

Latest Comments

« First ‹ Previous 1 2 3

eso commented on 2022-12-26 17:26 (UTC)

@Kimble: The download site seems to be offline or malfunctioning right now. From what I see, this doesn't seem to be an issue with the PKGBUILD.

Kimble commented on 2022-12-26 15:34 (UTC)

Failure while downloading:

$ yay -S morgen-bin

:: Checking for conflicts...
:: Checking for inner conflicts...

[Aur:1]  morgen-bin-2.6.3-1

==> Retrieving sources...
  -> Downloading morgen-2.6.3.deb...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
curl: (22) The requested URL returned error: 403
==> ERROR: Failure while downloading https://download.todesktop.com/210203cqcj00tw1/morgen-2.6.3.deb
    Aborting...
 -> error downloading sources: morgen-bin 
     context: exit status 1 

Output of the https://download.todesktop.com/210203cqcj00tw1/morgen-2.6.3.deb:

210203cqcj00tw1/morgen-$ not found

Ezio652 commented on 2022-07-26 13:19 (UTC)

@eso: Yep everything is working now, thx! :)

eso commented on 2022-07-26 12:55 (UTC)

@Ezio652: That's what you get when you rush things :) Should be fixed, can you please confirm?

Ezio652 commented on 2022-07-26 12:44 (UTC)

@eso:

There seems to be an oversight with the hashsum. I think you forgot to update the start script hash to the suggestion :)

Thank you for including it so quickly! :)

eso commented on 2022-07-26 11:08 (UTC)

Thanks, that's a great idea. I've included it in the recent commit.

Ezio652 commented on 2022-07-26 10:57 (UTC)

With 2.5.8 comes also wayland support. Maybe we could change the morgen-start script to the following:

#!/bin/env sh

if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
    /opt/Morgen/morgen \
        --enable-features=UseOzonePlatform,WaylandWindowDecorations \
        --ozone-platform=wayland \
        $@
else
    /opt/Morgen/morgen $@
fi