Autor Thema: Entwicklertools diverses  (Gelesen 73372 mal)

0 Mitglieder und 1 Gast betrachten dieses Thema.

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
Dev-C++ v5.5.3
« Antwort #90 am: 15 Dezember, 2013, 19:45 »
Orwell's Dev-C++ is an IDE for the C/C++ programming language based on the Mingw port of GCC. It features a project manager, syntax highlighting editor, class browser, code completion, integrated debugging etc.

License: GPL

Whats new: >>

Fixed lib32, -m32 and gdb32 not being used by default by 32bit profiles.
The function tooltip works again.
The function tooltip hides again when its editor goes out of focus.
Fixed a possible crash in the code completion window.
Removed some superfluous spaces from variables found in argument lists.

http://orwellengine.blogspot.com/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
FNX Basic v02-2013
« Antwort #91 am: 16 Dezember, 2013, 18:15 »
FNXBasic is a programming language to create Windows applications. The package contains a compiler and an editor to edit your basic code. You can use many windows components like comboboxes, listboxes,forms etc into your program. The type of the language is a legacy of the old basic, expanded with windows objects and uses OOP (object orientated programming). It is also possible to write console applications.

Freeware

Whats new: >>

bug with &H and &b negative numbers fixed
command copyfile source,target added
console input-using command added
function dayspan added
function minutespan added
bug with wintimer.enabled fixed
bug editor shape record fixed
major bug with record type fixed
version information option added
some examples added

http://www.fnxbasic.com/index.html

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
AutoIt 3.3.10.0
« Antwort #92 am: 23 Dezember, 2013, 14:15 »
AutoIt is a BASIC-like scripting language designed for automating the Windows user interface. It uses a combination of simulated keystrokes, mouse movement and window/control manipulation in order to automate tasks or perform user interface testing.

License: Freeware

Whats new: >>

