Directory Lister (64-bit) 歷史版本列表 Page6

最新版本 Directory Lister 2.46 (64-bit)

Directory Lister (64-bit) 歷史版本列表

目錄 Lister 64bit 是一個用於從硬盤,CD-ROM,軟盤,USB 存儲器上的用戶選擇目錄生成文件列表的工具。列表可以是 HTML,TXT 或 CSV 格式。這就像老的指揮,但更方便。安裝目錄列表器,並進行 30 天免費試用!目錄列表器特點:列表文件夾內容 目錄列表器允許您列出& 打印文件夾的內容,即創建,然後保存,打印或通過電子郵件發送從硬盤上,CD-ROM,DVD-ROM,... Directory Lister (64-bit) 軟體介紹


PhpStorm 2019.1 查看版本資訊

更新時間:2019-01-31
更新細節:

What's new in this version:

PhpStorm 2019.1 Build 191.4738.10
- Change log not available for this version


PhpStorm 2018.3.3 Build 183.5153.36
- Change log not available for this version


PhpStorm 2018.3.2 Build 183.4886.46

- In the second minor update for the PhpStorm 2018.3, we are happy to bring you DQL Autocompletion! The release also has some bug fixes and improvements for PHP and the Web, and takes on the latest improvements in IntelliJ Platform.

Autocompletion for DQL:
- In the recently released PhpStorm 2018.3, we introduced advanced support for Doctrine Query Language. Continuing to improve the DQL experience in PhpStorm, this time we give you autocompletion for classes and fields.
- It works the same way as autocompletion for PHP. You need to inject DQL language into a string and start typing. PhpStorm will suggest you to a way to complete your statements on the go.
- If you need to call autocompletion manually, just hit Ctrl+Space and see a list of suggestions popping up next to the caret.
- Autocompletion works with class names and fields, inside SELECT/UPDATE/INSERT/DELETE queries, with SQL function calls, and so on.
- We plan to improve the injection mechanism and work on other improvements. Please let us know how you like the DQL support and what you’d want to see improved.

Other updates worth noting:
- Fixed: IDE hangs when searching in Hebrew+English (IDEA-199367 +28)
- Fixed: MySQL datetime incorrectly shows (DBE-69 +21)
- Fixed: Editor Search/Replace and Find/Replace in Path: font for text input fields is too small (IDEA-106651 +20)
- Fixed: Project update over SSH fails if there are many repositories (IDEA-203005 +7)
- Fixed: IDE hangs indefinitely on PhpDoc auto-generation (WI-44525 +1)


PhpStorm 2018.3.1 Build 183.4588.67
- Change log not available for this version


PhpStorm 2018.3 Build 183.4284.150
- Change log not available for this version


PhpStorm 2018.2.4 Build 182.4505.42

Notable bug fixes:
- When working with tasks and contexts and switching between tasks, IDE will now restore VCS branch and workspace correctly (IDEA-184079 +21)
- Fixed in XML: IDE marks “Element is not allowed here” an Element which is allowed to configure (IDEA-195872 +18)


PhpStorm 2018.2.3 Build 182.4323.68

- This build delivers new features, bug fixes and improvements for PHP and the Web, and takes on the latest enhancements in IntelliJ Platform.

PHP 7.3 Support:
- The first release candidate of PHP 7.3 is already released. The GA of the new version of the PHP interpreter is expected somewhere in mid-December.
- PhpStorm is continuing to add support for new PHP features (WI-42883).

Support for list reference assignment:
- PHP 7.3 introduces the enhancement for list() construction, which allows using references
- You may use the short syntax [] as well

Support for literals as the first operand of instanceof:
- In PHP <7.3 this would cause the “instanceof expects an object instance, constant given” fatal error. In PHP 7.3, the result is always false.

Trailing comma in function calls:
- For a long time in PHP you could add a trailing comma in an array
- In PHP 7.3 it is possible to do same thing for function arguments list
- This works for method calls and closures as well
- This is especially handy when viewing diffs with every parameter located on a new line.
- Note that this only works for function calls, but not function definitions, so the following is not possible

Quick-fix for adding a missing extension to composer.json:
- In PhpStorm 2018.2 we’ve added the new Extension is missing in composer.json inspection. It detects the usages of functions, constants, and classes that rely on PHP extensions not currently listed in composer.json.
- Now, starting from 2018.2.3, you’ll be able to run a quick-fix for such issues: PhpStorm will add the corresponding extension record to composer.json for you.

DQL Support:
- We plan to fully support Doctrine Query Language (DQL) (WI-9948) in the upcoming PhpStorm 2018.3 major release. You may check out initial support in 2018.3 EAP. Meanwhile, in this release, injections of SQL inside text literals will be automatically disabled for strings with DQL identifiers. This will eliminate false positives and make your files clean from warnings.

Notable bug fixes and features worth mentioning:
- Fixed: LoginToGithub dialog invoked from CloneRepository dialog hides immediately
- Fixed: Vue.j SFC not resolving @ alias with @vue/cli 3 if vue is installed in a subfolder
- More options creating Angular Cli project
- Fixed: Cannot attach to remote nodejs after upgrade to 2018.2


PhpStorm 2018.2.2 Build 182.4129.45
Platform updates:
- The database tools now support ClickHouse out of the box
- Fixed a couple of performance issues related to VCS (file scanning)

Notable bug fixes and features worth mentioning:
- PHPUnit: rerun failed tests now works for “defined in configuration file” run configuration
- Debugging maximum simultaneous connection configuration setting is now set to 3 by default
- Fixed completion for interfaces
- Fixed “Deployed file is on server removed” stuck since update 2018.2


PhpStorm 2018.2.1 Build 182.3911.43
- Change log not available for this version


PhpStorm 2018.2 Build 182.3684.42

Completion:
Custom postfix completion templates:
- Postfix code completion has existed in PhpStorm since version 9, but only provided a limited number of predefined templates. PhpStorm 2018.2 takes postfix completion to the next level by allowing you to add custom postfix completion templates. Create templates to match your project and your personal coding style!

FQCN Completion:
- Completion now matches the namespace in addition to the element name. You don’t have to type or invoke completion for each part of IlluminateAuthEvents anymore – just type IAuE instead.

Refactorings:
Move Instance Method Refactoring:
- PhpStorm already the Pull Up/Push Down and Make Static/Move Static Method refactorings that help you move methods around. For handling the methods that cannot be made static or moved across the class hierarchy, PhpStorm 2018.2 introduces a refactoring that allows for moving an instance method to a parameter class or to a field class. Simply invoke the Move refactoring on a method declaration, and, if the new refactoring can be applied, you will see a dialog prompting you to choose the target class.

PHP Language:
Structural Search and Replace:
- In PhpStorm 2018.2, we’ve completely reworked Structural Search and Replace for PHP, which offers lots of new capabilities and greatly simplifies patterns creation. Now you can specify the type of Structural variable, which lets you, for example, find a call to the specific method where the first parameter is a string. You can use a simple pattern to find a foreach loop with an unconditional return statement, or even create your own inspection that will capture an unnecessarily double-quoted string, if your code style enforces this

Improved SQL Injections:
- In version 8, PhpStorm introduced basic support for string concatenations in Language Injections. The dynamic nature of the resulting strings and the strictness of the SQL parser caused a lot of false positive errors in SQL. In PhpStorm 2018.2, we’ve eliminated most such errors and introduced some new features, too. PhpStorm can now substitute the values of constants directly within the injected string, so you can run a query without copy-pasting their values. In addition, we’ve added support for SQL strings that use sprintf parameters

New Inspections and Quick Fixes:
PhpStorm 2018.2 delivers handy new inspections such as:
- Extension is missing in composer.json reports usages of classes/functions/constants from PHP extensions which are not specified in composer.json
- Non-canonical order of elements in PHPDoc reports tags such as @property, @param, @var, etc. that use a non-canonical order of elements e.g. name Type instead of Type name.
- Optional parameter before required parameter detects situations when an optional parameter appears before required parameters in a function/method declaration.

