
Source (link to git-repo or to original if based on someone elses unmodified work): https://github.com/Zren/plasma-applet-todolist
Requires the plasma-widgets-addons package (sudo apt install plasma-widgets-addons) since we use the sticky note widget's code to save to file.
* List is saved to ~/.local/share/plasma_notes/todolist which you can open up in your text editor and edit (changes will sync to the widget).
* Checkbox: Complete note (deletes it).
* Links are auto-detected.
* Shift+Enter: New line on current item.
* Enter: Next Item.
* Up/Down: Select Item.
* Ctrl+Up/Down: Reorder Item.
* Number of incomplete items is shown in the panel icon.
* Alt+Enter or Ctrl+Enter: Toggle complete (deletes it).
v12 - May 12 2020 8 months ago
* Comment out unused import for PlasmaComponents3 (Issue #16) (Pull Request #18 by @eiffel-fl)
* Update i18n scripts.
* Add Croatian translations by @VladimirMikulic (Pull Request #22)
* Add French translations by @gabriel-tessier (Pull Request #21)
v12 - May 12 2020 8 months ago
* Comment out unused import for PlasmaComponents3 (Issue #16) (Pull Request #18 by @eiffel-fl)
* Update i18n scripts.
* Add Croatian translations by @VladimirMikulic (Pull Request #22)
* Add French translations by @gabriel-tessier (Pull Request #21)
v11 - March 31 2019 1 year ago
* Strikeout completed items (optional) when not deleting on complete (Issue #9). Also optionally fade completed items.
* Hide "Desktop Widget: Show Background" toggle when widget is in the panel.
* Updated Dutch translations by @Vistaus (Pull Request #15)
v10 - February 8 2019 1 year ago
* Add Dutch translations by @Vistaus (Pull Request #8 and #12)
* Add toggle show showing the text field background for the list title (Issue #11)
v9 - December 3 2018 2 years ago
* Add toggle for the desktop widget background to add it back.
* The list title is now bold with an outline using the background color. There is a toggle for the outline and boldness in the config.
* Add ability to temporily hide the list in case the user does not it visible but doesn't want to go through the hassle of removing and adding it back.
* Remove the list title right margin when used as a desktop widget which is only needed for leaving room for the pin button in a panel widget's popup.
v8 - August 30 2018 2 years ago
* Make sure there's enough room for each section. Fixes a infinite loop when trying to resize the desktop widget with 2+ lists.
* Add Ctrl+Return and Alt+Return shortcut to toggle item as complete (by @mcorteel).
* Fix sectionData is undefined warning when loading, which broke the issue count in the panel (Issue #4).
* Don't align list items to bottom of popup when in a top panel (Issue #6).
* Fix textbox overlapping checkbox when using 1x DPI and 20px font size (instead of 10px).
v7 - August 3 2017 3 years ago
* Support multiple lists side by side. Each list is seperated by a heading in the file.
* Can drag and drop the lists to reorder them. Can drag items between lists.
* Can add a new list via the context menu. The delete button will prompt before deleting.
* Lines have the excess whitespace at the end of the line stripped.
v6 - June 28 2017 3 years ago
* Fix height calculation (we ignored the height taken by the pin button).
* Use Plasma's panel icon size (which can be set in System Settings > Icons > Advanced).
v5 - May 7 2017 3 years ago
* Remove ability to hide completed items.
* Added ability to remove items when completed instead, which will hide the "delete item" button (this is the new default).
* Added ability to reorder items.
* Focus on "new item" when popup is opened.
* Add scrollbar.
* Disable copy/cut/paste context menu so it's easier to open the widget context menu.
v4 - December 14 2016 3 years ago
* Fix bug overwriting the wrong index when hiding completed items.
v3 - December 14 2016 4 years ago
* Show the number of incomplete icons in the panel icon using the same badge as the taskmanager (file transfer / downloads).
* Fix adjusting the height according to the number of items displayed (shouldn't show a scrollbar until it's taller than the screen).
v2 - August 31 2016 4 years ago
* Support KDE 5.5 / Qt 5.5
* Support tabs when editing the file itself. Also automatically indent when the file is saved.
* Remove a ton of excess logging.
brighton35
5 hours ago
Report
brighton35
5 hours ago
Report
salvaju29ro
1 month ago
Report
smarteist
1 month ago
Report
systorture
4 months ago
Report
systorture
4 months ago
Report
kdemichl
5 months ago
Very handy
Report
FoxIII
9 months ago
Report
jcmljunior
9 months ago
Em relação a problemas, quando passo o mouse sob um item da lista, a opção deletar não é exibida, só aparece quando eu clico.
O titulo da lista por outro lado, quando passo o mouse, o Ãcone para deletar é exibido.
Parabéns pela extensão.
Report
jcmljunior
9 months ago
Report
madeiraantonio97
11 months ago
É simplesmente sensacional, um bom assistente de tarefas e de fácil configuração.
Report
madeiraantonio97
11 months ago
Report
lexover
1 year ago
Report
laurento
1 year ago
Very nice and usefull.
The idea to use a formatted and human readable text file is brillant!
Upvote for : If possible, to set a custom path and/or file name to save all lists and each list separately.
Report
laurento
1 year ago
The idea to use a formatted and human readable text file is brillant!
Upvote for : If possible, to set a custom path and/or file name to save all lists and each list separately.
Report
carmeline
1 year ago
Would like an option to hide the little counter icon tho.
And if possible, to set a custom path to save all lists and each list separately.
Report
odzin
1 year ago
Report
DanielRios549
1 year ago
Report
akwala
1 year ago
Report
RustyRaptor
1 year ago
Report
muhabi91
1 year ago
Report
Zren
1 year ago
Report
locoweed
1 year ago
Report
locoweed
1 year ago
Report
Zren
1 year ago
Open up: `~/.local/share/plasma/plasmoids/com.github.zren.todolist/contents/ui/FullRepresentation.qml`
https://github.com/Zren/plasma-applet-todolist/blob/master/package/contents/ui/FullRepresentation.qml
As you can see, I sorta tried making the popup grow in size, but it seems that's not working for you. Try a simple:
Layout.preferredHeight: units.gridUnit * 40
to double the height of the popup.
To test your changes, run `killall plasmashell; kstart5 plasmashell` to reload the panel (or relog).
Report