AutoIt:
Removed: PluginOpen() and PlugInClose() removed to due to not being used and never having progressed past the experimental stage.
Changed: Removed Windows 2000 support. Minimum supported OS is now Windows XP RTM / Windows Server 2003.
Changed: upx.exe from 3.07 -> 3.91.
Changed: PCRE regular expression engine updated to 8.33.
Changed: Default newline character for PCRE regexes changed to ANYCRLF.
Changed: ReDim works on arrays declared as static.
Changed: Run-time errors on objects no longer fatal (execution of the script is not halted).
Changed: Allowing multiple COM Error Handlers. Last one registered and alive gets called.
Changed: VT_NULL VARIANT converts to Null keyword (previously empty string).
Changed: Default manifest file on AutoIt and compiled exes is set for "AsInvoker" and tagged with compatibility for Vista/Win7/Win8 and Win8.1.
Changed: #NoAutoIt3Execute option replaced with #pragma compile(AutoItExecuteAllowed, false). Default is false.
Changed: IsAdmin() function changed to be based on token membership. Maybe more acurate for Sandbox type environments.
Changed: ShellExecute() will return the process ID.
Added: DriveGetType() updated so that it can detect SSD, and also bus types (SATA, USB, etc.).
Added: Interpreter accepts 64bit hex numbers.
Added: Keyword Null.
Added #488: Third parameter for ObjGet() function to specify object instance.
Added: Compound assignment operators for object properties.
Added #1191: Explicit size of arrays optional for explicit initialization.
Added: Array access on expression: StringSplit("a,b", ",")[1]
Added: Dot access on expression: ObjCreate("Shell.Application").GetSystemInformation("DirectoryServiceAvailable")
Added: Empty arrays.
Added: Functions can now be referenced in variables and the function can be called through the variable.
Added: FuncName().
Added: Built-in functions that take a callback now be passed directly in addition to the old method of passing as a string. Built-in functions can also be passed now (be careful that the function you pass matches what the caller expects).
Added: C++ style ternary operators: Local $fResult = ("foo" = "bar") ? True : False
Added: Expression as default function parameter.
Added: With...EndWith can be used on expressions having dot-access.
Added: Nested "With...EndWith".
Added: Call() calls built-in functions.
Added: ByRef with Call() function.
Added: Support for more COM VARIANT types.
Added: @OSVersion supports Windows 8.1 and Windows 2012 R2.
Added: Regular expressions (PCRE engine) now using the new native 16bit mode and also compiled with full UCP support. Prefix patterns with (*UCP) to enable.
Added: @LocalAppDataDir for local AppData (@AppDataDir is the roaming location)
Added: StringReverse() - a UTF16 compatible string reversal function.
Added: FileReadToArray() - native version of _FileReadToArray().
Added #2358: FileInstall() accepts @ScriptFullPath as the first parameter to allow easy inclusion of the script source.
Added #2433: Monospaced in Fonts appendix.
Fixed #2067: -2147483648 not stored as int32.
Fixed #2003: ProcessWaitClose() using too much CPU.
Fixed #2076: COM VARIANT not correctly set for boolean True.
Fixed #2015: DllCallbackRegister() mangles floating point numbers under x64.
Fixed: x64 DllCall not setting double type parameters correctly.
Fixed: DllCallbackRegister() not returning floating point types correctly.
Fixed: Different issues with Static keyword.
Fixed #2078: Error in com expression.
Fixed #2073: Unexpected termination with ContinueLoop.
Fixed #1485: Unexpected termination with ContinueCase.
Fixed: Crash in ObjEvent() for ByRef object parameters.
Fixed #2068: Repeated calls to Acos() no longer produce strange results. NOTE: This fix increases the size of AutoIt by approximately 60KB.
Fixed: ObjGet() fails validating class identifier properly when first parameter for the function is specified.
Fixed #2111: RunAs() could fail even if a user had the correct permissions to use it.
Fixed #1395: DLLCallbacks on Exit.
Fixed: Ptr() returns null pointer for objects.
Fixed #1319: Hang at exit for RichEdit user controls.
Fixed #2138: Fixed GUICtrlRead() on dummy controls was corrupting strings and possibly crashing AutoIt.
Fixed #1760: #OnAutoItStartRegister ignores single quoted function names.
Fixed #2146: Crash when closing AutoIt when started from a console window.
Fixed: DLLStruct type forgotten in comparison operations.
Fixed: "struct" type parameter in DllCall() overwrites possibly following parameters.
Fixed #1566: Array as its own element issue.
Fixed #1551: Crash the script when changing array.
Fixed: ReDim allows initialization to non-array.
Fixed #2166: StringToASCIIArray() and StringFromASCIIArray() did not correctly return an empty string when the start index is greater than the end index.
Fixed #1901: 32-bit compiled scripts now work from the system32 directory on 64-bit Windows.
Fixed #2157: ProcessList() would crash if there were more than 512 running processes.
Fixed #2215: Bad syntax check for default function parameters.
Fixed #2222: Non-ASCII characters not allowed in object properties/methods.
Fixed #2235: ProcessGetStats() defaulted to using the current process if an invalid process was specified.
Fixed #2253: Ping() returns success with no connection.
Fixed #1498: #RequireAdmin endless loop for disabled UAC.
Fixed #1698: GUICtrlSetLimit(), limit 32767
Fixed: Subtle bugs with Ping()
Fixed #2286: GUICtrtlGetState() without a controlID parameter runs but aborts AutoIt.
Fixed #2350: Strange issue when using $SS_ETCHEDVERT and $SS_ETCHEDHORZ.
Fixed #2311: Wrong handling of casesense parameter in StringReplace()
Fixed #2361: RegRead() doesn't read REG_QWORD values.
Fixed #2362: WinGetText() and ControlGetText() would sometimes give invalid results due to the target application's handling of WM_GETTEXT.
Fixed #2075: GUICtrlSetImage() changes icon position on resizable window.
Fixed #1667: WinMove() Child window.
Fixed #2367: Sometimes two COM objects wouldn't be classed as equal during comparisons.
Fixed #1024: GUICtrlSetTip() for tabitems sets incorrectly in certain situations.
Fixed #2366: For loop not working as expected.
Fixed #2384: UDPRecv() and TCPRecv() not setting @error correctly in some instances.
Fixed #2314: Cursor flickers when moving over certain GUI controls.
Fixed #2066: DllStructSetData() returning int64 instead of int32 in some cases.
Fixed #2427: ControlTreeView() does not used Option2.
Fixed #2105: RegRead() and DWORD types incorrectly stored as double.
Fixed #2299: GUI Button Text Left-Justify for colored button.
Fixed #1954: ListViewItem returns 0 (failure) even though it populates the ListView.
Fixed #2152: X^2 Not Working in Hex().
Fixed #1870: @GUI_DragFile.
Fixed #2461: GUICtrlSetImage doesn't handle certain types of .gif file.
Fixed #2167: $WS_EX_LAYOUTRTL and GUICtrlCreateMenu causes bug.
Fixed #2468: #OnAutoItStartRegister function doc precision.
Fixed #2315: @OSVersion WIN_2012 support.
Fixed #2171: TCPTimeout inconsistent.
Fixed #2518: Static keyword not working correctly.
Fixed: StringStripCR() and StringAddCR() not working with strings that contain nulls.
UDFs:
Removed #2174: Explicitly checking if the source and insert strings for _StringInsert() were strings and forcing an @error return value. (@error values 2 and 3 have been removed, please check the documentation.)
Removed #2187: Forcing _GUICtrlRichEdit_Create() to create a richedit control in a positive position. (@error values 103 and 104 have been removed, please check the documentation.)
Removed #2172: Select...EndSelect statement from _StringRepeat() and replaced with an If...EndIf as well as optimised the code.
Removed: Documentation and example for _Iif(). Scripts should be updated to use ternary operators instead.
Removed: Documentation and example for _StringEncrypt(). Scripts should be updated to use the Crypt functions instead. Look at _Crypt_EncryptData() for an alternative example.
Removed: _ArrayCreate() from Array.au3.
Removed: Function headers in the UDFs, as information about the function can be found in the help file, This removal resulted in a 32.23% size reduction to the includes folder (7.01MB ->> 4.40MB).
Removed: Documentation and example for _StringReverse(). Scripts should be updated to use the native function StringReverse() instead.
Removed: $tagGDIPPENCODERPARAMS (duplicate of $tagGDIPENCODERPARAMS).
Changed #2117: _FileCountLines() writing to a temporary array to calculate the number of lines in a file.
Changed: _FileListToArray() to accept the Default keyword to use the default parameters.
Changed: _FileReadToArray() to parse the file using a regular expression. Now various line endings (not recommended) are displayed correctly in the array.
Changed: Word UDF was completely re-written. Function names changed from _Word* to _Word_*. THIS IS A SCRIPT BREAKING CHANGE.
Changed: _Max() and _Min() functions now use the ternary operator.
Changed: Re-wrote _ReplaceStringInFile() by removing the need to write to a temporary array. (@error values 4, 5 and 6 have been removed, please check the documentation.)
Changed: Re-wrote _GetIP() for improved efficency and added http://www.myexternalip.com/raw to find the external IP address.
Changed: _SQLite 3.7.2.0 -> 3.8.2.0.
Changed: IE3.au3 v3.0-0 to v3.0-1 (see header info for changes).
Changed: Array UDF now takes into consideration empty arrays.
Changed: Re-wrote _ProcessGetName() for speed enhancements.
Changed: Re-wrote _PathSplit() by using a regular expression. Contributed by DXRW4E.
Changed: _GDIPlus_GraphicsGetSmoothingMode(), _GDIPlus_GraphicsSetSmoothingMode() functions.
Changed: _FileWriteToLine() can read a file with various line endings (not recommended).
Changed: $tagGDIPENCODERPARAMS using $tagGDIPENCODERPARAM.
Changed: _GDIPlus...() using integer or float for positioning.
Changed: Modified _ArrayUnique() with a faster version and improved error checking.
Changed: $INTERNET_FLAG_NO_CACHE_WRITE default value for _FTP_ListToArray*().
Changed: _ArrayDisplay() - new function with new functionalities.
Changed: GUIListView - new _Delete* functions.
Added: _WinAPI_GetProcAddress() function.
Added #2126: Documentation remark about _ArrayDisplay() being able to display a maximum of 65530 items.
Added #1158: WinAPIEx integrated, split under WinAPI*.au3.
Added #2250: DirMove() to the related section of DirCopy().
Added #2155: Missing documentation for the default working directory of Run() / RunWait().
Added #2224: Optional parameter to _FileReadToArray() to return the array count in the first element.
Added #2114: Disabling and enabling the redrawing message to increase the speed of displaying _ArrayDisplay(). (Only noticeable on large arrays.)
Added #2120: Disabling and enabling the redrawing message to increase the speed of deleting items with _GUICtrlListView_DeleteAllItems(). (Only noticeable when deleting many items in a ListView.)
Added #966: Optional parameter to return the full path of the file/folder in _FileListToArray().
Added #2193: _StringTitleCase(), to create a title case string.
Added #2263: _Crypt_GenRandom(), fills a buffer with random data.
Added #2354: _ArrayTranspose() to the Array UDF.
Added #2338: Regular expression pattern matching. See the documentation of _ArraySearch() for more details.
Added #2340: Optional parameter to _GUICtrlListView_SimpleSort() of whether or not to reverse $vSortSense (previously $vDescending.)
Added: _FileListToArrayRec() to the UDFs. A recursive file search by Melba23. See the documentation for more details.
Added: Example for _VersionCompare().
Added: Graphic SmoothingMode constants (GDIPlusConstants).
Added: _GDIPlus_CustomLineCapCreate(), _GDIPlus_BitmapCreateFromScan() functions.
Added: Constants for DriveGetType() and StringSplit(). See related function documentation for more details.
Added: InetConstants.au3 for use with Inet functions. See related function documentation for more details.
Added: GDIPlus functions and their respective documentation and example.
Added: _GDIPlus_ParamSize() to handle X64 compatibility.
Added #2540: _ArrayDisplay() can copy Header and Row.
Fixed #2077: hwnd safety check in _GUICtrlRichEdit_Create()
Fixed #2088: _ArrayDisplay() not handling Default parameters correctly.
Fixed #2112: "Report Log Window" unresponsive when the script is closed.
Fixed: _GUICtrlRichEdit_* documentation error return codes.
Fixed #1970: _FTP_ListToArray() fails to retrieve Dir or File only.
Fixed #2084: Clipboard not being closed if an error occurred with _ClipBoard_SetDataEx().
Fixed #2125: Writing a 2-dimensional array would only write the first two columns of the array.
Fixed #2070: Unexpected crash on certain systems when using _GUICtrlStatusBar_GetText().
Fixed #2132: Documentation of _WinAPI_GetModuleHandle() and the parameter to return the handle of the calling process. (Use the Null keyword, not 0.)
Fixed #2162: Documentation link in the IE Management section was broken for _IEFormElementCheckBoxSelect().
Fixed #2170: _ArrayDisplay() fails handling arrays with no elements.
Fixed: _PathMake() not appending backslash to the root path.
Fixed #2223: Incorrect UDF being referenced in _WordErrorHandlerRegister().
Fixed #2252: _GUICtrlListView_DeleteAllItems() failed to remove items created using _GUICtrlListView_AddItem() on an AutoIt native listview.
Fixed #1861: _ArrayDisplay() incorrectly displayed an array when using the $sHeader parameter and the array contained the default separator.
Fixed: Using non-supported characters in the file prefix for _TempFile().
Fixed #2186: Documentation of _WinNet_AddConnection()* and $sLocalName. (Use the Null keyword or an empty string, not 0.)
Fixed #2148: Crash when passing a number instead of a string.
Fixed #2219: _ExcelReadSheetToArray() would cause AutoIt to hang when reading a protected worksheet.
Fixed #2242: Unable to write the 0th element in _FileWriteFromArray(). Now the Default keyword is supported for the parameters $iBase and $iUBound, therefore use this instead of the value 0 for default parameters. (Please check the documentation.)
Fixed #2218: AutoIt crash when using _GUICtrlListView_SetGroupInfo() before _GUICtrlListView_SetItemGroupID() had been called.
Fixed #1996: _GUICtrlListView_SimpleSort() failed to retain the ItemParam of an item.
Fixed #1759: Strange listview sort.
Fixed #2298: Failing to detect when EnumDisplayDevices returns 0.
Fixed: _FileWriteFromArray() failing to pass the $aArray parameter as a constant reference.
Fixed: $tagREBARBANDINFO not working on XP, due referencing parameters intended for Vista and above.
Fixed #2305: Reports the wrong width and height of the desktop when using default parameters.
Fixed #2335: _WinAPI_EnumWindows() and _WinAPI_EnumWindowsPopup() order
Fixed #2347: _WinAPI_GetMonitorInfo() wrong data.
Fixed #2320: Incorrect return values for certain IE functions.
Fixed: _GUICtrlListView_InsertItem() would fail to insert -1 if passed as the $sText parameter.
Fixed #2460: _StringBetween() $sStart = $sSend.
Fixed #2459: _StringBetween() doc Description info.
Fixed #2465: _IEPropertyGet() - out of date links in "ClientInfo Properties".
Fixed: _GDIPlus_...() functions compatible with X64.
Fixed #2486: _GUICtrlRichEdit_GetFont() bad multi Font return. Solved also #2485.
Fixed #2492: _GUIToolbar_... doc example.
Fixed: _SQLite_...() running in X64 Mode.
Fixed: _SQLite_Startup() parameter checking and doc.
Fixed #2550: _GUICombo_GetEditText() struct sizing.
AutoItX:
Removed: Removed DevC files and Visual Studio 6 files.
Removed: ANSI versions of Send/WinWait functions from the native DLL.
Removed: DLL Imports: AU3_WinGetPosX, AU3_WinGetPosY, AU3_WinGetPosWidth, AU3_WinGetPosHeight.
Removed: DLL Imports: AU3_ControlGetPosX, AU3_ControlGetPosY, AU3_ControlGetPosWidth, AU3_ControlGetPosHeight.
Removed: DLL Imports: AU3_MousePosX, AU3_MouseGetPosY
Removed: DLL Imports: AU3_WinGetClientSizeWidth, AU3_WinGetClientSizeHeight.
Removed: DLL Imports: AU3_WinGetCaretPosX, AU3_WinGetCaretPosY.
Removed: DLL Imports: AU3_CDTray, AU3_BlockInput.
Removed: DLL Imports: AU3_RunAsSet.
Removed: COM Methods: CDTray, BlockInput.
Removed: COM Methods: RunAsSet.
Removed: All registry functions. The support was limited and the host language will certainly have registry functions.
Removed: All Ini file functions. As per registry functions.
Changed: Renamed AutoIt3.h to AutoItX3_DLL.h.
Added: AutoItX3.Assembly.dll - a .NET Assembly wrapper for the DLL.
Added: AutoItX3.PowerShell.dll and AutoItX3.psd1 - a set of PowerShell CmdLets.
Added: Visual Studio 2010 C++ Project files (easy to use in 2010 or later).
Added: DLL Import: AU3_WinGetPos.
Added: DLL Import: AU3_ControlGetPos.
Added: DLL Imports: AU3_MouseGetPos.
Added: DLL Import: AU3_WinGetClientSize.
Added: DLL Import: AU3_WinGetCaretPos.
Added: DLL Imports: AU3_RunAs, AU3_RunAsWait.
Added: COM Methods: RunAs, RunAsWait.
Fixed: Crash in AU3_PixelSearch when function fails.
Fixed: AutoItX3.lib files weren't correctly being copied to the install file.
Au3Check:
Changed: Message case changed to support SciTE inline errors.
Changed: An error is now generated for non-supported file encodings (Previous behavior was to silently pass the script).
Changed: Au3Check version numbers now match AutoIt's.
Changed: Explicit size of arrays optional for explicit initialization.
Added: Generating error for hex numbers longer than 16 characters.
Added: Compound assignment operators for object properties.
Added: Array access on expression
Added: Dot access on expression
Fixed #2113: Object's properties in names of keywords treated as keywords.
Fixed #2141: #IgnoreFunc was generating an incorrect error.
Others:
Added: Notepad++ autoit.xml file to the Extras\Editors folder. This contains a list of up to date functions.
Added: Sublime Text AutoIt.tmLanguage file to the Extras\Editors folder. This contains a list of up to date functions.
Added: 3rd party syntax files in Extras\Editors now include UDF functions.
Fixed: StringRegExpGUI missing from the help file index menu.
Au3Record:
Fixed #2083: There is no longer an error about a missing DLL.
Fixed #2337: Support of non english keyboard.
AutoIt3Help:
Changed: Manifest resource suggests Windows common controls v6.0.
Changed: Version number to 1.0.0.5.
Fixed #2519: Wrong page opening if launch without parameter.