Web Technologies Support:
New JavaScript Intentions:
- To make you even more productive when working with JavaScript and TypeScript, PhpStorm has a bunch of new intentions that are available when you press Alt-Enter. Here are just some of them: Implement interface, Create derived class, Implement members of an interface or abstract class, Generate cases for switch, and Iterate with for..of.

Completion for events in Vue.js:
- In Vue templates, PhpStorm now provides code completion for events. Event names are suggested after v-on: or if you use the shorthand notation @event. There’s also code completion for event modifiers.
- As usual, all the features and improvements of WebStorm are available in PhpStorm, either out of the box or with free plugins available in the repository. Other noteworthy web-related features include TypeScript 2.9 and 3.0 support, the new Code Coverage feature that helps to find unused code, extract and convert React component refactoring, new integrations with Angular CLI, global file watchers, rerun failed tests and other.

IDE Improvements:
Updated UI:
- We’ve rolled out brand new icons and dark title bars on macOS. Furthermore, PhpStorm 2018.2 brings support for the MacBook Touch Bar! Run and debug your project, commit changes, and update the project right from the Touch Bar

VCS:
Version control comes with the following changes:
- Easier resolve of merge conflicts
- Enhancements in VCS Log tab
- Browse repository at revision
- Multiple GitHub accounts
- Skip the Push dialog

Database Tools:
Database tools in PhpStorm have been improved thanks to our colleagues from the DataGrip team:
- New SQL formatter
- Source code migrations
- Query plan diagram
- Custom data source

Other improvements:
- Customizable value for $_SERVER['DOCUMENT_ROOT']
- Simple CodeSniffer/MessDetector setup
- The new presentation for Quick Documentation
- Allow renaming old style constructor to the new style
- New Add @method tag quick fix for Undefined method
- Add method quick fix now inserts parameter type hints
- PHPUnit composite configuration
- Jump outside closing bracket/quote with Tab
- HTTP Client: Support environment variables in the request body
- HTTP Client: Support formatting of POST request body
- Docker: navigate from compose nodes and containers
- Docker: wrapping words in Docker logs


PhpStorm 2018.1.6 Build 181.5281.35
- This build fixes the issue with the Register action: IDEA-193747


PhpStorm 2018.1.5 Build 181.5281.19
- Change log not available for this version


PhpStorm 2018.1.4 Build 181.5087.24
- Fixes for PHP Remote Interpreters (Docker/Docker-Compose and Vagrant)
- Compiling PL/SQL code with actual errors
- Support of conditional compilation flags in pl/sql code
- Show inferred type in Flow in Brief Info


PhpStorm 2018.1.3 Build 181.4892.97

- This build delivers new features, bug fixes and improvements for PHP and the Web, and takes on the latest improvements in IntelliJ Platform

Notable bug fixes and features worth mentioning:
- void return type is not autocompleted WI-41850
- Find in Path” shortcut (Ctrl+Shift+F) not working in “Find in Path” preview window IDEA-189447
- Replace all’ confirmation popup is out of focus IDEA-186587
- Run configuration drop down menu does not show the full name of the test being selected IDEA-182763
- Wrong commit and push buttons rendering IDEA-190206
- Don’t add renamed or moved files to git index unless configured to do so IDEA-118140
- Default run/debug configurations are not saved IDEA-189444


PhpStorm 2018.1.2 Build 181.4668.78

Syntax Highlighting in Quick Definition:
- Using the Quick Definition popup became more convenient: with added syntax highlighting, you can now read what exactly a function or a class is doing, without losing your current context.
- Flexible configuration of imports from the global namespace
- In the previous versions of PhpStorm, you could choose to either import everything (functions, classes, constants) from the global namespace or use FQN for functions and constants. We’ve listened to your feedback and realized that more flexibility is sometimes required. In PhpStorm 2018.1.2, you can control auto-import separately for classes, functions, and constants
- For classes, you can choose between “insert FQN” and “prefer import” (PhpStorm will insert import if this doesn’t result in a conflict). For functions and constants, the options are “insert FQN”, “prefer import”, and “prefer fallback” (you can refer to the PHP documentation for its exact meaning)

Notable bug fixes and features worth mentioning:
- Collapsing tree node does not collapses all subnodes (regression)
- Command Line Tools Console – Cursor Not In Run Box
- Incorrect variable name during phpDoc generation for field in case inferred type in constructor $this
- Goto definition’ on ‘new expression’ targeting parent class __construct instead of referenced class
- Provide the ability to disable tooltips in editor without disabling inspections
- Subversion File History not working for links with spaces
- Typescript readonly type inference from const
- Add option to omit JsDoc types for TypeScript code


PhpStorm 2018.1.1 Build 181.4445.72

File-level suppression to PHP inspections:
- PhpStorm provides a lot of inspections to catch all sort of errors in your code, but it may occur that some particular code shouldn’t follow the standards set for the whole project. In previous PhpStorm versions, you were able to suppress a warning for a particular statement or declaration. PhpStorm 2018.1.1 brings the ability to suppress an inspection for the whole file: just add /**@noinspection <inspection_name> */ right after the first opening PHP tag or press ALT+Enter on the inspection warning and select Suppress for file in the submenu. You can also use /**@noinspection ALL */ to suppress all inspection for the file.

Required plugins for a project:
- Suppose you’ve found an essential plugin that would help a lot with developing your project (Symfony or PHP Annotations plugins are good examples of such plugins), and you want to make sure that everybody on your team is on the same page. Previously there was no way to let your colleagues know about the plugins without talking to them or writing the readme file. PhpStorm 2018.1.1 introduces Required plugins, which you can locate under Preferences | Build, Execution, Deployment | Required Plugins. You can specify the plugins and their exact versions as the project’s requirements. After you’ve set them, PhpStorm will notify if the required plugins are missing or need an update.

Go to Type action:
- You might have already used the Navigate | Type declaration action when working with JavaScript or when using our other IDEs. It lets you navigate to the type declaration from any expression, and now it is available in PHP, as well.

Notable bug fixes and features worth mentioning:
- Incorrect ‘find usages’ / refactoring of __constructor of parent class WI-19518
- Indexing of large files WI-41378
- Deployment: context menu is missing if no default server is selected WI-40826
- Docker-compose: output isn’t shown WI-41002
- Keystrokes lost during freezing IDEA-186636
- CommonJS: properties of function object returned by exported module not resolved WEB-24161
- DESC/DESCRIBE in read-only mode DBE-397


PhpStorm 2018.1 Build 181.4203.565

PHP Language:
- Inline function/method refactoring
- Refactor your code to functional style
- Configurable unchecked exceptions
- Goto Symbol navigation improvements
- Hierarchy checks for class aliases

Testing:
- Creating class from test
- Codeception: code coverage
- Better @covers support
- Gutter icons for running tests

HTTP Client:
- Assertions support
- Simplified first start


PhpStorm 2017.3.6 Build 173.4674.46
Bug fixes and features:
- PhpStorm v2017.3.4 & Codeception v2.4.0 incompatibility WI-40950


PhpStorm 2017.3.5 Build 173.4674.45
- Notable bug fixes and features worth mentioning
- Fixed: Built-in SSH: does not support strong security ciphers – Cannot negotiate, proposals do not match IDEA-140196
- PhpStorm v2017.3.4 & Codeception v2.4.0 incompatibility WI-40950
- Fixed: Multiple “Updating indices” bg tasks after external file system changes IDEA-123287
- Fixed: Autocomplete too fast and leads to errors when inputting a number DBE-4965
- Fixed: Hide MySQL Collations & Schemas DBE-5557
- Fixed: Database Console name in Files have turned into guids DBE-5904


PhpStorm 2017.3.4 Build 173.4548.32
Fixed:
- Allow UI scale exceed 2x
- Multiple “Updating indices” bg tasks after external file system changes
- Evaluate window: cannot TAB from expression into results tree


PhpStorm 2017.3.3 Build 173.4301.34

