Search found 16 matches

by davidjimenez75
Thu Nov 07, 2024 9:49 am
Forum: Suggestions
Topic: [Dark Mode] Make default 'Alternate row' color darker
Replies: 14
Views: 718

Re: [Dark Mode] Make default 'Alternate row' color darker

Tell me how to Betatesting that. I have a 4K dark mode desktop (Win10 + Win11)
by davidjimenez75
Sat Oct 12, 2024 7:29 am
Forum: Suggestions
Topic: [Dark Mode] Make default 'Alternate row' color darker
Replies: 14
Views: 718

Re: [Dark Mode] Make default 'Alternate row' color darker

Very large 4K screens can be uncomfortable for the eyes if everything is white, Im migrating most of my software settings to Dark Mode now.

Thank you for being open to suggestions. It's great to see developers who are willing to listen to user feedback and consider improvements to their applications.
by davidjimenez75
Sun Oct 06, 2024 8:12 am
Forum: Questions
Topic: Open and Save to MySQL
Replies: 7
Views: 367

Re: Open and Save to MySQL

Talk with Claude.ai about that ;) This is what Claude think about de MySQL Structure -- Create the database CREATE DATABASE IF NOT EXISTS todolist CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; -- Create the user and grant privileges CREATE USER 'todolist'@'%' IDENTIFIED BY 'todolist'; GRANT ALL ...
by davidjimenez75
Sun Oct 06, 2024 7:46 am
Forum: Questions
Topic: Open and Save to MySQL
Replies: 7
Views: 367

Re: Open and Save to MySQL

Is a great first step to test the speed of storing Big TaskLists on MySQL and being able to interact with other systems, event AI (ChatGPT API, Claude API, Ollama on Localhost, etc...) Working OK, thank you! ;) Create the dabase: CREATE DATABASE IF NOT EXISTS todolist CHARACTER SET utf8mb4 COLLATE u...
by davidjimenez75
Fri Oct 04, 2024 6:27 pm
Forum: Suggestions
Topic: [Dark Mode] Make default 'Alternate row' color darker
Replies: 14
Views: 718

Re: [Dark Mode] Make default 'Alternate row' color darker

Dark Mode is a great feature just needs a little color readjusment: Tools > Preferences > User Interface > Fonts and Colors [x] Show gridlines => RGB 75 75 75 [x] Alternate line color => RGB 33 33 33 [x] Group header background color => RGB 0 25 00 [x] Use a task's color for its background [x] Start...
by davidjimenez75
Fri Oct 04, 2024 6:01 pm
Forum: Questions
Topic: Open and Save to MySQL
Replies: 7
Views: 367

Open and Save to MySQL

How can I test the Open/Save to MySQL? For create a local MySQL (in XAMPP for Example) - SERVER=127.0.0.1 - DATABASE=todolist - USER=todolist - PASS=todolist Create the database: CREATE DATABASE IF NOT EXISTS todolist CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE USER 'todolist'@'%' IDENT...
by davidjimenez75
Tue Dec 05, 2023 1:42 pm
Forum: Suggestions
Topic: [Markdown] How to support relative image links when exporting
Replies: 6
Views: 2763

Re: [Markdown] How to support relative image links when exporting

Perfect thats a great solution for the relative images issue. ;) I have found an Apache2 "hack" for realtime replace strings in *.HTML Reports with relatives images from MarkDown over SAMBA + WEBSERVER (Apache2) Everytime the *.tdl is saved by any user the report .HTML is created (with mod_substitut...
by davidjimenez75
Fri Dec 01, 2023 7:21 pm
Forum: Suggestions
Topic: [Markdown] How to support relative image links when exporting
Replies: 6
Views: 2763

Re: [Markdown] How to support relative image links when exporting

The problem is only when we view the exported .HTML over a Web Server so maybe this option will do the trick: - Preferences > Importing/Exporting: [x] Export Markdown relative image links Option not activated by default (by default export markdown images as "file:///" ) Markdown examples (both works...