http://www.autoitscript.com/site/autoit/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
AutoIt 3.3.10.1
« Antwort #93 am: 29 Dezember, 2013, 12:00 »
Whats new: >>

Aut2Exe:

    Fixed: Aut2Exe was leaving a temporary file around.

UDFs:

    Added: Error checking to _GDIPlus_GraphicsDrawString() in case _GDIPlus_GraphicsMeasureString() fails to return an array.

    Fixed: Incorrect function being called for _GDIPlus_BitmapCloneArea().
    Fixed: _ArrayDisplay() user function call and range bug.

http://www.autoitscript.com/site/autoit/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
AutoIt 3.3.10.2
« Antwort #94 am: 30 Dezember, 2013, 20:30 »
Whats new: >>

AutoIt:

    Fixed: All AutoIt EXEs and tools not working on older Athlon XP processors due to SSE compiler options.

Aut2Exe:

    Fixed: Aut2Exe failing to run multiple times on Windows XP prior to SP3.

Others:

    Fixed: Notepad++ autoit.xml was incorrectly formatted and not displaying calltips.

http://www.autoitscript.com/site/autoit/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
Cppcheck 1.63
« Antwort #95 am: 04 Januar, 2014, 19:30 »
Cppcheck is an analysis tool for C/C++ code. Unlike C/C++ compilers and many other analysis tools, we don't detect syntax errors. Cppcheck only detects the types of bugs that the compilers normally fail to detect.

