Autor Thema: Entwicklertools diverses  (Gelesen 65381 mal)

0 Mitglieder und 1 Gast betrachten dieses Thema.

Offline SiLæncer

  • Cheff-Cubie
  • *****
  • Beiträge: 158890
  • Ohne Input kein Output
    • DVB-Cube
Highlight 3.27
« Antwort #270 am: 25 Januar, 2016, 05:00 »
Highlight is a universal source code converter which transforms code to HTML, XHTML, RTF, LaTeX, TEX, SVG and BBCode files with syntax highlighting. (X)HTML and SVG output is formatted by CSS. It supports customizable color theme and language descriptions with regular expressions. The configuration files are Lua scripts with plug-in support. The tool contains several options to provide a consistent formatting of the output code.

License: Open Source

Latest Changes

- Improved outhtml_codefold.lua to ignore brackets on the same line
- Added RTF output to mark_lines.lua
- Fixed Powershell and NSIS definitions
- Added JSON and Github Markdown definitions
- CLI: added --keep-injections option to force plugin injection output with -f
- GUI: added keep injections checkbox

http://www.andre-simon.de/

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
SWI-Prolog 7.3.16 Development
« Antwort #271 am: 27 Januar, 2016, 17:15 »
Changelog

CLPB: Documentation enhancements.
REVERT: Reverted introduction of verify_attributes/3 as attributed variable hook. The system suffers too much regression and performance degradation to have this on the development master. The new hook will be re-integrated if all problems with it are fixed, including at most mild performance degradation. A new branch verify-attributes was created that points at the place from where I reverted. The only affected package is chr, which has the same verify-attributes branch.
FIXED: Exceptions using foo().
ENHANCED: library(sandbox): get better stack info if meta-call analysis is insufficient.
FIXED: Possible crash in tracer on FAIL port due to overwritten choice point.
FIXED: incorrect discontiguous warning when reloading dynamic predicates. Matt Lilley.
FiXED: '$attvar_assign'/2: pre-allocate space for the assignment.
FIXED: possible use-after-free when rehashing functor tables
FIXED: module/1 to allow new modules
FIXED: save for flag/3 structures. Kuniaki MUkai and others

Package clib:

ADDED: Declare md5_hash/3 as sandbox-safe.

Package http:

