One thing I am enjoying about the PowerPack2 by @Piotr is the easy of editing filtered items. The capacity to produce a flat list for editing is still one advantage that Workflowy has over Dynalist. But with the new Agenda, you can filter items into a sortable list, and then edit them either from within the list (changing colour, checking, archiving or deleting), or within the item by click on them (this works fine now).
Make the settings exportable/importable: The current settings are displayed as JSON in a textarea. This can be copied and pasted (e.g. on another computer) in the textarea and Powerpack use this. So that the (same) settings can be easily used on multiple computers.
Hi @Piotr One issue I am having with Powerpack (2.3.0) is that I am no long able to drag/drop my bookmarks to reorder them. After dragging to reorder a bookmark, the tree view collapses and when I reopen it, the list reverts back to the same order. I tried disabling Agenda & Omni Panel, but no luck. Anyone else having a similar issue?
PP is working in Firefox on Android (can you install Firefox on iOS?) when wrapped as firefox extension. Sorting, agenda, highlighting etc is looking good, but it will be too hard for regular users to install it, Mozilla needs to accept it first as official extension.
Btw, all this firefox extension does is running this code, there is no need for any other extension for it to work, maybe @Erica would agree to hide deeply in Dynalist settings option “Load Powerpack (experimental, not officialy supported)” which when checked will load this greasyfork script on page load? This way we can have it on every device and browser. And maybe it can be cached so it will be available offline too?
let s = document.createElement('script'); s.type = 'text/javascript'; s.src = 'https://greasyfork.org/scripts/31392-dynalist-powerpack-2/code/Dynalist%20Powerpack%202.user.js'; document.body.appendChild(s);
edit: On mobile Firefox Nightly it’s also possible to inject css into websites with this extension https://addons.mozilla.org/pl/firefox/addon/styl-us/
maybe on stable Firefox version too, but at least for me stylus settings are not visible there
I propose we add a textbox that users can insert a link to any js plugin. This way the system is generic and can be user-tweaked for anything they need, including powerpack.
well now that I think about it your powerpack is applying a style attribute on a node, I could just use a ancestor selector on those individual color tags
/*Make PowerPacks black background work on unique color tags*/
.Node[style] .Node-contentContainer.has-color.mod-color-label-1,
.Node[style] .Node-contentContainer.has-color.mod-color-label-2{
color: white !important;
}
it worked out fine
EDIT: oh wait I messed up all my other color tags now I gotta fix this
this is more specific
/*Make PowerPacks black background work on unique color tags*/
.Node[style^="background: rgb(51, 51, 51)"] .Node-contentContainer.has-color.mod-color-label-1,
.Node[style^="background: rgb(51, 51, 51)"] .Node-contentContainer.has-color.mod-color-label-2{
color: white !important;
}
works fine now
by the way, do you know how to fix this in powerpack?
When I use #s|b:#333|c:white and add in more nodes it uses black text still