License : GPL

Whats new: >>

Maintainers:
The .cfg files are needed by cppcheck. Either put them in a subfolder cfg
where the binary is. Otherwise compile cppcheck with CFGDIR to specify an
arbitrary path where you put the .cfg files.

New check:
* Using pointer addition result in condition 'if (p+1)' - either a dereference
is forgotten or it depends on UB (the result is only 0 if there is overflow,
which is UB).

Improved checks:
* Leaks - ignoring return value of allocation function
* Uninitialized vars - check how uninitialized malloc data is used
* Rewritten 'calculation in sizeof' using syntax tree
* Rewritten 'clarify calculation' using syntax tree
* Rewritten 'logical disjunction' using syntax tree
* Rewritten 'duplicate expressions' using syntax tree
* Rewritten 'invalidFunctionUsage' that uses the *.cfg files

GUI:
* Library files can be enabled in the project dialog
* Suppressions can be specified in the project dialog

Other:
* Cppcheck is now continuosly scanning all the source code in the debian archive.
Results: http://cppcheck.sourceforge.net/devinfo/daca2-report/daca2.html
* Fixes of templates handling, hangs, crashes and false positives

http://cppcheck.sourceforge.net/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
RunCmd V-140101
« Antwort #96 am: 07 Januar, 2014, 17:45 »
Windows-Skript-Interpreter mit 217 Befehlen; die grundlegenden Befehle sind den DOS-Batch-Befehlen ähnlich; zum Debuggen kann die Kommandodatei auch schrittweise ausgeführt werden.

