Commit graph

191 commits

Author SHA1 Message Date
nadrad f81de41fe9 moving is now compatible with hidden nodes 2023-03-18 08:18:11 +01:00
nadrad 2dc9ebdd4c sibling activated when node becomes hidden 2023-03-17 20:24:17 +01:00
nadrad d16214e78d hidden nodes 2023-03-17 20:04:49 +01:00
nadrad 3f6095a8ed customizable symbols 2023-03-15 09:24:48 +01:00
nadrad d3afbd7ac4 align-levels feature 2023-03-15 09:09:17 +01:00
nadrad 8c4c8f8e3a added an extra line break at the end of saved file 2023-02-10 09:53:54 +01:00
nadrad 3430d33aeb removing the window title when quitting 2023-02-07 20:21:56 +01:00
nadrad 80fb6a66ab fixed the default value for save-as 2023-02-07 20:16:39 +01:00
nadrad 40014b2ee0 file name as the window title 2023-02-07 20:12:50 +01:00
nadrad ae3dfd0ee3 fixed the capitalization of the logo 2023-02-05 18:49:45 +01:00
nadrad 34452de519 shows the logo when the application is opened 2023-02-05 18:22:33 +01:00
nadrad 204f3f9d2d txt export basics 2023-02-05 08:23:29 +01:00
nadrad 5e216d6dad fixed the single-child Y alignement issue 2023-01-07 22:46:24 +01:00
nadrad d53c923049 fix - dimming the numbers at the beginning
It wasn't formatting them when they were at the same Y as the
active node. Now they are, but in return, the rest of those
titles are not bold when active.
2023-01-07 12:39:31 +01:00
nadrad 9ce26f65ba padding the numbers 2023-01-07 12:29:42 +01:00
nadrad d06a279450 fix - dimmed numbers at the beginning 2023-01-07 12:23:54 +01:00
nadrad 4e9e12d440 added 'T' for sorting siblings 2023-01-01 11:14:54 +01:00
nadrad cdaf8e5be4 'V' for collapsing the children 2022-12-31 22:48:16 +01:00
nadrad c7f117d21d added the ranking feature 2022-12-22 17:07:30 +01:00
nadrad 16c5185ba1 fixes the escape code in config values 2022-11-25 14:03:22 +01:00
nadrad 828df2bc5d added --debug-config 2022-11-25 13:38:07 +01:00
nadrad 13114e8a23 printing error if custom config file doesn't exit 2022-11-25 08:41:09 +01:00
nadrad 9f32fb7be6 Merge branch 'main' of https://github.com/nadrad/h-m-m 2022-11-08 13:45:06 +01:00
nadrad 2b5ee46d63 fixed filename argument when there are settings 2022-11-08 13:44:15 +01:00
nadrad 1ba2615f0d clean up \n in the text pasted in the readline fn 2022-10-29 12:18:55 +02:00
nadrad a663f0b941 won't delete the node when shift+e is cancelled 2022-10-29 11:07:11 +02:00
Nader K. Rad f06842a4bd
Merge pull request #39 from d5ve/small-dockerfile-tweak
Dockerfile: Copy h-m-m to image as one of the final steps of the build
2022-10-24 10:55:53 +02:00
nadrad 6ec308ad5b remove new node when there's no title 2022-10-24 10:49:26 +02:00
nadrad 70e1c5f875 key binding for adding and removing seq. nums 2022-10-13 12:30:38 +02:00
nadrad be86b68886 fix the problem with opening empty files 2022-10-13 10:45:40 +02:00
nadrad 9ab20b40da check mark and ballot X character toggle
It's a quick way of adding the ✓ and ✗ symbols at the beginning of titles by pressing the 't' key.
2022-10-12 13:25:21 +02:00
Dave Webb d235452302 Copy h-m-m to image as one of the final steps of the build
Each edit to the h-m-m script was triggering a full image rebuild,
including the slow apt-get and docker-php-ext-install steps.

I figure that the h-m-m script itself is more likely to change than the
system installs.

Moving the COPY to after those operations means that each time h-m-m
changes, the `docker build` can use the cache for the slow operations,
and just add a new layer for the COPY at the end.

Plus `chmod +x h-m-m` is unnecessary as h-m-m already has the executable
bit set.
2022-09-29 22:03:40 +13:00
nadrad 3a1f2db77d shell command after exporting 2022-09-29 10:14:11 +02:00
nadrad 80bf357301 clearer explanation of the clipboard options 2022-09-26 17:11:27 +02:00
nadrad a61e4acfc7 added internal, file, and command clipboard types
* `--clipboard=os` uses xclip and similar applications (default).
* `--clipboard=internal` uses an internal variable as the clipboard without exchanging content with external applications.
* `--clipboard=file` along with `--clipboard-file=/path/filename` uses the file as the clipboard.
* `--clipboard=command` uses `--clipboard-in-command="command %text%"` to send content and `--clipboard-out-command=command` to receive.
2022-09-26 17:09:45 +02:00
nadrad b655e0e928 fixed ctrl+delete in the editor 2022-09-25 09:14:33 +02:00
nadrad 8116d7ad4b fixed ctrl+backspace bug 2022-09-25 08:58:19 +02:00
nadrad c870e3b098 ignore the 'NEW' text when editing nodes 2022-09-24 10:54:08 +02:00
nadrad ff3c6814b5 negative x for some messages! 2022-09-23 11:11:16 +02:00
nadrad 60dcb18842 Merge branch 'main' 2022-09-23 11:03:20 +02:00
nadrad ab1f4d5ba1 fixed ctrl+bs in the beginning of lines 2022-09-23 11:02:32 +02:00
Nader K. Rad b9b26703fc
Merge pull request #34 from jinjaghost/main
one less substraction on undo
2022-09-23 10:41:00 +02:00
Ken Polizzi 062d6bb9b0 one less substraction on undo 2022-09-21 16:20:09 +02:00
nadrad e4ef78bbf9 php_eol instead of \n 2022-09-20 20:49:23 +02:00
Nader K. Rad fa07f5f819
Merge pull request #32 from micgro42/main
Don't clear the screen when erroring out
2022-09-20 20:32:08 +02:00
nadrad 5bcd39d3e8 normal exit() instead of shutdown() for no clpbrd 2022-09-20 20:29:25 +02:00
Michael Große ae185ceb02 Don't clear the screen when erroring out
The shutdown() function clears the screen which makes it very hard to
debug what is wrong. Thus exiting with exit(1) which is also used in
other error conditions.
2022-09-20 15:22:22 +00:00
nadrad 4f06418b89 smarter file naming 2022-09-20 11:38:06 +02:00
nadrad 5074ae39d8 configuration 2022-09-19 20:53:38 +02:00
nadrad 45e60e2c8d refactoring names + more config options 2022-09-19 20:33:27 +02:00