|
|
|
superboyac
|
 |
« Reply #51 on: June 01, 2009, 06:56:35 PM » |
|
That's a beautiful page.
|
|
|
|
|
Logged
|
|
|
|
|
fenixproductions
|
 |
« Reply #52 on: June 01, 2009, 07:03:30 PM » |
|
2superboyac
Thank you.
|
|
|
|
|
Logged
|
Надо было учиться, а не камни в школу бросать...-- f0dder is my personal hero 
|
|
|
|
|
J-Mac
|
 |
« Reply #53 on: June 04, 2009, 01:58:41 AM » |
|
fenix,
Nice app! Wow, I have to check this darn subforum more often!
Thanks!
Jim
|
|
|
|
|
Logged
|
J-Mac
|
|
|
|
gladtobegrey
|
 |
« Reply #54 on: June 04, 2009, 09:43:39 AM » |
|
ctrl-i seems to insert unwanted blanks after the tags, whereas hitting the 'I' button doesn't? See attached screenshot. Neat little app, BTW.
|
|
|
|
|
|
fenixproductions
|
 |
« Reply #55 on: June 04, 2009, 10:51:23 AM » |
|
2 gladtobegreyThank you for your report. This bug is strange because there is the same part of code responsible for adding tags via buttons and shortcuts (at least for the simplest ones like b, i, tt). It looks like RichTextBox control error with Ctrl+I shortcut: it always inserts additional \t (tab) character! I will try to find solution Edit:I will post fixed version later today. And for people who might be interested in fix: Formatted for C# with the GeSHI Syntax Highlighter [ copy or print] private void codeTB_KeyDown( object sender, KeyEventArgs e ) { ... if (e.Control) { ... if (e.KeyCode == Keys.I) { e.Handled = true; e.SuppressKeyPress = true; //do what you want here } } ... }
|
|
|
|
« Last Edit: June 04, 2009, 11:01:36 AM by fenixproductions »
|
Logged
|
Надо было учиться, а не камни в школу бросать...-- f0dder is my personal hero 
|
|
|
|
fenixproductions
|
 |
« Reply #56 on: June 05, 2009, 12:07:07 PM » |
|
New version 1.0.14 is ready!
I've fixed Ctrl+I problem described in posts above and added Find and Replace dialogues.
|
|
|
|
|
Logged
|
Надо было учиться, а не камни в школу бросать...-- f0dder is my personal hero 
|
|
|
|
cranioscopical
|
 |
« Reply #57 on: June 05, 2009, 03:39:50 PM » |
|
New version 1.0.14 is ready!  Thanks!
|
|
|
|
|
Logged
|
Chris
|
|
|
|
gladtobegrey
|
 |
« Reply #58 on: June 05, 2009, 04:16:13 PM » |
|
New version 1.0.14 is ready!
I've fixed Ctrl+I problem ...
 Thanks!
|
|
|
|
|
Logged
|
|
|
|
|
cranioscopical
|
 |
« Reply #59 on: June 05, 2009, 04:30:45 PM » |
|
Hi fenixproductions. I think I know the answer but have you any way to make text in the spelling checker a larger size?
|
|
|
|
|
Logged
|
Chris
|
|
|
|
fenixproductions
|
 |
« Reply #60 on: June 05, 2009, 05:21:23 PM » |
|
2cranioscopical
Which control do you have in mind? "Text being checked"? Would following font set for editor be enough for you?
If yes, I'll see what can I do.
|
|
|
|
|
Logged
|
Надо было учиться, а не камни в школу бросать...-- f0dder is my personal hero 
|
|
|
|
cranioscopical
|
 |
« Reply #61 on: June 05, 2009, 06:14:13 PM » |
|
2cranioscopical
Which control do you have in mind? "Text being checked"? Would following font set for editor be enough for you?
If yes, I'll see what can I do.
Indeed, "Text being checked". That's the most difficult part for me to read at my screen res. I can pretty much work out "Suggestions" by word shapes, without having to read those carefully. Anything you can do would be much appreciated 
|
|
|
|
|
Logged
|
Chris
|
|
|
|
fenixproductions
|
 |
« Reply #62 on: June 05, 2009, 06:38:15 PM » |
|
1.0.15 is out. SpellChecker preview font now follows code editor. I have also added simple status bar 
|
|
|
|
|
Logged
|
Надо было учиться, а не камни в школу бросать...-- f0dder is my personal hero 
|
|
|
|
cranioscopical
|
 |
« Reply #63 on: June 05, 2009, 07:11:28 PM » |
|
1.0.15 is out. SpellChecker preview font now follows code editor. I have also added simple status bar  Brilliant, thanks! Some d-credits are heading your way!
|
|
|
|
|
Logged
|
Chris
|
|
|
|
fenixproductions
|
 |
« Reply #64 on: June 06, 2009, 12:52:43 PM » |
|
New version ( 1.0.16) is out! I've fixed small bugs with lists in Settings window. I have also added "Snippets" feature (activated on Ctrl+Space).  Please remember: if you want to have mullti-line snippet, you can jump to new line using Ctrl+Enter. Simple Enter closes Settings window!
|
|
|
|
|
Logged
|
Надо было учиться, а не камни в школу бросать...-- f0dder is my personal hero 
|
|
|
|
cranioscopical
|
 |