FIXED: Option `final_url' broken due to changing option `visited' to hold lists of visited URIs.
ADDED: Extended and documented the http:status_page/3 hook to generate custom pages for the 4XX error pages.
FIXED: HTTP digest: never return the same nonce to the same client.
ENHANCED: Allow the digest authentication hook to be called multiple times in the same request without trapping a `nonce replay' error.
DOC: cgi_property/2: document existence of the id property.
FIXED: HTTP digest client nonce GC.
ENHANCED: Shorted http_write_short log message.
FIXED: HTTP digest authentication: pick default method from request.
ADDED: example code illustrating HTTP digest authentication.
FIXED: json_write_string/2: get the output stream if we pass a stream pair. Matt Lilley.
ENHANCED: json_write[_dict]/2,3: Raise a type error on json(Pairs) if Pairs is not a list or the members are not N-V or N=V.
FIXED: content-encoding is no longer interpreted as a synonym for transfer-encoding if the content-type indicates that such an encoding is expected. Kuniaki Mukai.

Package pengines:

FIXED: error handling for pengine_create/1. Torbjörn Lager
FIXED: Properly handle cyclic results when using the Prolog client.

Package sgml:

ADDED: xsd_number_string/2: declare as sandbox-safe

[close]

http://www.swi-prolog.org/

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
FreeBASIC 1.05.0
« Antwort #272 am: 31 Januar, 2016, 20:45 »
Changelog

[fixed]

- 0.90.0 regression: Self-op optimizations stopped handling some cases and should now work again, for example: optimizing A=A+1 => A+=1 where A is a Long, should give nice ASM code with -gen gas again
- When Dim'ing an Extern variable, the Byref attribute was not checked - neither required nor disallowed - now the Dim must match the Extern with regards to Byref too.
- Type<Foo>(...) expressions couldn't be used at the begin of a statement (because the Type keyword was treated as begin of a Type declaration)
- FileAttr() was still broken for 64bit - the result value was truncated to 32bit
- 1.04.0 regression: Under -gen gcc -asm att, support for gcc-style inline asm was broken
- ld was warning about unsupported linker options on OS X
- BYREF fixed-length strings (e.g. BYREF myParameter AS ZSTRING * 10) now trigger a compiler error since they are unsupported
- #print typeof() output now differentiates between ZSTRING and ZSTRING * N (ZSTRING without size is produced by dereferencing a ZSTRING PTR, or BYREF AS ZSTRING)
- Context-specific keywords, e.g. graphics PUT modes, must now be given as keywords (e.g. PSET), string literals (e.g. "PSET") are no longer accepted.
- Wstring-to-Zstring conversions didn't use the system's Unicode <-> codepage conversion function, and only converted ASCII characters. Now it will try to convert the Unicode chars to codepage chars.
- Compiler crash during error recovery when there was an error when parsing the argument expression for a BYREF AS ANY parameter
- 1.04.0 regression: Get# for WStrings was incorrectly changed to convert the loaded bytes to wstring characters, like Input# would do. Now it's changed back to just loading the raw bytes into the wstring, which is also how Get# works for other datatypes.
- 1.04.0 regression: Due to the Get# wstring breakage, the compiler failed to read source files encoded in UTF16LE with BOM on Windows, and UTF32LE with BOM on Linux.
- Eof() could incorrectly return TRUE too early on Windows, when reading a big text file with LF line endings, OPENed FOR INPUT (text mode)
- Line's styled/pattern drawing support was broken on non-x86 systems


[close]

http://freebasic.net/index.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
Software Ideas Modeler 9.30.5877.14140
« Antwort #273 am: 03 Februar, 2016, 19: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

Changelog

NEW FEATURES:

Added multiple field selection
Added selection tool setting 'Select fields'
Actions can be performed for multiple fields at once (remove, change type/visibility/modifiers, move up/down)
Copy/move of multiple selected fields using drag&drop
Distinguished SHIFT and CTRL for area selection (SHIFT - for xor/invert modification of selection, CTRL - for adding to selection)
Style side bar supports setting a style for multiple selected elements and fields
ERD Indexes can be renamed directly in diagram
Tagged values can be edited directly in diagram
Double click on a container opens Properties dialog
UML Object Attribute switches to edit mode after adding (as other fields)
Template parameters can be copied/moved to another class using drag&drop
Stereotypes can be copied/moved to another element using drag&drop
Tagged values can be copied/moved to another element using drag&drop
Stereotypes and tagged values can be removed using context menu
UML State Actions can be copied/moved from a UML state to another one using drag&drop
UML Object Attributes can be copied/moved from a UML object to another one using drag&drop
SysML fields can be copied/moved from a SysML Block to another element using drag&drop
Displaying full descriptive names in element grids (View/Element Grids/)
Some optimizations for multi core processors
Improved rotation - nested elements are rotated with its container, group of elements supports rotation

FIXED BUGS:

Target highlight is not used for dragging an element inside a container and for new elements from toolbox
Fixed cancelling edited field after changing style using context bar
Fixed rendering of UML State with not displayed tagged values
Fixed labels in ERD Index dialog
Fixed displaying tagged value with reference to an element
Fixed deleting attribute value of UML Objects in diagram editor
Fixed inappropriate displaying of distance information when targeting drag&drop action to an element
Fixed moving group of elements with an unconnected relation
Fixed moving group of elements when a relation is active
Fixed problem with lost style of a field after its copying
Fixed application crash when using relationship tool in a special case [RQ#464]
Fixed application crash when trying to set a style to group of elements which contains two and more instances of a model element

[close]

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
HttpMaster 3.2.0
« Antwort #274 am: 07 Februar, 2016, 11:52 »
Changelog

Wizard for user-friendly construction of commands for command line interface.
Support for validations in basic request window.
Ability to use encrypted passwords in command line interface.
Advanced project request settings now available in Express Edition.
Toolbar and keyboard support in 'Manage execution order' window.
Menu option to reload project file from disk.
Application setting to display warning message if project from the previous HttpMaster version is opened.
Column widths in main window are now preserved between application restarts.
Ability to uninstall license key.

[close]

http://www.httpmaster.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
SWI-Prolog 7.3.17 Development
« Antwort #275 am: 13 Februar, 2016, 15:15 »
Changelog

[Feb 12 2016]

    INSTALL: Windows: use nsExec::ExecToLog() to get rid of the popup windows for the compiler.

[Feb 9 2016]

    ENHANCED: Raise permission error when dereferencing too deeply nested symbolic links.

[Feb 8 2016]

    FIXED: Loading a .qlf file using [file] executed the initialization directives twice.
    FIXED: list_undefined/1: when checking system modules silence reports on $call_cleanup'/0, etc.
    FIXED: tprofile/1: called undefined show_profile/2.
    MODIFIED: exception_hook/4 can now be called with CatcherFrame equal to 'C' if the exception is called by C calling Prolog. This patch also makes exception_hook/4 being called correctly on exceptions raised during recursive C<->Prolog calls.
    FIXED: '$sig_atomic'/1 is now implemented such that an exception raised in it is considered caught if there is a catch/3 in the calling code.

[Feb 5 2016]

    FIXED: Run initialization/1 goals when loading a .qlf file. Paulo Moura.

[Feb 4 2016]

    PORT: Avoid undefined shift of negative integer.

[Feb 1 2016]

    PORT: Partial poll() support for Windows.
    ENHANCED: use poll() rather than select() for timeout handling on streams. Step 1 of issue#43.
    DOC: Forgotten argument, typo. Eyal Drechter.

[Jan 31 2016]

    ENHANCED: Exception for absolute_file_name/2

[Jan 30 2016]

    FIXED: numeric comparision of NaN and NaN

[close]

http://www.swi-prolog.org/

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
Highlight 3.28
« Antwort #276 am: 16 Februar, 2016, 20:30 »
Latest Changes

- Added support of Pascal, Lua, Ruby and C# regions in outhtml_codefold.lua
- Improved outhtml_codefold.lua to handle embedded languages
- Added string delimiters in the Ruby definition
- Added new AssertEqualLength flag in string section of language definitions
- Improved heredoc parsing
- Fixed Lua multiline string recognition

http://www.andre-simon.de/

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
Eclipse 4.5.2
« Antwort #277 am: 28 Februar, 2016, 19:45 »
Eclipse is an open source community whose projects are focused on building an open development platform comprised of extensible frameworks, tools and runtimes for building, deploying and managing software across the lifecycle. A large and vibrant ecosystem of major technology vendors, innovative start-ups, universities, research institutions and individuals extend, complement and support the Eclipse platform.

Open Source

http://www.eclipse.org/

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
SWI-Prolog 7.3.18 Development
« Antwort #278 am: 05 März, 2016, 10:15 »
Changelog

FIXED: stream_property(+,-) can fail if last enumerated property is not present.
FIXED: apply(plus(), [1,2,X]). Michael Frank.
MODIFIED: profile/2: fixed spelling of option (cummulative --> cumulative). As this is normally used interactively, no backward compatibility is provided. Abramo Bagnara.
FIXED: Possible crash when consulting files by expanding end_of_file. Matt Lilley.
ADDED: db_detach/0. After discussion with Stephen Coda.
FIXED: Issue#37: detect redefinition of predicates from another file. Broken after incremental recompilation.
SCIENCE: Cite CLP(B) system description.

ENHANCED: dif/2: Omit more entailed residuals with occurs_check set to true. Jan Burse. Sample case, previously:

REMOVED: get_dictionary/3 predicate, using b_getval('$variable_names',Dict) instead, which already contain the required information
FIXED: compile_auxiliary_clause/2 should use predicate_property(.., defined) instead of current_predicate/1, which is aware of recompilation
LICENSE: Release library(simplex) under BSD license.
LICENSE: Release CLP(B) under BSD license.
LICENSE: Release CLP(FD) under BSD license.

Package RDF:

MODIFIED: Use _: as bnode prefix.
FIXED: write triple with bnode object that has no properties

Package clib:

DOC: Documented missing tcp_accept/3. Markus Triska.

Package cpp:

MODIFIED: PlTypeError(expected, actual) throws an instantiation error if actual is unbound.

Package http:

DOC: Non-compound terms are not formatted as code.
DOC: Fixed typo and added markup.

Package jpl:

FIXED: Invalid HTML makes some versions of JavaDoc fail.
PORT: Also on I?86 assume the JNI libraries are in "server". Patch by Lev Lamberov.

Package pengines:

ADDED: term//2: option float_format.
ENHANCED: pengines_io.pl: Wrap format output in a span with class format

Package pldoc:

ADDED: doc_latex/3: allow searching predicate documentation is specified modules.
FIXED: wiki face recognition inside [Label](Ref) and [[Label][Ref]] for the label.
FIXED: PlDoc link to manual bibliography.

Package semweb:

FIXED: rdf_save/2 referring to invalid entities.
MODIFIED: By default, blank nodes are now represented as atoms that start with `_:` rather than atoms that start with __. Discussed with Wouter Beek.
ADDED: library(semweb/rdf11) and library(semweb/rdf11_containers)
DOC: rdf_match_label/3
TEST: Order of numerical results is undefined.
FIXED: >= testing should start with the smallest type (xsd:double).
FIXED: 0ab87b85ef4094883c4ca232650116310f7c4a52 was intended to sort doubles before integers, not numbers after strings.
ENHANCED: Use literal index for eq matching.

Package sgml:

FIXED: xsd_number_string/2: throw error on e.g., "42a".

Package xpce:

FIXED: some regex issues with out-of-range characters and large char ranges. Backport for http://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=3bb3f42f3749d40b8d4de65871e8d828b18d4a45 Did not backport cancellation part for long character ranges.

[close]

http://www.swi-prolog.org/

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 9.31.5904.36739
« Antwort #279 am: 08 März, 2016, 05:12 »
Whats new:>>

Fixed application crash when loading a project with an unconnected relationship
Fixed application crash in ERD diagram [RQ#465]
Fixed application crash when moving cursor over documentation and glossary item with empty term is defined

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.23.03
« Antwort #280 am: 12 März, 2016, 10:20 »
Whats new:>>

1.1.23.03

Fixed __Delete meta-functions erroneously suppressing or prematurely re-throwing exceptions, when they are called during exception propagation.
Fixed load-time detection of function calls where a required parameter is blank, as in fn(x,,y).

1.1.23.02

Fixed RegDelete deleting the entire key instead of the default value.
Code maintenance; minor code size improvement.

https://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
Software Ideas Modeler 9.32.5924.40364
« Antwort #281 am: 23 März, 2016, 21:45 »
Changelog

Fixed drag&drop elements from the project tree in Hierarchical view
Fixed application crash when clicking on Project node in Repository picker dialog [RQ#467]
Fixed application crash when setting a qualified association set [RQ#468]
Fixed rendering of required interfaces with rectangular style
Fixed broken connection between required and provided interface after loading a project
Fixed attaching interface connectors and communication messages to an element border

[close]

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.23.04
« Antwort #282 am: 26 März, 2016, 10:30 »
Whats new:>>

Fixed LV_Modify to support omitting Options, as in LV_Modify(r,, col1).

https://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
AutoHotkey 1.1.23.05
« Antwort #283 am: 27 März, 2016, 12:00 »
Whats new:>>

Fixed InputBox, MsgBox, FileSelectFile and FileSelectFolder sending an unwanted Alt-up if Alt is down. This was due to an error with the Ctrl/Shift workaround added in v1.1.22.01.

Improved the Ctrl/Shift workaround to avoid unnecessarily "masking" the Win key if Ctrl, Shift or Alt is also down.

https://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
HttpMaster 3.3.0
« Antwort #284 am: 10 April, 2016, 12:39 »
Changelog

New validation type to validate response body with XPath or JSONPath expression
New chaining type to extract value from the response body with XPath or JSONPath expression
Ability to apply function to the obtained chaining value
Support for any http method (verb)
Improved status code validation type with the ability to specify custom status code
Option to upload selected file as Base64 string
Improved welcome window
Search functionality now included in Express Edition

[close]

http://www.httpmaster.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 )