REST Client: Auto-formatting of responses:
- In this build, we’ve implemented one of the new REST client’s most voted features: auto-formatting of request results. PhpStorm analyses Content-Type and formats the response accordingly. If type detection has failed for some reason, you can still choose between JSON, HTML and XML formatting manually. To see the original response, you can select the View as Text formatting type

Highlighting call-site in case of pass-by-reference:
- PHP 7.3 may introduce “Explicit call-site pass-by-reference” (RFC) that will allow prepending of a call-site argument with &. This should help to understand the code and notice possible unexpected changes of a variable. It’s still a year till the 7.3 release, but why wait?
- In this build, we’ve extended parameter hints with pass-by-reference visualization that will help you find a function or a method call that has reference declaration in a parameter. The new parameter hints will be shown for all arguments that are actually passed by reference. Please share your feedback about the new feature!

Notable bug fixes and features worth mentioning:
- Fixed: Short syntax array destructuring does not allow skipping values: WI-34517
- Fixed: Unhandled exception: doesn’t analyze “new MyClass” (constructor) expression: WI-37946
- Fixed: Broken “Change to” spelling quickfix in the Commit dialog: WI-39142
- PHP New Class now saves previously selected template: WI-39427
- Fixed: “Can’t run 32-bit version on Windows”: JRE-590
- Fixed: All run configurations lost after upgrade to 2017.3: IDEA-182966
- Fixed: Tool Window docking issue IDEA-149061
- Fixed: FETCH ALL IN returns error org.postgresql.jdbc4.Jdbc4ResultSet: DBE-2465
- Fixed: DataGrip does not recognize Redshift’s WITH NO SCHEMA BINDING clause: DBE-5404


PhpStorm 2017.3.2 Build 173.4127.29
Notable bug fixes and features worth mentioning:
- Unhandled exception shouldn’t be reported for tests with @expectedException
- Improved discoverability of Recursive Search in Find Window


PhpStorm 2017.3.1 Build 173.3942.32
- Support custom templates variables in ‘new class’ dialog
- Fix “Structure view is always collapsed”
- Fix Tool Window docking issue
- Fix “Unable to update issue state from Open Task dialog”


PhpStorm 2017.3 Build 173.3757.138
- Brand new editor-based REST client. With the new REST client, all the powers of the PhpStorm code editor are now available for your REST requests.
- Significant performance improvements. Typing latency in very complex PHP files has decreased significantly. We've examined typing latency in the mPDF main file, which is a 38k-line-long mix of PHP, JS, and HTML, and it is down by 75% in PhpStorm 2017.3!
- New inspections for exception handling. Three new inspection Unhandled exception, Redundant @throws and Redundant catch clause with corresponding Quick Fixes will help you take exceptions under your control!
- Test generation improvements. Now you can create Codespec and PhpSpec classes and create test methods!
- Improved Twig support. We've implemented language injections for Twig custom tags and named blocks as well as improved Twig formatting that can now handle complex structures.

Kingston SSD Manager 1.1.1.8 查看版本資訊

更新時間:2019-01-22
更新細節:

NumPy 1.16.0 查看版本資訊

更新時間:2019-01-14
更新細節:

What's new in this version:

Highlights:
- Experimental support for overriding numpy functions, see __array_function__ below.
- The matmul function is now a ufunc. This provides better performance and allows overriding with __array_ufunc__.
- Improved support for the ARM and POWER architectures.
- Improved support for AIX and PyPy.
- Improved interop with ctypes.
- Improved support for PEP 3118.

New functions:
- New functions added to the numpy.lib.recfuntions module to ease the structured assignment changes: assign_fields_by_name, structured_to_unstructured, unstructured_to_structured, apply_along_fields, require_fields

New deprecations:
- The type dictionaries numpy.core.typeNA and numpy.core.sctypeNA are deprecated. They were buggy and not documented and will be removed in the 1.18 release. Usenumpy.sctypeDict instead.
- The numpy.asscalar function is deprecated. It is an alias to the more powerful numpy.ndarray.item, not tested, and fails for scalars.
- The numpy.set_array_ops and numpy.get_array_ops functions are deprecated.
- As part of NEP 15, they have been deprecated along with the C-API functions :c:func:PyArray_SetNumericOps and :c:func:PyArray_GetNumericOps. Users who wish to override the inner loop functions in built-in ufuncs should use :c:func:PyUFunc_ReplaceLoopBySignature.
- The numpy.unravel_index keyword argument dims is deprecated, use shape instead.
- The numpy.histogram normed argument is deprecated. It was deprecated previously, but no warning was issued.
- The positive operator (+) applied to non-numerical arrays is deprecated. See below for details.
- Passing an iterator to the stack functions is deprecated

Expired deprecations:
- NaT comparisons now return False without a warning, finishing a deprecation cycle begun in NumPy 1.11.
- np.lib.function_base.unique was removed, finishing a deprecation cycle begun in NumPy 1.4. Use numpy.unique instead.
- multi-field indexing now returns views instead of copies, finishing a deprecation cycle begun in NumPy 1.7. The change was previously attempted in NumPy 1.14 but reverted until now.
- np.PackageLoader and np.pkgload have been removed. These were deprecated in 1.10, had no tests, and seem to no longer work in 1.15.

Future changes:
NumPy 1.17 will drop support for Python 2.7

Directory Lister 2.34 (64-bit) 查看版本資訊

更新時間:2019-01-12
更新細節:

What's new in this version:

Directory Lister 2.34 (64-bit)
- Added new column "Rating" for multimedia files


Directory Lister 2.33 (64-bit)
- Added support for webm format
- Retrieving more metadata from AVI files
- Dropped support for Windows XP
- Fix MP4 length fragmented files
- Fix sampling frequency for some MKV files


Directory Lister 2.32 (64-bit)
- Retrieve more MP3 properties when using MediaInfo
- Retrieve more WAV properties (Album, Track)
- Prevent updating Last Access Time while reading files


Directory Lister 2.31 (64-bit)
- Fix updating columns listed on some options
- Fix configuration migration from v2.25
- Fix reading AC3 properties from some MPEG files


Directory Lister 2.30 (64-bit)
- Added support for reading meta data from html files
- Added /c command line option to override configuration
- Fix endless loop while parsing broken mkv files


Directory Lister 2.29 (64-bit)
- Added option to display free bytes and total disk size in title summary
- Fix writing multimedia length column to database output


Directory Lister 2.28 (64-bit)
- Added "Vertical resolution" option and renamed current "Resolution" into "Horizontal resolution"
- Added option to count total multimedia length for folders
- Added "Body serial" and "Lens serial" columns
- Resolutions are now extracted from PNG images
- Recognize Unicode comments in JPEG files
- Merged Multimedia -> Comments, Title with respective Document options
- Merged Multimedia -> Date taken with Document -> Doc created option. (Now renamed to "Doc created / Date taken")
- Moved several descriptive metadata to Document page and left only technical metadata on Multimedia page
- Fix newline character in text output
- Fix slash being added to CSV header when Path is checked


Directory Lister 2.27 (64-bit)
- Recognize lower case keys in FLAC metadata
- Display single slash if displayed path is empty
- Fixed not displaying time in date columns for Excel output
- Fix displaying date values in older Excel editions (2010, 2007)


Directory Lister 2.26 (64-bit)
- Fix displaying number as separate column when column names is not displayed
- Fix displaying path as separate column in Excel output


Directory Lister 2.25 (64-bit)
- Added "Lock table header" option to HTML output
- Added options to calculate SHA-3 256 and 512 bits hashes
- Added options to have separate "Path", "Extension" and "Number" columns for all outputs and removed "Path, Name and Extension together" option for CSV
- Option to split path into parts now works for all outputs
- Added option to end path with slash
- Added support for SQLite database output via ODBC
- Custom header can now be included in CSV output
- Added option to automatically save configuration on exit
- All columns are now visible in "Column order" list box for CSV and database outputs
- Updated HTML output template to HTML5 standard
- ! < and > are now not added to folder names, only to subfolders


Directory Lister 2.24 (64-bit)
- Added option to include folder id columns in database output
- Fix total number of files and total size when folder filter is applied


