Submit portable freeware that you find here. It helps if you include information like description, extraction instruction, Unicode support, whether it writes to the registry, and so on.
-
lintalist
- Posts: 225
- Joined: Sat Apr 19, 2014 12:52 am
-
Contact:
#46
Post
by lintalist » Mon Oct 31, 2016 12:25 pm
smaragdus wrote:..... Resource Hacker tip- it was extremely easy to replace the icon- just a few clicks were needed.
Thanks for the details, not as complicated as I'd thought

I would be worried that changing autohotkey.exe like that would increase the chance of the exe to be flagged as a virus (false positive).
-
lintalist
- Posts: 225
- Joined: Sat Apr 19, 2014 12:52 am
-
Contact:
#47
Post
by lintalist » Sat Feb 18, 2017 4:12 am
Update
v1.9.2
- New: Replaced check/radio boxes with button bar (using Class_Toolbar by pulover) andicons from the Fugue & Diagona Icon sets by Yusuke Kamiyamane. #51

- button-bar(1).png (4.76 KiB) Viewed 16351 times
- New: Right click context menu listview #70
- Fix: Refactored LoadAll and Selected Bundle code, should work better now (lintalist.ahk)
- Fix: Refactored duplicate hotkey and shorthand detection code, should work better now (editor.ahk)
- Fix: SetIcon.ahk now also looks at Part2 of the snippet as it should
https://github.com/lintalist/lintalist/releases
-
lintalist
- Posts: 225
- Joined: Sat Apr 19, 2014 12:52 am
-
Contact:
#48
Post
by lintalist » Mon Nov 06, 2017 12:39 pm
Lintalist v1.9.3 -
https://github.com/lintalist/lintalist/ ... tag/v1.9.3
- Improved: TriggerKeys now accept more keys such as ½ or + (+ character, not shift) for example
- Improved: Now there is also a 32x32 size icon button bar accommodating high(er) DPI settings (see BigIcons in settings)
- New: added TryClipboard() to see if clipboard is inaccessible, if so "catch" error and do nothing
- New: Make it possible to include contents of Snippet (part 1 and 2) in script code incl. caret position per snippet (see "Script" in Documentation)
- Change: Similar to modal windows for Local variable etc, Snippet editor now modal - see also v1.8
- Fix: Adding support for UTF-8 characters in Local variabe & Counter Editors ht @exetico
- Fix: ReadIni() now writes in UTF-16 to store settings correctly
- Fix: Closing using X in title bar didn't store Window position for users with Center=2 and now save it to settings.ini as well
- Fix: Closing and Starting Lintalist in Narrow view mode no longer causes error in GUI with empty 'barx' variable
-
lintalist
- Posts: 225
- Joined: Sat Apr 19, 2014 12:52 am
-
Contact:
#49
Post
by lintalist » Mon Jan 01, 2018 2:06 am
v1.9.4 functions, AHK variables, editor w. syntax highlighting
https://github.com/lintalist/lintalist/releases
- New: Functions in Snippets are now also allowed: [[function()]] - both AHK built-in as user defined - #86 https://github.com/lintalist/lintalist/issues/86
- New: support a subset of AutoHotkey built-in variables (A_MyDocuments etc)
- New: Additional safety check when processing snippet by "removing" faulty plugins plus a simple error check when saving snippets.
- New: Editor now has (optional) Syntax highlighting (plugins, html, scripts) by using the RichCode class by @G33kDude - #88 https://github.com/lintalist/lintalist/issues/88 (when using RichCode you can toggle word wrapping in the edit controls by pressing ctrl+w)
- Fix: Editor - "Edit in Editor" routine improved, notepad.exe may not show ".txt" in Window title, and actually delete "__tmplintalistedit.txt" file in tmp folder (didn't do so correctly)
- Change: User plugins (and now functions) can be added to MyPlugins/MyFunctions so future updates of Lintalist won't overwrite plugins/functions added by users each time. See NOTE below.
- Fix: Closing Input and Choice plugins via close button (x) in Gui now properly cancels snippet
- New: added icons to Tray menu and some Search menu entries.
NOTE
User plugins/functions
must now be included in
plugins\MyPlugins.ahk and
plugins\MyFunctions.ahk and no longer in `plugins\plugins.ahk`. Future updated will not overwrite these two files. More information and samples in
https://raw.githubusercontent.com/linta ... -howto.txt