Closed zappolowski closed 1 month ago
:warning: Please install the to ensure uploads and comments are reliably processed by Codecov.
Attention: Patch coverage is 0%
with 1 line
in your changes missing coverage. Please review.
Project coverage is 65.37%. Comparing base (
c1cc6d1
) to head (97510de
).
Files with missing lines | Patch % | Lines |
---|---|---|
src/icon.c | 0.00% | 1 Missing :warning: |
:exclamation: Your organization needs to install the Codecov GitHub app to enable full functionality.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
ok for me. it works with multiple paths right?
what about using TYPE_PATH for icon_path tough?
it works with multiple paths right?
Yes, every path (separated by :
) is processed on its own.
what about using TYPE_PATH for icon_path tough?
I don't think this would work, as TYPE_PATH
is used for single argument which is then expanded. What might work instead would be the introduction of a new type e.g. named TYPE_PATH_ARRAY
, which then could be processed on reading the configuration (opposed to expansion on usage like it's currently done).
well, I guess this is all right
@zappolowski works as expected!
On a side note, for some reason, this branch dunst (and master I assume) uses global.height
as min height instead of max height (only expand when content size demands) unlike v1.11.0.
Is this intentional or should I open an issue?
@zappolowski works as expected!
On a side note, for some reason, this branch dunst (and master I assume) uses
global.height
as min height instead of max height (only expand when content size demands) unlike v1.11.0. Is this intentional or should I open an issue?
See #1342. Now global.height is a range. if you specify a single number the max = min and the size is fixed. Otherwise you can specify (min, max). Just like the width value
icon_path
was used verbatim which doesn't resolve e.g.~
or$HOME
. Asstring_to_path
already exists, we can use it for the resolution here as well.This fixes #1371.