=== Program Template (Linked Program Name Here) ===
Version: Stable / Dev
Name: Name
Usage: Description of program usage
Functions: Description of things the program can CURRENTLY do
Status: Work in Progress / Stable / Stable+Dev / Finalized / On Hold - (Reason)
License: FOSS / Restricted FOSS / Free Non-OSS / NA (UDFs Only)
Bugs: List
To do: List
Source (UDFs Only): Source Code
Disclaimer:
This is a disclaimer. I own all the software I code. You also own SOME it. You are legally free to modify, change, and/or redistribute any FOSS licensed software uploaded. I would like some credit if you do modify, change, and/or redistribute my software, however you are not required to. All programs listed in this thread are coded by Robert C. Maehl of Louisville Kentucky. Questions and comments are gladly accepted, however an answer is not guaranteed. <Insert more legal standard stuff here>
=== Benchmark.au3 ===
Version: Not Versioned.
Name: Benchmarking
Usage: Allows you to compare different coding to see which is faster with up to 7 different codes to be compared, and from Infinite or 1 to 9999, test cycles.
Functions: Script Performance Testing
Status: Stable
License: FOSS
Bugs:
When using ShellExecute or Run the first few results will be incorrect. Use RunWait or ShellExecuteWait instead?
To do:
Add choosing a file to benchmark option Add inserting code into the program to benchmark option
=== Cover (UDF) ===
Version: 1.1.0.0
Name: Cover
Usage: It saves your eyes
Functions: Allows for adjustable darkness levels from 0 (no darkness) to 255 (total darkness), Allows for custom colors
Status: Stable
License: NA
Bugs:
None
Todo:
None
UDF:
Func _Cover($iTransparency = 127, $sColor = 0x000000, $fQuit = False) Local $hCover If $iTransparency > 255 Then $iTransparency = 255 If $iTransparency < 0 Then $iTransparency = 0 If $fQuit Then GUIDelete($hCover) If WinExists($hCover) Then GUISetBkColor($sColor, $hCover) WinSetTrans($hCover, "", $iTransparency) Else $hCover = GUICreate("", @DesktopWidth, @DesktopHeight, 0, 0, 0x90000000, 0x08000020) GUISetBkColor($sColor, $hCover) WinSetTrans($hCover, "", $iTransparency) EndIf EndFunc
=== Quick-It ===
Version: 1.0.0.0
Name: Quick-It
Usage: Live AutoIt Script editing
Functions: Allows you to see your GUI as you code it, includes AuStrip (compiled script size decreasing program)
Status: Work in Progress
License: FOSS
Additional Links: AuStrip
Bugs:
Too many to list
To do:
A lot of things
=== URSafe ===
Version: 1.2.1.0 / 2012.1.0.0
Name: URSafe
Usage: Use along side / in replacement of Win+L, Fork of the KidSafe Program.
Functions: Lock mouse to a section of the screen, Covers up to 2x2 screens (based on the height and width of screen 1), Blocks shutdown/task manager/command prompt, Prevents itself from moving/minimizing/closing when locked, Optional Automatic update checker, Allows for feedback (may be limited to status of feedback server)
Status: Stable+Dev
License: FOSS
Additional Links: Parent Program | Google Code
Bugs:
None Known
To do:
(In the shop) Neater coding (In the shop) New versioning format (In the shop) Improved performance (In the shop) Minor settings.ini tweaks (In the shop) Changing of background within URSafe (Planned) Changing of hotkeys (Planned) Calender within URSafe
Edited by rcmaehl, 03 May 2012 - 03:49 PM.