« Reply #65 on: June 06, 2009, 04:08:17 PM » |
|
Nice addition, fenixp. Two things. Either snippets don't work for me or I don't understand them. I have two snippets set up. The snippets window pops up on Ctrl-space. I can select either one of my two test snippets but can't see how to get the snippet content into the message body.
Also, can we have something other than Ctrl-Space, which launches FARR on my system? Please?
|
|
|
|
|
Logged
|
Chris
|
|
|
|
fenixproductions
|
 |
« Reply #66 on: June 06, 2009, 04:28:34 PM » |
|
2cranioscopical Which shortcut do you propose?
BTW Try this use case: 1. Ctrl+Space to show list, 2. choose proper item using arrows, 3. hit Enter key.
Currently, it works with keyboard only but I plan to add mouse clicks handling later.
I think you could misunderstood "Ctrl+Enter" case which applies for Settings window only.
|
|
|
|
« Last Edit: June 06, 2009, 04:31:34 PM by fenixproductions »
|
Logged
|
Надо было учиться, а не камни в школу бросать...-- f0dder is my personal hero 
|
|
|
|
cranioscopical
|
 |
« Reply #67 on: June 06, 2009, 05:08:24 PM » |
|
2cranioscopical Which shortcut do you propose?
BTW Try this use case: 1. Ctrl+Space to show list, 2. choose proper item using arrows, 3. hit Enter key.
Currently, it works with keyboard only but I plan to add mouse clicks handling later.
The shortcut: I discovered that CRTL +ALT+SPACE works just fine as things are now, so please ignore my request for an alternative. Usage "3. hit Enter key": works perfectly! My mortification is complete  Thanks for the help!
|
|
|
|
|
Logged
|
Chris
|
|
|
|
fenixproductions
|
 |
« Reply #68 on: June 06, 2009, 05:31:22 PM » |
|
The shortcut: I discovered that CRTL+ALT+SPACE works just fine as things are now I am glad it works but I was not aware it can work this way  It works because I am checking for Ctrl+Space without disabling other special keys (like Alt or Shift). Since it suits your need I can leave it as it is. Do you have any wishes for variables support? I thought about adding dates in similar way as file name pattern (though it might need some fixes).I've implemented dates support and it will be released with next version.
|
|
|
|
« Last Edit: June 06, 2009, 08:08:07 PM by fenixproductions »
|
Logged
|
Надо было учиться, а не камни в школу бросать...-- f0dder is my personal hero 
|
|
|
|
cranioscopical
|
 |
« Reply #69 on: June 06, 2009, 06:23:18 PM » |
|
Speaking purely for myself, I think the current state covers all that I want. That said, I seem to find uses for your innovations whenever they arrive.  If it causes no conflicts elsewhere, please leave the CTRL+[other]+space enabled.
|
|
|
|
|
Logged
|
Chris
|
|
|
|
fenixproductions
|
 |
« Reply #70 on: June 06, 2009, 07:02:54 PM » |
|
1.0.17 is out! I've added date variables support for snippets  There is also "Match simple URLs" option added for showing URL addresses as clickable links in preview even if there is no matching tag (url or email) written. I did it because some BB engines do not need tags for them at all!
|
|
|
|
|
Logged
|
Надо было учиться, а не камни в школу бросать...-- f0dder is my personal hero 
|
|
|
|
cranioscopical
|
 |
« Reply #71 on: June 06, 2009, 08:00:07 PM » |
|
Nice one!
This is a snippet over 3 lines with a date June 6, 2009
|
|
|
|
|
Logged
|
Chris
|
|
|
|
fenixproductions
|
 |
« Reply #72 on: June 06, 2009, 08:24:05 PM » |
|
Nice one!
This is a snippet over 3 lines with a date June 6, 2009

|
|
|
|
|
Logged
|
Надо было учиться, а не камни в школу бросать...-- f0dder is my personal hero 
|
|
|
|
cranioscopical
|
 |
« Reply #73 on: June 06, 2009, 09:12:08 PM » |
|
So, snippets are good. They can also do what I mention below, but without an icon. How about a custom button type that allows for simple text? So that one could set up, say, a button showing  that would insert the appropriate string.
|
|
|
|
|
Logged
|
Chris
|
|
|
|
fenixproductions
|
 |
« Reply #74 on: June 06, 2009, 09:28:36 PM » |
|
2cranioscopical
I think it's almost possible now: 1. add custom button 2. set it as: Single 3. set BBcode as: ;) 4. set HTML code: img src="D:\txt_garbage\thumbsup.png" 5. set picture path: D:\txt_garbage\thumbsup.png
Do I understand correctly that the only difference would be to not have [] added and/or allow skipping HTML code for it at all?
If yes, I could do it in next version :)
|
|
|
|
|
Logged
|
Надо было учиться, а не камни в школу бросать...-- f0dder is my personal hero 
|
|
|
|