Freeware

Was ist neu : >>

Neuer Befehl "FileSortOrder" für verschiedene Möglichkeiten der Sortierung bei Dateibefehlen In Dateibefehlen werden die Dateinamen (sofern nicht durch "FileSortOrdr" geändert) natürlich (alphabetisch + numerisch)  sortiert
Neuer Befehl "Info FileSortOrder"
Neuer Befehl "Info WinHelp" 
Neuer Parameter "CallLevel" im Befehl "Shift" 
Neue Schalter "/RAW" und "/WAITEND" im Befehl "Info Key" 
Neuer Schalter "/SORT" in den Befehlen "Dir" und "Dir2F"
Neue Schalter "/OL", "/OU" und /"W" im Befehl "Tausch/Replace" und "Info Find"
Im Befehl "Info VarPos" können Suchanzahl und Suchbeginn sowohl auf den Beginn als auch auf das Ende des  Variableninhalts bezogen sein
Verbesserung des erzwungen Schließens von Programmen mit  "Win Close /OPR" und "Win CloseAll /OPR"

http://hintenaus.at/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
AutoHotkey 1.1.14.01
« Antwort #97 am: 16 Januar, 2014, 16:18 »
AutoHotkey ist eine frei verfügbare Open-Source-Scriptsprache für Windows. Als strukturierte Programmiersprache umfasst diese folgende Funktionen:

    Automatisieren von alltäglichen Aufgaben durch Senden von künstlichen Tastatureingaben und Mausklicks. Maus- oder Tastaturmakros können entweder manuell oder mithilfe des Makrorekorders erstellt werden.
    Erstellen von Hotkeys für Tastatur, Maus und Joystick. Praktisch jede Taste, Maustaste oder Tastenkombination kann ein Hotkey werden.
    Erweitern von Abkürzungen bei Benutzereingabe. Zum Beispiel würde das Wort "bzw" automatisch mit "beziehungsweise" ersetzt, sobald es eingegeben wird.
    Erstellen von benutzerdefinierten Eingabeformularen und Menüleisten. Mehr Informationen können unter GUI gefunden werden.
    Neubelegen von Tastatur-, Maus- oder Joystick-Tasten.
    Verarbeitung von Dateien, Strings, Fenster und der Registrierung.
    Umwandeln eines Scripts in eine EXE-Datei. Diese Datei kann von Benutzern verwendet werden, die kein AutoHotkey installiert haben.
    Erkennung komplizierter Stringmuster mithilfe von Regulären Ausdrücken.
    Zugriff auf API-Funktionen von Windows und anderen Programmen mittels DllCall.
    Senden oder Abfangen von Fensternachrichten.