Directory Lister 2.23 (64-bit)
- Added support for ICO and CUR files
- Added option to use MediaInfo library to retrieve metadata
- Added support for OGG files
- More properties are retrieved from WAV files
- Retrieving Subtitle property from MP3, MP4 and ASF files into Subject column
- Fixed bits per pixel value for RGBA PNG images
- Fixed use of TAB as a separator in CSV output which resulted in merged columns


Directory Lister 2.22 (64-bit)
- Added Microsoft Excel as an output option
- Zip archives are now also shown in the left tree when 'Treat archives as directories' option is selected
- Added support for ZIP64 archives
- Fix displaying VBR for directory rows in CSV


Directory Lister 2.21 (64-bit)
- Fixed database output to SQL Server when date columns were selected.


Directory Lister 2.20 (64-bit)
- Date fields can now show dates since year 1601 and not only since 1970
- Fixed slow report generation for "Draw directories tree" option
- Fixed reading dates from xml properties (Office, ebooks, pdf) for some files

Directory Lister 2.33 (64-bit) 查看版本資訊

更新時間:2018-12-15
更新細節:

What's new in this version:

Directory Lister 2.33 (64-bit)
- Added support for webm format
- Retrieving more metadata from AVI files
- Dropped support for Windows XP
- Fix MP4 length fragmented files
- Fix sampling frequency for some MKV files


Directory Lister 2.32 (64-bit)
- Retrieve more MP3 properties when using MediaInfo
- Retrieve more WAV properties (Album, Track)
- Prevent updating Last Access Time while reading files


Directory Lister 2.31 (64-bit)
- Fix updating columns listed on some options
- Fix configuration migration from v2.25
- Fix reading AC3 properties from some MPEG files


Directory Lister 2.30 (64-bit)
- Added support for reading meta data from html files
- Added /c command line option to override configuration
- Fix endless loop while parsing broken mkv files


Directory Lister 2.29 (64-bit)
- Added option to display free bytes and total disk size in title summary
- Fix writing multimedia length column to database output


Directory Lister 2.28 (64-bit)
- Added "Vertical resolution" option and renamed current "Resolution" into "Horizontal resolution"
- Added option to count total multimedia length for folders
- Added "Body serial" and "Lens serial" columns
- Resolutions are now extracted from PNG images
- Recognize Unicode comments in JPEG files
- Merged Multimedia -> Comments, Title with respective Document options
- Merged Multimedia -> Date taken with Document -> Doc created option. (Now renamed to "Doc created / Date taken")
- Moved several descriptive metadata to Document page and left only technical metadata on Multimedia page
- Fix newline character in text output
- Fix slash being added to CSV header when Path is checked


Directory Lister 2.27 (64-bit)
- Recognize lower case keys in FLAC metadata
- Display single slash if displayed path is empty
- Fixed not displaying time in date columns for Excel output
- Fix displaying date values in older Excel editions (2010, 2007)


Directory Lister 2.26 (64-bit)
- Fix displaying number as separate column when column names is not displayed
- Fix displaying path as separate column in Excel output


Directory Lister 2.25 (64-bit)
- Added "Lock table header" option to HTML output
- Added options to calculate SHA-3 256 and 512 bits hashes
- Added options to have separate "Path", "Extension" and "Number" columns for all outputs and removed "Path, Name and Extension together" option for CSV
- Option to split path into parts now works for all outputs
- Added option to end path with slash
- Added support for SQLite database output via ODBC
- Custom header can now be included in CSV output
- Added option to automatically save configuration on exit
- All columns are now visible in "Column order" list box for CSV and database outputs
- Updated HTML output template to HTML5 standard
- ! < and > are now not added to folder names, only to subfolders


Directory Lister 2.24 (64-bit)
- Added option to include folder id columns in database output
- Fix total number of files and total size when folder filter is applied


Directory Lister 2.23 (64-bit)
- Added support for ICO and CUR files
- Added option to use MediaInfo library to retrieve metadata
- Added support for OGG files
- More properties are retrieved from WAV files
- Retrieving Subtitle property from MP3, MP4 and ASF files into Subject column
- Fixed bits per pixel value for RGBA PNG images
- Fixed use of TAB as a separator in CSV output which resulted in merged columns


Directory Lister 2.22 (64-bit)
- Added Microsoft Excel as an output option
- Zip archives are now also shown in the left tree when 'Treat archives as directories' option is selected
- Added support for ZIP64 archives
- Fix displaying VBR for directory rows in CSV


Directory Lister 2.21 (64-bit)
- Fixed database output to SQL Server when date columns were selected.


Directory Lister 2.20 (64-bit)
- Date fields can now show dates since year 1601 and not only since 1970
- Fixed slow report generation for "Draw directories tree" option
- Fixed reading dates from xml properties (Office, ebooks, pdf) for some files

Directory Lister 2.32 (64-bit) 查看版本資訊

更新時間:2018-10-29
更新細節:

What's new in this version:

Directory Lister 2.32 (64-bit)
- Retrieve more MP3 properties when using MediaInfo
- Retrieve more WAV properties (Album, Track)
- Prevent updating Last Access Time while reading files


Directory Lister 2.31 (64-bit)
- Fix updating columns listed on some options
- Fix configuration migration from v2.25
- Fix reading AC3 properties from some MPEG files


Directory Lister 2.30 (64-bit)
- Added support for reading meta data from html files
- Added /c command line option to override configuration
- Fix endless loop while parsing broken mkv files


Directory Lister 2.29 (64-bit)
- Added option to display free bytes and total disk size in title summary
- Fix writing multimedia length column to database output


Directory Lister 2.28 (64-bit)
- Added "Vertical resolution" option and renamed current "Resolution" into "Horizontal resolution"
- Added option to count total multimedia length for folders
- Added "Body serial" and "Lens serial" columns
- Resolutions are now extracted from PNG images
- Recognize Unicode comments in JPEG files
- Merged Multimedia -> Comments, Title with respective Document options
- Merged Multimedia -> Date taken with Document -> Doc created option. (Now renamed to "Doc created / Date taken")
- Moved several descriptive metadata to Document page and left only technical metadata on Multimedia page
- Fix newline character in text output
- Fix slash being added to CSV header when Path is checked


Directory Lister 2.27 (64-bit)
- Recognize lower case keys in FLAC metadata
- Display single slash if displayed path is empty
- Fixed not displaying time in date columns for Excel output
- Fix displaying date values in older Excel editions (2010, 2007)


Directory Lister 2.26 (64-bit)
- Fix displaying number as separate column when column names is not displayed
- Fix displaying path as separate column in Excel output


Directory Lister 2.25 (64-bit)
- Added "Lock table header" option to HTML output
- Added options to calculate SHA-3 256 and 512 bits hashes
- Added options to have separate "Path", "Extension" and "Number" columns for all outputs and removed "Path, Name and Extension together" option for CSV
- Option to split path into parts now works for all outputs
- Added option to end path with slash
- Added support for SQLite database output via ODBC
- Custom header can now be included in CSV output
- Added option to automatically save configuration on exit
- All columns are now visible in "Column order" list box for CSV and database outputs
- Updated HTML output template to HTML5 standard
- ! < and > are now not added to folder names, only to subfolders


Directory Lister 2.24 (64-bit)
- Added option to include folder id columns in database output
- Fix total number of files and total size when folder filter is applied


Directory Lister 2.23 (64-bit)
- Added support for ICO and CUR files
- Added option to use MediaInfo library to retrieve metadata
- Added support for OGG files
- More properties are retrieved from WAV files
- Retrieving Subtitle property from MP3, MP4 and ASF files into Subject column
- Fixed bits per pixel value for RGBA PNG images
- Fixed use of TAB as a separator in CSV output which resulted in merged columns


Directory Lister 2.22 (64-bit)
- Added Microsoft Excel as an output option
- Zip archives are now also shown in the left tree when 'Treat archives as directories' option is selected
- Added support for ZIP64 archives
- Fix displaying VBR for directory rows in CSV


