Ruslan Semak
Ruslan Semak
@VityaSchel but you'r suggested program is paid, 9$, but flycut is free :) pay 9 dollars only for removing icon from status bar is expensive as for me 😢
> cb(null, [chunk.eventDate, chunk.eventDateTime, data.numericValue].join('\t')); You forgot about '\n', full working code looks like this: > cb(null, [chunk.eventDate, chunk.eventDateTime, data.numericValue].join('\t') + '\n');
or add a "Show Icon in Menu Bar" checkbox option allowing users to un-check and disable the icon :)
@JoshLeez Try to change property definition from ``` @Column declare list: string; ``` to ``` @Column({ type: DataType.STRING }) public list: string; ```