License: Open Source

Whats new: >>

    Fixed Try without Catch/Finally crashing if no exception was thrown.

1.1.14.00:

    Added Finally statement for performing cleanup after try/catch. [fincs]
    Changed behaviour of ~ prefix with custom combos to be more intuitive.
    Fixed x & y:: to fire both x:: and x up:: when x is released.
    Fixed ImageSearch to set ErrorLevel=2, not 0, when a GDI call fails.
    Fixed EnvGet crashing the program when the var exceeds 32767 chars.
    Fixed a minor error-handling bug with StatusBarWait's ErrorLevel.
    Fixed a cause of heap corruption with FileRead *c on ANSI builds.
    Fixed passing of local vars in recursive calls to variadic functions.
    Fixed script failing to load if the first line is an expression in parentheses.
    Fixed PixelSearch Fast mode to set OutputVarX/Y only on success.

http://de.autohotkey.com/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
SimpleProgramDebugger v1.00
« Antwort #98 am: 26 Januar, 2014, 12:00 »
SimpleProgramDebugger is a simple debugging tool for Windows that attaches to existing running program or starts a new program in debugging mode, and then displays all major debugging events occurs while the program is running, including Exception, Create Thread, Create Process, Exit Thread, Exit Process, Load DLL, Unload Dll, and Debug String.

After the debugging events are accumulated, you can easily export them into comma-delimited/tab-delimited/xml/html file or copy them to the clipboard and then paste them into Excel or any other spreadsheet application.