Directory Lister 2.21 (64-bit)
- Fixed database output to SQL Server when date columns were selected.


Directory Lister 2.20 (64-bit)
- Date fields can now show dates since year 1601 and not only since 1970
- Fixed slow report generation for "Draw directories tree" option
- Fixed reading dates from xml properties (Office, ebooks, pdf) for some files

Malware Hunter 1.68.0.652 查看版本資訊

更新時間:2018-10-29
更新細節:

What's new in this version:

Malware Hunter 1.68.0.652
- Optimized Malware: added support for 'PCProCleaner' and 'Perfect PC Cleanup'
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.67.0.651
- Optimized Malware: added support for 'SensumPCCleaner' and 'SensumDiskTuner'
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.66.0.650
- Optimized Malware: added support for 'WinmetryUtilityHub' and 'ComputerCarePCCleaner'
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.65.0.649
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.64.0.647
- Optimized Malware: added support for 'DoctorPCCleaner', 'Pccurepro', 'Restore' and 'Instagram2go'
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.63.0.646
- Optimized Malware: added support for 'RegistrySmith', 'MindbrinkPCSparkle', 'SuperCleanup' and 'ProPrivacyGuard'
- Optimized Protection: optimized the Protection algorithm and increased the accuracy by 25%
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.62.0.644
- Optimized Malware: added support for 'IncognitoPrivateShield', 'PCCleanerPro', 'GargizerSystemRepair' and 'PCPowerBooster'
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.61.0.643
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.60.0.642
- Optimized Malware: added support for 'BoostPCPro', 'AdvIdentityProtect', 'PCAccelerator' and 'PCSpeedLane'
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.59.0.641
- Change log not available for this version


Malware Hunter 1.58.0.638
- Optimized the procedure of adding file into trust list: added tips when clicking "Trust" in the scanning result list
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.57.0.635
- Add Malware: added malware scanning and cleaning, safer and more secure
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.56.0.634
- Optimized Virus Scan: fixed the bug that files of quarantine can't be deleted normally
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.55.0.629
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.54.0.627
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.53.0.54
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.52.0.503
- Change log not available for this version


Malware Hunter 1.49.0.479
- Optimized PC Booster: fixed the bug that search result window can't be displayed properly after losing the focus
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.48.0.442
- Optimized PC Booster: optimized operation logic so that the program runs more smoothly
- Optimized Cleanup: optimized cleansing algorithm, and improved accuracy by 20%
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.47.0.438
- Optimized Custom Scan: save the last scanning directory, so user can have a quick custom scan next time


Malware Hunter 1.46.0.423
- Minor GUI improvements
- Minor bug fixes


Malware Hunter 1.45.0.422
- Optimized Virus Scan: optimized scanning algorithm, speed up by 30%
- Minor GUI improvements
- Minor bug fixes

Directory Lister 2.31 (64-bit) 查看版本資訊

更新時間:2018-10-08
更新細節:

What's new in this version:

Directory Lister 2.31 (64-bit)
- Fix updating columns listed on some options
- Fix configuration migration from v2.25
- Fix reading AC3 properties from some MPEG files


Directory Lister 2.30 (64-bit)
- Added support for reading meta data from html files
- Added /c command line option to override configuration
- Fix endless loop while parsing broken mkv files


Directory Lister 2.29 (64-bit)
- Added option to display free bytes and total disk size in title summary
- Fix writing multimedia length column to database output


Directory Lister 2.28 (64-bit)
- Added "Vertical resolution" option and renamed current "Resolution" into "Horizontal resolution"
- Added option to count total multimedia length for folders
- Added "Body serial" and "Lens serial" columns
- Resolutions are now extracted from PNG images
- Recognize Unicode comments in JPEG files
- Merged Multimedia -> Comments, Title with respective Document options
- Merged Multimedia -> Date taken with Document -> Doc created option. (Now renamed to "Doc created / Date taken")
- Moved several descriptive metadata to Document page and left only technical metadata on Multimedia page
- Fix newline character in text output
- Fix slash being added to CSV header when Path is checked


Directory Lister 2.27 (64-bit)
- Recognize lower case keys in FLAC metadata
- Display single slash if displayed path is empty
- Fixed not displaying time in date columns for Excel output
- Fix displaying date values in older Excel editions (2010, 2007)


Directory Lister 2.26 (64-bit)
- Fix displaying number as separate column when column names is not displayed
- Fix displaying path as separate column in Excel output


Directory Lister 2.25 (64-bit)
- Added "Lock table header" option to HTML output
- Added options to calculate SHA-3 256 and 512 bits hashes
- Added options to have separate "Path", "Extension" and "Number" columns for all outputs and removed "Path, Name and Extension together" option for CSV
- Option to split path into parts now works for all outputs
- Added option to end path with slash
- Added support for SQLite database output via ODBC
- Custom header can now be included in CSV output
- Added option to automatically save configuration on exit
- All columns are now visible in "Column order" list box for CSV and database outputs
- Updated HTML output template to HTML5 standard
- ! < and > are now not added to folder names, only to subfolders


Directory Lister 2.24 (64-bit)
- Added option to include folder id columns in database output
- Fix total number of files and total size when folder filter is applied


Directory Lister 2.23 (64-bit)
- Added support for ICO and CUR files
- Added option to use MediaInfo library to retrieve metadata
- Added support for OGG files
- More properties are retrieved from WAV files
- Retrieving Subtitle property from MP3, MP4 and ASF files into Subject column
- Fixed bits per pixel value for RGBA PNG images
- Fixed use of TAB as a separator in CSV output which resulted in merged columns


Directory Lister 2.22 (64-bit)
- Added Microsoft Excel as an output option
- Zip archives are now also shown in the left tree when 'Treat archives as directories' option is selected
- Added support for ZIP64 archives
- Fix displaying VBR for directory rows in CSV


Directory Lister 2.21 (64-bit)
- Fixed database output to SQL Server when date columns were selected.


Directory Lister 2.20 (64-bit)
- Date fields can now show dates since year 1601 and not only since 1970
- Fixed slow report generation for "Draw directories tree" option
- Fixed reading dates from xml properties (Office, ebooks, pdf) for some files

App Builder 2018.123 查看版本資訊

更新時間:2018-10-08
更新細節:

What's new in this version:

App Builder 2018.123
- Update the AngularJS Javascript library core and the use Aria, Route, Touch and Sanitize modules to the latest stable version from 1.7.4 to 1.7.5


App Builder 2018.122
- Add a new "Build and run" command in the Run menu and Run toolbar. This command is exactly like the "Build" one, except that, after build the app, this is launched in the AB internal debugger browser. Sometimes we don't want to add the debug information into the Javascript, but if so we need to build and then run the app. This new command do this last task in one click


App Builder 2018.121
- Fix an unexpected behaviour with the Radio controls. These controls "miss the model" if we goto another app's view. The Checked variable of the Radio controls has been removed, in order to solve this unexpected behaviour
- If your app uses the Checked variable of the Radio controls, please, review your code. You must use the Radios' Group variable in order to check one or another Radio controls. See the Radio app sample to see it working


App Builder 2018.120
- Enhance the Range control by apply to it certain new custom style from the Boostrap CSS framework. This made the Range control (horizontal only) showing in the same manner in all the platforms


App Builder 2018.118
- Fix an error in the Location control, which don't setup in the right way the [Control.Altitude] variable
- Update the Awesome icons fonts to the latest version


App Builder 2018.117
- Update the AngularJS Javascript library core and the used Router, Touch and Sanitize modules to the latest stable version from 1.7.3 to 1.7.4


App Builder 2018.116
- Some very minor changes in the Welcome page of the IDE


App Builder 2018.115
- Some small change in the "CordovaPlugins" app sample, which use an old an non worked ID for the used Cordova plugin. The same change has been made in the "SendSMS" Javascript plugin of DecSoft App Builder


App Builder 2018.114
- Enhance the recently added multiline comments in the code editor. We can now use this feature in a more free way. Now is more easy to use multiline comments since the compiler is less restrictive. Various ways of multiline comments that are not valid before, are now valid in this AB release