Freeware

http://www.nirsoft.net/utils/simple_program_debugger.html

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
Software Ideas Modeler 6.75.5139.38239
« Antwort #99 am: 29 Januar, 2014, 18:15 »
Software Ideas Modeler is used to draw UML diagrams which are used in professional software development. Software Ideas Modeler can also be used to draw some other diagrams such as entity-relationship diagrams and UI mockups.

Main features:

    Intuitive and quick drawing of diagrams
    All UML 2.4 diagrams
    Flowcharts, Data Flow Diagrams, Entity Relationship Diagram (Crow Foot/Chen), CRC Cards, User Interface, Hierarchical Task Analysis, Entity Life History, Robustness Diagram, Concurrency Diagram, Venn Diagram, Mind Map, JSD diagrams
    Styling
    Print - batch printing, multiple pages per diagram
    Export diagrams to various image formats (BMP, PNG, JPG, GIF, TIFF, SVG, WMF, EMF) and PDF


Officially supports GNU/Linux via Mono.

Note: paid versions with additional features are also available.

License:    Free for non-commercial use

Whats new: >>

Added order options for:

Attributes (by name/type/visibility)
Operations (by name/type/visibility)
Stereotypes
Added Diagram/Show Parts menu
Fixed application crash when using Parser side bar
Fixed parsing Java classes which extend generic class or implement generic interface
Fixed application crash when clicking on File/Send Email when no project is loaded (now Send Email is disabled when no project is loaded)
Fixed application crash when clicking on empty grid
Fixed incorrect handling of quick search when typing in project tree and a sidebar with list box is displayed

http://www.softwareideas.net/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
AutoHotkey 1.1.14.02
« Antwort #100 am: 30 Januar, 2014, 17:50 »
Whats new: >>

Fixed x:: and x up:: both firing on key-up if the state of the modifier keys prevented x from firing on key-down. The intended behaviour as of v1.1.14 is for both hotkeys to fire on key-up if x is also used in a custom combination like x & y::.

http://de.autohotkey.com/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
DevProject Manager 1.8.1
« Antwort #101 am: 04 Februar, 2014, 20:30 »
DevProject Manager ist eine Projektverwaltung für Freeware-, Shareware- und Open-Source Entwickler.

Neben allgemeinen Projektinformationen stehen eine Versionsliste und eine To-Do-Liste zur Verfügung, um einen Überblick über die veröffentlichten Programmversionen bzw. deren Entwicklungsstand zu haben. Neben Dateien wie Screenshots, Hilfedateien etc. können auch Personen, wie Programmierer, Übersetzer und Beta-Tester erfasst werden. Weiters steht eine Kunden- und Lizenzverwaltung zur Verfügung, die mit Plugins selbst erweitert werden kann.