App Builder 2018.112
- Detect possible syntax error when use multiline comments in the code editor. Multiline comments must start with /* in a new line and end with */ in a new line. In other some unexpected behaviours can be found, so the AB compiler try to detect this situations to avoid it


App Builder 2018.111
- Update the AngularJS Javascript library core and the used Router, Touch and Sanitize modules to the latest stable version from 1.7.2 to 1.7.3


App Builder 2018.109*
- Remove the AngularJS animation module by two reasons: probably the CSS animation classes that already include App Builder are enough, and, more important, this module is causing certain delay (which can be noted more or less) when hide and show elements


App Builder 2018.108
- Update also the AngularJS UI-Boostrap Javascript libary to their latest version
- Upgrade the Boostrap CSS framework from the 4.1.1 version to the latest 4.1.3 version. Update also the 21 bootswatch themes already included in DecSoft App Builder to the 4.1.3 version of Boostrap CSS
- Enhance the Carousel control in order to properly shown the carousel images in an fluid way by default. You can see that changes in the Carousel app sample


App Builder 2018.107
- Update the AngularJS Javascript library core and the used Animate, Router, Touch and Sanitize modules to the latest stable version from 1.7.0 to 1.7.2


App Builder 2018.106
- Due to a mistake the previous release of App Builder's executables are not digitally signed. This release just fix that mistake with the appropriate sign for that executables


App Builder 2018.105
- Upgrade the moment.js Javascript library included in App Builder to the latest stable version and also fix a warning message when use the DateAdd and DateSubstract actions


App Builder 2018.104
- Fix a bug wich causes that the AlertBox action don't work as expected when use it from an modal or dialog app's view. In fact the AlertBox is shown, but this causes that the dialog or modal app's view cannot be closed with the CloseDialog action, as expected


App Builder 2018.103
- Fix an problem when try to delete an style or script file from the app's files manager. The problem only occur if the original file don't exists, and, this cause that the file manager can't delete the file from the app's project file


App Builder 2018.102

Enhance the App Builder compiler time when compile with debug and without debug information. Here are some results using an real App Builder app:
Before the AB compiler enhancements:
- App with 131 views. Compilation time with debug: 01:16.259 minute
- App with 131 views. Compilation time without debug: 00:50.269 seconds

After the AB compiler enhancements:
- App with 131 views. Compilation time with debug: 00:14.712 seconds
- App with 131 views. Compilation time without: 00:14.115 seconds
- As you can see above the compiler time has been considerable reduced. Not only this: now compile with or without debug information don't mean that the compiler take too much more time in the first case.


App Builder 2018.100
- Enhance the External Javascript tutorial in the program's help file in order to shown how to access to app's global variables from pure Javascript code. Thanks Julio for the advise!
- Fix a minor mistake in the program's installation assistant which causes to use a wrong string from the portuguese catalong, when must be from the spanish one.


App Builder 2018.99
- Remove the now deprecated "createObjectURL" usage from the Webcam success event in order to assign the stream to the video object using the recommended "srcObject" property!


App Builder 2018.97
- Upgrade the brazilian portuguese translation of the App Builder IDE, adding the new introduced strings in the latest releases

App Builder 2018.94
- Added the new AutoCloseAlertBox action (number 260 in App Builder), which is similar to the AlertBox, with the particularity that the alert is closed after the specified seconds
- The MessageBox action can now contains zero butons, so, if we leave the Button arguments empty, no buttons appear in the dialog: then you are responsible to close the MessageBox action using the CloseDialog action
- The MessageBox action Header argument is now optional. This mean that if no header is specified the Message Box header is not visible to the user


App Builder 2018.93
- Fix an introduced bug while try to solve certain issue with the MediaPlayer control some few releases ago


App Builder 2018.92
- Fix an mistake in the app's Files Manager dialog, which causes that the Explorer toolbar button stay enable when in fact there is no file to be explored. The explorer button has been enhanced too in order to be ready to explore styles and scripts, in addition to images, other files and folders


App Builder 2018.91
- Enhance the Checkbox and Radio controls, or, better said, let it working as expected. Before this release we can't change the Caption variable of these controls in runtime, which is not what we can expected


App Builder 2018.90
- Add 14 new app's themes to be available for our apps. This themes are based in Boostrap CSS 4.1.1 version, and, counting the default one, we have now up to 36 app's themes ready to be used in our apps.
- Upgrade the Boostrap CSS framework from the 4.0.0 version to the latest 4.1.1 version. Update also the 21 app's themes already included in DecSoft App Builder to the 4.1.1 version of Boostrap CSS


App Builder 2018.89
- Prevent to fire the Complete and Update events of the MediaPlayer control if we change the view on the Complete event of that control, for example. This avoid certain errors when try to access non existing properties of the MediaPlayer control. Thanks Julio for the report


App Builder 2018.88
- Fix an problem with the Navbar control HTML caused by the upgraded to AngularJS 1.7.0. The error don't cause the app to stop, however, we carefully recommend to upgrade AB to this new release if you use the Navbar control in your app


App Builder 2018.85
- Update AngularJS and the used route, touch, sanitize and animated modules from the 1.6.9 version to the latest 1.7.0 stable version. This AngularJS release include some bug fixed, changes and various enhancements from the previous release
- The program config Debugger options have an Search button, which search for the possible browsers installed in the computer, to be added into the App Builder's Debugger toolbar. Now this Search also recognize Firefox 64 bits installations


App Builder 2018.84
- Fix a bug which occur when the App Builder compiler copy an entire directory previously established in the app's files manager. If after the first compilation the original directory files change (which is something more or less common) the App Builder compiler copy again the directory files into the compilation directoy, but in an wrong place. Now the directory files are copied in the right place.


App Builder 2018.83
- Change log not available for this version


App Builder 2018.82
- Add some useful CSS classes to the Report control, and, more in particular, to the optional "loading" text that can appear in the Report control. If the Report Wrapper is "table", you can now use the "loading-row", "loading-col" and "loading-text" CSS classes. If the Report Wrapper is "grid", you can now use the "loading-container" and "loading-text" CSS classes. Thanks Julio for the suggestion


App Builder 2018.81
- Some minor adaptations in some App Builder IDE labels in order to allows brazilian portuguese and may other translation to properly translate that labels
- Some fixes and enhancements over the brazilian portuguese translation of the IDE of DecSoft's App Builder. Thanks very much Jackson for your work!


App Builder 2018.80
- Add the ItemClick event to the TypeAhead control. This event is fired when the user select one of the available TypeAhead items. The Value variable of the control stores the item that has been selected by the user


App Builder 2018.79
- This DecSoft's App Builder release includes the brazilian portuguese translation for the App Builder's IDE. Only the help file is not translated, but the IDE is completely translated into the brazilian portuguese language


App Builder 2018.78
- Change log not available for this version


App Builder 2018.77
- Made some internal changes and enhance the AB core Javascript in order to allows attributes like "style" in HTML tags inserted via app's variables in certain contexts like in HTML and Report controls


App Builder 2018.76
- The "viewport" HTML meta tag are not correctly written in the app's HTML file, causing that the app appear with an very small font in mobile browsers. This is fixed now, by written the appropriate "viewport" meta tag. This problem has been probably introduced some releases ago, and some customers report to me. Thanks to all!
- Add the icons' "sizes" argument into the Progressive Web Apps JSON manifest. Apparently this argument is requied in order to allows Chrome for Mobile to pick the right icon for our app, when add it as an Progressive Web App


App Builder 2018.75
- Fix an problem in touch screens with the Report controls, which disallow their scroll left and right (in case their columns exceeds the screen width). This problem is related with the Report swipe left and right events, wich now are not refered if we don't use it. Thanks Tin for the report


App Builder 2018.74
- Add some CSS code useful to hide the default caret used in the Dropdown button control. Some other very minor changes, fixes and enhancements