Weiters können Code-Snippets in hierarchischer Form gespeichert werden, um oft benötigte Funktionen oder Programmteile griffbereit zu haben. Es werden 13 verschiedene Syntaxhervorhebungen für Programmier- und Scriptsprachen (Assembler, C#, C++, HTML, Java, JScript, Pascal, Perl, PHP, Python, SQL, VBScript und Visual Basic) unterstützt.

DevProject Manager richtet sich an Freeware- und Open-Source Entwickler, die keinen Datenbankserver für die Projektverwaltung verwenden können oder möchten.

DevProject Manager kann auch von einem USB-Stick betrieben werden.

Whats new: >>

  •    Das Plugin-API wurde um einige Funktionen erweitert.
  •    Multi-Export Plugin: In den Export-Vorlagen kann nun der Platzhalter %PERSNAMEDPM% verwendet werden, der den Namen von Personen so darstellt, wie dies in DevProject Manager eingestellt ist.
  •    Diverse Änderungen im Zusammenhang mit dem Erstellen des Changelogs.
  •    MultiExport-Plugin: Die Sortierung der Listen (wie z.B. die ToDo-Liste) erfolgt jetzt so, wie sie aktuell in DevProject Manager eingestellt ist.
  •    MultiExport-Plugin: Namen in der HTML-Ausgabe werden jetzt so ausgegeben, wie sie auch in DevProject Manager angezeigt werden. Die Vorlage wurde um den dafür erforderlichen Platzhalter erweitert.
  •    Wenn die Produktversion leer ist, wird bei der Statusänderung auf "Erledigt" die Versionsnummer nicht mehr verändert, auch wenn dies in den Einstellungen aktiviert ist.


http://www.gaijin.at/dldevproject.php

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
AutoHotkey 1.1.14.03
« Antwort #102 am: 15 Februar, 2014, 13:51 »
Whats new: >>

Fixed a memory leak in new X when X.__Init aborts the thread.
Fixed breakpoints shifting onto class var initializers when they are interspersed with method definitions.

http://de.autohotkey.com/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
TortoiseSVN 1.8.5.25224
« Antwort #103 am: 19 Februar, 2014, 13:14 »
TortoiseSVN is a really easy to use Revision control / version control / source control software for Windows. It is based on Subversion. TortoiseSVN provides a nice and easy user interface for Subversion. It is developed under the GPL. Which means it is completely free, including the source code. But just in case you don't know the GPL too well: you can use TortoiseSVN to develop commercial applications or just use it in your company without any restrictions.

Since it's not an integration for a specific IDE like Visual Studio, Eclipse or others, you can use it with whatever development tools you like.

As a Subversion client, TortoiseSVN has all the features of Subversion itself, including:

    Most current CVS features.
    Directories, renames, and file meta-data are versioned.
    Commits are truly atomic.
    Branching and tagging are cheap (constant time) operations.
    Efficient handling of binary files.

Open Source

Changelog:

BUG: Issue #594: "Diff with url" generated patch does not apply.
BUG: Issue #497: "restore after commit" must restore on cancel as well.
BUG: Issue #595: TortoisePlink crash for x64.
BUG: Issue #601: Crash fetching properties in CfM dialog.
BUG: Issue #602: Log dialog message loses formatting after clicking a link.
BUG: Issue #603: TortoiseBlame: Blue wavy lines in C header files.
BUG: Issue #607: TortoiseMerge fails to restore Unicode characters.
BUG: Issue #608: revision graph export to svg fails to escape text.
BUG: Issue #611: log dialog does not fetch all revisions specified in merge dialog.
BUG: Issue #614: TSVNCache crash when removing cached data.
BUG: Issue #616: "update" not available in check-for-modifications context menu.

www.tortoisesvn.net

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
RunCmd V-140218
« Antwort #104 am: 19 Februar, 2014, 20:15 »
Windows-Skript-Interpreter mit 217 Befehlen; die grundlegenden Befehle sind den DOS-Batch-Befehlen ähnlich; zum Debuggen kann die Kommandodatei auch schrittweise ausgeführt werden.

Freeware

Was ist neu : >>

ACHTUNG:  Geänderte Errorlevel im Befehl "Info OS" 
ACHTUNG:  Der Befehl "Info ParamT" wird durch den Befehl "Info ParamType" ersetzt  Überarbeitung der Hilfe zur indirekten Adressierung von Variablen Neuer Befehl "INFO USERISADMIN" 
Neuer Befehl "INFO WRITE"  Neuer Befehl "NET PING"  Neuer Vergleichsoperator "IN" im Befehl "IF" (IF Zeichenfolge IN [Mengenliste] THEN ...) 
Neuer Parameter "Self" im Befehl "Win Activate" 
Neuer Schalter "/ZEILE" im Befehl "EchoTx" 
Neue Schalter "/ECHOCL", "/ECHOCLALPHA" und "/ECHOCLSPEC" im Befehl "Info Key" 
Neuer Schalter "/CLIENT" im Befehl "Info WinSize" 
Neuer Schalter "/$SPECCHAR$" in den Befehlen "Set", "SetL" und "SetG"  Durch dem Variablennamen vorangestellte "@"-Zeichen
ist der Zugriff auf Variablen tieferer Aufrufebenen und damit  Ergebnisübergabe von Unterprogrammen an lokale Variablen des aufrufenden Programms möglich
Im Befehl "Pause" sind die gleichen Fenster- und Text-Formatierung möglich wie im Befehl "Echo"  Im Befehl "Info FindPixel"
sind bei Verwendung der Schalter "/R" bzw. "/RM" auch die Ergebniskoordinaten relativ zum  Fenster bzw. zur Mausposition 
Im 3. Parameter des Befehls "Info WriteLnk" können auch Sonderzeichen verwendet werden  Korrektur: Der Befehl "Info Read" lieferte falsche Werte für Errorlevel
Neuer Befehl "NOP"

http://hintenaus.at/

Arbeits.- Testrechner :

Intel® Core™ i7-6700 (4 x 3.40 GHz / 4.00 GHz)
16 GB (2 x 8 GB) DDR4 SDRAM 2133 MHz
250 GB SSD Samsung 750 EVO / 1 TB HDD
ZOTAC Geforce GTX 1080TI AMPExtreme Core Edition 11GB GDDR5
MSI Z170A PC Mate Mainboard
DVD-Brenner Laufwerk
Microsoft Windows 10 Home 64Bit

TT S2 3200 ( BDA Treiber 5.0.1.8 ) + Terratec Cinergy 1200 C ( BDA Treiber 4.8.3.1.8 )