App Builder 2018.73
- Fix a problem with the Navbar control in Android, which causes that the navbar menu did not appear by pressing the Toggle button, if we did not press in some other control before. Also remove the outline of the Toggle button. Thanks Tin for the report
- Update the Font Awesome font files and CSS code to the latest version 5.0.10, which includes a total of 991 icons ready to be used in our apps


App Builder 2018.72
- Add the new Login sample, who provide one of the possible ways to implement an login procedure in our apps. The sample shown how we can login into an app's server, and, how we can then continue requesting contents as an logged user by using an token instead of the user's password. This sample includes various server PHP scripts that requires your attention and study too


App Builder 2018.71
- Made some changes and enhancements in the Welcome page in order to use a btter URL to get the latest threads and posts from the DecSoft's support forum
- Update the "RSS" app sample in order to use the new RSS feed of the DecSoft's support forum. This sample stop to work since we change the support forum system in our website


App Builder 2018.68
- Add the new Dinamic Controls samples (number 172 of App Builder). This app shown how we can insert dinamic controls inside an HTML control container, and, also how to retrieve the possible values for that controls. This is not a very common task and therefore they requires Javascript code usage. On the other hand, there is not only a way to play with HTML and CSS, so, what this app propose is only one of the possible ways to achieve something like that: create dinamic controls


App Builder 2018.65
- The App Builder IDE themes has been removed in this release. The themes are not really useful, probably are not too much used, and, are the responsible for certain anoying error in AB, very difficult to reproduce, very difficult to catch and very difficult to reproduce. The IDE themes, therefore, has been removed. Of course the App Builder IDE continue adapting their interface to the Windows theme


App Builder 2018.64
- Adapt the App Builder's welcome page to the latest changes in the DecSoft's website. We integrate the support forum in the same website, we no more uses a different software, which means our customers must login just one time in our website to give all the benefits of an DecSoft's customer, including the ability to post into the support forum. This release of App Builder adapt and enhance the welcome page to continue viewing the latest support forum posts in a quick way


App Builder 2018.63
- Fix an introduced error in the Radio controls Javascript which causes that they can't work like expected when their Checked property was "False"


App Builder 2018.61
- Add the new CacheView action. This action can be used to preload an app's view HTML template into the internal app's cache, then when that app's view is required, they no need to be loaded from the scratch. This action is not intended to be used for all app's views, but for some of the most common or "first of", so our app's behaviour can be a bit faster
- Improve the way in which the SimpleGet, SimplePost and LoadVariables actions are translated to Javascript. Catch also the possible HTTP error in the LoadVariables action


App Builder 2018.60
- Find some introduced bugs in the previous release when compile some of the available non visual controls. This release fix that introduced bugs


App Builder 2018.59
- Continue with the enhancements in the App Builder compiler in order to reduce the app.js core Javascript file. This release of App Builder changes the way in which the app's controls are declared, reducing the app.js ammount of Javascript and also obtaining a more readable Javascript app.js file. In a simple test, an real app.js of 1,39 MB (1,00 MB after minimize) has been reduced their size up to 1,06 MB (787 KB after minimize)


App Builder 2018.58
- Change log not available for this version


App Builder 2018.57
- Properly catch possible errors in the HTTP calls made by the SimpleGet and SimplePost actions. Now this errors are reported into the [App.LastError] global variable and causes than the app's Error event are fired


App Builder 2018.56
- Fix a bug in the Timer controls, who can cause unexpected behaviours if we try to start and stop it from different views. The problems can be to unable to stop Timers to double Timers intervals executions. This bug is fixed now.


App Builder 2018.55
- Avoid an error if we try to clear a variable with a null valueu using the ClearVariables action. We receive an error in that case that is fixed now


App Builder 2018.54
- The optional "PluginDocumentReadyEvent" function for App Builder Javascript plugins are not executing properly said when the document DOM is ready, but, just a few milliseconds before of that, which can cause some unexpected problems. This is fixed in this release, and, the refered function is executed when the document DOM is really ready to be used


App Builder 2018.53
- Prevent (only in certain scenario) that an shown view fit only the keyboard allowed space (in device with software keyboards) if the keyboard is present when we use the ShowView or ReplaceView actions


App Builder 2018.52
- Add up to 14 splash screen images (and refer it into the config.xml file) to Apache Cordova for iOS, and, more specifically, trying to solve certain issue found when run the apps in an iPhone X device


App Builder 2018.51
- Complete the spanish translation of the App Builder i18n file and update the french translation of the App Builder i18n with some fixes and new strings added


App Builder 2018.50
- Change log not available for this version


App Builder 2018.49
- Increase the Min SDK option for Android to 16 instead of 14. Add the new Android Oreo 8.1 API 27 into the Target SDK ComboBox of the app Cordova / Android options. Establish this option as the selected by default too
- Update the Phonegap CLI version to the latest Apache Cordova version: 8.0.0


App Builder 2018.48
- Change log not available for this version


App Builder 2018.47
- App Builder generates now the new splash screens (named "story boards") for the iOS platform, instead to the "old" splash screen images. These new images are of course also referred in the Cordova config.xml file. Made also some more other changes at the core app CSS. Both of these changes are made in order to be ready with the iPhone X and other iOS devices


App Builder 2018.46
- The "SplashMaintainAspectRatio" and the "StatusBarOverlaysWebView" Cordova options are not properly saved in the Cordova config.xml file, that is, the App Builder compiler do not take in consideration the default values for this option and do something wrong in some cases. This has been fixed now and the refered options are properly saved and used


App Builder 2018.45
- Move the Cordova Screen options from the General tab to the Configuration one. Inside the Configuration tab we place a new page control with an Screen, Statusbar and Extra XML tabs. The Statusbar tab contains three new Cordova Statusbar related options: Overlay WebView, Style and Background color


App Builder 2018.44
- Add the new Configuration tab in the app's options dialog for the Apache Cordova Android platform. Inside this new tab we add a new Splash Screen Maintain Ratio option. This new option allows to choose (for Android) between to maintain the aspect ratio of the splash screens


App Builder 2018.43

Fixed:
- The HistoryBack and the HistoryForward actions don't cause the [App.CurrentView] to be properly set, which is the expected behaviour. Only the ShowView and ReplaceView actions causes the [App.CurrentView] to be properly set. This has been fixed now and all these actions causes the [App.CurrentView] to be filled properly
- The [App.DialogView] variable are not filled in the proper way when more than one dialog view are open (one after another). This variable store an empty string when a second modal view is closed. This problem has been fixed and the [App.DialogView] stores the current modal view or an empty string (if any modal view is opened)
- If we pass some params to an app view the [App.CurrentView] variable are not filled in the right way, and include the params inside the variable, which is not what we can expected. This problem has been solved too in this DecSoft's App Builder release


App Builder 2018.41
- Upgrade the FontAwesome icons to the latest version 5. The IDE icon picker dialog as well the apps can now use up to 929 icons from the FontAwesome pack, including all the Regular, Solid and Brands icons. Note that some icons names has been renamed from the previous FontAwesome 4.x versions. Review your apps and use the IDE icon picker dialog in order to assign new icons if needed


App Builder 2018.39
- Enhance the algorithm used when generate the splash screens for all the supported Apache Cordova platforms. Thanks very, very, very much José! Without your help we probably can't get our desired result: the best as possible! Thanks again!


App Builder 2018.38
- Change the algorithm used when generate the splash screens for all the supported Apache Cordova platforms. Now the provided splash screen is resized, but, only to fit the generated splash screen. This release includes also a bug fix for the generated landscape splash screens, which certainly crop the provided splash screen in a wrong way before this fix.


App Builder 2018.37
- Introducing the app's views' Params variable. Take a look at the app's views' help topic in order to learn about this new variable that every view in the app have now.  Take also a look at the new ViewParams app sample (number 170), that shows how we can use the new views' Params variable.


App Builder 2018.36
- Some other minor changes and enhancements has been made over the App Builder compiler, some of the includes app samples, the program's help file and the spanish translation.
- Added the new CopyVar action. This action allows to copy or assign the specified variable B into the specified variable A. If the variable A did not exists, a new variable is created. If the variable B did not exists, then an "undefined" value is assigned to the variable A. This action did not take in consideration the type of the variables, then we can use this action to copy or assign variables of any type. For example, we can copy or assign an variable B of the type Array, Object, etc. into the specified variable A.
- Change the debug layout dock panels positions. Instead of place all the debug related dock panels at the button and using tabs, now the debug related dock panels are placed at the right. The enhancement is that they are not placed now in tabs, then we can see by a quick view all the debug related panels, without the need to change any tab.


App Builder 2018.35
- Update the Boostrap CSS framework used internally by App Builder, and, update all the Boostrap CSS app themes, from the Boostrap CSS beta 3 version to the first stable Boostrap CSS 4 version.


App Builder 2018.34
- Fix a bug in the Watcher control that occur if we try to set the Watcher variable in runtime. The Watcher control works now as expected, except that they no more start automatically when the app start: we must start it explicitly when we wanted.
- Minor changes in the Database sample (server side scripts) in order to offer the appropriate exception message if we can't connect with the database server. Now, in addition to the "Can't connect to the database" we have the right PHP exception message.


App Builder 2018.33
- Fix a bug related with the Apache Cordova splash screen: few releases ago App Builder uses the App icon if an splash screen is not provided, however, the appropriate addition in the Batch generated files for Apache Cordova are missing.


App Builder 2018.32
- The Welcome page has been redesigned, simplified and enhanced. Some useful links are provided, as well an HTML form to directly search in the program support forum. As before, the latest posts in the forum are listed too.


App Builder 2018.31
- Upgrade Boostrap CSS 4 to the latest version. Do the same with all the 21 themes by bootswatch. Upgrade the HTML markup for Select, Radio and Checkbox controls to fit the latest version of Boostrap CSS 4.


App Builder 2018.30
- Added a new AlertBox app sample (number 169) to show the different types that we can use in the AlertBox, MessageBox and InputBox actions. The MessageBox sample has been enhanced with more types, the possible use of HTML and others.
- Enhance the AlertBox, InputBox and MessageBox actions. Now these actions respect the user selected "type" (primary, secondary, success, danger, warning, info, light, dark) in the best wat as possible: with the correct background and foreground colors.
- Complete the spanish translation of the App Builder i18n file and update the french translation of the App Builder i18n with some fixes and new strings added. Thanks very much for your work Jean!


App Builder 2018.29
- Fix an anoying bug that causes the code editor indentation do not work as expected when we choose an App Builder action from the code editor autocomplete list.
- Enhance the ApplyModel action in order to try to avoid Angular JS "digest" problem when that action are "abused" or not used properly in the right place. Since the error that can cause this action can affect the app behaviour, this fix try to avoid these problems.


App Builder 2018.28
- Added the new FileDownload app sample (number 168). This sample show us how to download an file into the user device storage (to be available for the user) and also download an image file in the app private storage (to be used only by the app).
- Added the Apache Cordova plugin FileTransfer into the app options dialog, under the Cordova / General / Plugins options. This plugin has been added primarely to be used by the new FileDownload action, but can also be used for other purposes too.
- Added the new action FileDownload, which allow us to download files in both the app private storage and the user device storage. See the FileDownload action help reference for more information and details.
- Added an header in all the generated Batch and Shell files for Apache Cordova with the App Builder version and release number. Just for information purposes.
- From some releases ago App Builder pick the app icon to be used as the splash screen of the app, if an specific splash screen is not specified. However, App Builder do not include the appropriate Apache Cordova plugin to show the app splash screen. This is fixed now.


App Builder 2018.27
- Add the new FrontCamera, FlipButton and TorchButton variables / options to the Barcode control. The Barcode app samples has been enhanced in order to shown the usage of these new variables / options of the Barcode control. The program's help file has been also upgraded describing that variables / options too.


App Builder 2018.26
- App Builder never requires a portrait and landscape splash screens anymore, but, just one image, that, the program uses to automatically generate all the splash screen images for all the supported Apache Cordova platforms. This change is made mostly to be ready with the iOS platform, who changes their splash screens conventions. App Builder continue generating portrait and lanscape screens for the supported platforms, but, now based in the only one image that you must to provide in the app
- Fix an introduced error in the conditions related actions wich can cause certain problems if we deal with decimal numbers "as is" (not using variables) in that conditions related actions


App Builder 2018.25
- We are proud to announce that the splash screens for Apache Cordova that App Builder generates for your app, looks now better than never. App Builder uses now certain new algorithm to create the splash screen files for all the Cordova platforms, and, now also saves the aspect ratio of your provided images.
- App Builder creates now the appropriate splash screens for Apache Cordova based in the app icon, if no other images has been provided in the Cordova / Splash options.
- Translate some missing spanish strings in the DecSoft's App Builder i18n file

Directory Lister 2.30 (64-bit) 查看版本資訊

更新時間:2018-10-03
更新細節:

What's new in this version:

Directory Lister 2.30 (64-bit)
- Added support for reading meta data from html files
- Added /c command line option to override configuration
- Fix endless loop while parsing broken mkv files


Directory Lister 2.29 (64-bit)
- Added option to display free bytes and total disk size in title summary
- Fix writing multimedia length column to database output


Directory Lister 2.28 (64-bit)
- Added "Vertical resolution" option and renamed current "Resolution" into "Horizontal resolution"
- Added option to count total multimedia length for folders
- Added "Body serial" and "Lens serial" columns
- Resolutions are now extracted from PNG images
- Recognize Unicode comments in JPEG files
- Merged Multimedia -> Comments, Title with respective Document options
- Merged Multimedia -> Date taken with Document -> Doc created option. (Now renamed to "Doc created / Date taken")
- Moved several descriptive metadata to Document page and left only technical metadata on Multimedia page
- Fix newline character in text output
- Fix slash being added to CSV header when Path is checked


Directory Lister 2.27 (64-bit)
- Recognize lower case keys in FLAC metadata
- Display single slash if displayed path is empty
- Fixed not displaying time in date columns for Excel output
- Fix displaying date values in older Excel editions (2010, 2007)


Directory Lister 2.26 (64-bit)
- Fix displaying number as separate column when column names is not displayed
- Fix displaying path as separate column in Excel output


Directory Lister 2.25 (64-bit)
- Added "Lock table header" option to HTML output
- Added options to calculate SHA-3 256 and 512 bits hashes
- Added options to have separate "Path", "Extension" and "Number" columns for all outputs and removed "Path, Name and Extension together" option for CSV
- Option to split path into parts now works for all outputs
- Added option to end path with slash
- Added support for SQLite database output via ODBC
- Custom header can now be included in CSV output
- Added option to automatically save configuration on exit
- All columns are now visible in "Column order" list box for CSV and database outputs
- Updated HTML output template to HTML5 standard
- ! < and > are now not added to folder names, only to subfolders


Directory Lister 2.24 (64-bit)
- Added option to include folder id columns in database output
- Fix total number of files and total size when folder filter is applied


Directory Lister 2.23 (64-bit)
- Added support for ICO and CUR files
- Added option to use MediaInfo library to retrieve metadata
- Added support for OGG files
- More properties are retrieved from WAV files
- Retrieving Subtitle property from MP3, MP4 and ASF files into Subject column
- Fixed bits per pixel value for RGBA PNG images
- Fixed use of TAB as a separator in CSV output which resulted in merged columns


Directory Lister 2.22 (64-bit)
- Added Microsoft Excel as an output option
- Zip archives are now also shown in the left tree when 'Treat archives as directories' option is selected
- Added support for ZIP64 archives
- Fix displaying VBR for directory rows in CSV


Directory Lister 2.21 (64-bit)
- Fixed database output to SQL Server when date columns were selected.


Directory Lister 2.20 (64-bit)
- Date fields can now show dates since year 1601 and not only since 1970
- Fixed slow report generation for "Draw directories tree" option
- Fixed reading dates from xml properties (Office, ebooks, pdf) for some files