TinyButStrong Error in field [var.version...]: the key 'version' does not exist or is not set in VarRef. (VarRef seems refers to $GLOBALS) This message can be cancelled using parameter 'noerr'.

TinyButStrong Error in field [var.version...]: the key 'version' does not exist or is not set in VarRef. (VarRef seems refers to $GLOBALS) This message can be cancelled using parameter 'noerr'.
 ESET NOD32 Antivirus 軟體歷史版本 Download Page10 :: 軟體兄弟

ESET NOD32 Antivirus 歷史版本列表 Page10

最新版本 [var.version]

ESET NOD32 Antivirus 歷史版本列表

屢獲殊榮的防病毒軟件讓您可以放心地在線瀏覽。 ESET NOD32 Antivirus 功能新的先進技術,以防止威脅以及瀏覽器和應用程序的利用。反釣魚模塊可以保護您免受試圖獲取您個人信息的虛假網站的侵害。新的社交媒體掃描器通過檢查惡意內容將安全擴展到您的 Facebook 和 Twitter 帳戶。包括網絡安全培訓教你一些技巧和技巧,通過一系列在線教育模塊讓你的在線體驗更加安全. 選擇版本:NOD... ESET NOD32 Antivirus 軟體介紹

ESET NOD32 Antivirus (32-bit)ESET NOD32 Antivirus (64-bit)


TaskbarX 1.5.8.0 查看版本資訊

更新時間:2020-08-24
更新細節:

What's new in this version:

- Removed "RefreshExplorer" function

Complete Internet Repair 5.2.3.4120 查看版本資訊

更新時間:2020-08-05
更新細節:

What's new in this version:

- Fixed: GUIOnEventMode and TrayOnEventMode options had unnecessary slow downs
- Fixed: Workarounds added to alleviate slow downs on Windows 10 1809 and later (OS bug/design change)
- Improved Resolute compatibility

Julia Language 1.5.0 (64-bit) 查看版本資訊

更新時間:2020-08-03
更新細節:

What's new in this version:

New language features:
- Macro calls @foo {...} can now also be written @foo{...} (without the space) (#34498)
- ? is now parsed as a binary operator with times precedence. It can be entered in the REPL with bbsemi followed by TAB (#34722)
- ± and ± are now unary operators as well, like + or -. Attention has to be paid in macros and matrix constructors, which are whitespace sensitive, because expressions like [a ±b] now get parsed as [a ±(b)] instead of [±(a, b)] (#34200)
- Passing an identifier x by itself as a keyword argument or named tuple element is equivalent to x=x, implicitly using the name of the variable as the keyword or named tuple field name. Similarly, passing an a.b expression uses b as the keyword or field name (#29333)
- Support for Unicode 13.0.0 (via utf8proc 2.5) (#35282)
- The compiler optimization level can now be set per-module using the experimental macro [email protected] n. For code that is not performance-critical, setting this to 0 or 1 can provide significant latency improvements (#34896)

Language changes:
- The interactive REPL now uses "soft scope" for top-level expressions: an assignment inside a scope block such as a for loop automatically assigns to a global variable if one has been defined already. This matches the behavior of Julia versions 0.6 and prior, as well as IJulia. Note that this only affects expressions interactively typed or pasted directly into the default REPL (#28789, #33864).
- Outside of the REPL (e.g. in a file), assigning to a variable within a top-level scope block is considered ambiguous if a global variable with the same name exists. A warning is given if that happens, to alert you that the code will work differently than in the REPL. A new command line option --warn-scope controls this warning (#33864).
- Converting arbitrary tuples to NTuple, e.g. convert(NTuple, (1, "")) now gives an error, where it used to be incorrectly allowed. This is because NTuple refers only to homogeneous tuples (this meaning has not changed) (#34272).
- The syntax (;) (which was deprecated in v1.4) now creates an empty named tuple (#30115).
- @inline macro can now be applied to short-form anonymous functions (#34953).
- In triple-quoted string literals, whitespace stripping is now done before processing escape sequences instead of after. For example, the syntax
- """
- an b""" used to yield the string " anb", since the single space before b set the indent level. Now the result is "an b", since the space before b is no longer considered to occur at the start of a line. The old behavior is considered a bug (#35001).
- <: and >: can now be broadcasted over arrays with .<: and .>: ([#35085])
- The line number of function definitions is now added by the parser as an additional LineNumberNode at the start of each function body (#35138).
- Statements of the form a' now get lowered to var"'"(a) instead of Base.adjoint(a). This allows for shadowing this function in local scopes, although this is generally discouraged. By default, Base exports var"'" as an alias of Base.adjoint, so custom types should still extend Base.adjoint (#34634).

Compiler/Runtime improvements:
- Immutable structs (including tuples) that contain references can now be allocated on the stack, and allocated inline within arrays and other structs (#33886). This significantly reduces the number of heap allocations in some workloads. Code that requires assumptions about object layout and addresses (usually for interoperability with C or other languages) might need to be updated; for example any object that needs a stable address should be a mutable struct. As a result, Array views no longer allocate ([#34126]).

Command-line option changes:
- Deprecation warnings are no longer shown by default. i.e. if the --depwarn=... flag is not passed it defaults to --depwarn=no. The warnings are printed from tests run by Pkg.test() (#35362)
- Color now defaults to on when stdout and stderr are TTYs (#34347)
- t N, --threads N starts Julia with N threads. This option takes precedence over JULIA_NUM_THREADS. The specified number of threads also propagates to worker processes spawned using the -p/--procs or --machine-file command line arguments. In order to set number of threads for worker processes spawned with addprocs use the exeflags keyword argument, e.g. addprocs(...; exeflags=`--threads 4`) (#35108)

Multi-threading changes:
- Parts of the multi-threading API are now considered stable, with caveats. This includes all documented identifiers from Base.Threads except the atomic_ operations
- @threads now allows an optional schedule argument. Use @threads :static ... to ensure that the same schedule will be used as in past versions; the default schedule is likely to change in the future

Build system changes:
- The build system now contains a pure-make caching system for expanding expensive operations at the latest possible moment, while still expanding it only once (#35626)

New library functions:
- Packages can now provide custom hints to help users resolve errors by using the experimental Base.Experimental.register_error_hint function. Packages that define custom exception types can support hints by calling the Base.Experimental.show_error_hints from their showerror method (#35094)
- The @ccall macro has been added to Base. It is a near drop-in replacement for ccall with more Julia-like syntax. It also wraps the new foreigncall API for varargs of different types, though it lacks the capability to specify an LLVM calling convention (#32748)
- New functions mergewith and mergewith! supersede merge and merge! with combine argument. They don't have the restriction for combine to be a Function and also provide one-argument method that returns a closure. The old methods of merge and merge! are still available for backward compatibility (#34296)
- The new isdisjoint function indicates whether two collections are disjoint (#34427)
- Add function ismutable and deprecate isimmutable to check whether something is mutable (#34652)
- include now accepts an optional mapexpr first argument to transform the parsed expressions before they are evaluated (#34595)
- New function bitreverse for reversing the order of bits in a fixed-width integer (#34791)
- New function bitrotate(x, k) for rotating the bits in a fixed-width integer (#33937)
- New function contains(haystack, needle) and its one argument partially applied form have been added, it acts like occursin(needle, haystack) (#35132)
- New function Base.exit_on_sigint is added to control if InterruptException is thrown by Ctrl-C (#29411)

New library features:
- Function composition now works also on one argument °(f) = f (#34251)
- One argument methods startswith(x) and endswith(x) have been added, returning partially-applied versions of the functions, similar to existing methods like isequal(x) (#33193)
- isapprox (or ˜) now has a one-argument "curried" method isapprox(x) which returns a function, like isequal (or ==) (#32305)
- @NamedTuple{key1::Type1, ...} macro for convenient NamedTuple declarations (#34548)
- Ref{NTuple{N,T}} can be passed to Ptr{T}/Ref{T} ccall signatures (#34199)
- x::Signed % Unsigned and x::Unsigned % Signed are supported for integer bitstypes
- signed(unsigned_type) is supported for integer bitstypes, unsigned(signed_type) has been supported
- accumulate, cumsum, and cumprod now support Tuple (#34654) and arbitrary iterators (#34656)
- pop!(collection, key, [default]) now has a method for Vector to remove an element at an arbitrary index (#35513)
- In splice! with no replacement, values to be removed can now be specified with an arbitrary iterable (instead of a UnitRange) (#34524)
- The @view and @views macros now support the a[begin] syntax that was introduced in Julia 1.4 (#35289)
- open for files now accepts a keyword argument lock controlling whether file operations will acquire locks for safe multi-threaded access. Setting it to false provides better performance when only one thread will access the file (#35426)
- The introspection macros (@which, @code_typed, etc.) now work with do-block syntax (#35283) and with dot syntax (#35522)
- count now accepts the dims keyword
- new in-place count! function similar to sum!
- peek is now exported and accepts a type to peek from a stream ([#28811])

Standard library changes:
- Empty ranges now compare equal, regardless of their startpoint and step (#32348)
- A 1-d Zip iterator (where Base.IteratorSize is Base.HasShape{1}()) with defined length of n has now also size of (n,) (instead of throwing an error with truncated iterators) (#29927)
- The @timed macro now returns a NamedTuple (#34149)
- New supertypes(T) function returns a tuple of all supertypes of T (#34419)
- Views of builtin ranges are now recomputed ranges (like indexing returns) instead of SubArrays (#26872)
- Sorting-related functions such as sort that take the keyword arguments lt, rev, order and by now do not discard order if by or lt are passed. In the former case, the order from order is used to compare the values of by(element). In the latter case, any order different from Forward or Reverse will raise an error about the ambiguity
- close on a file (IOStream) can now throw an exception if an error occurs when trying to flush buffered data to disk (#35303)
- The large StridedArray Union now has special printing to avoid printing out its entire contents (#31149)

LinearAlgebra:
- The BLAS submodule now supports the level-2 BLAS subroutine hpmv!
- normalize now supports multidimensional arrays
- lq factorizations can now be used to compute the minimum-norm solution to under-determined systems
- sqrt(::Hermitian) now treats slightly negative eigenvalues as zero for nearly semidefinite matrices, and accepts a new rtol keyword argument for this tolerance
- The BLAS submodule now supports the level-2 BLAS subroutine spmv!
- The BLAS submodule now supports the level-1 BLAS subroutine rot!
- New generic rotate!(x, y, c, s) and reflect!(x, y, c, s) functions

Markdown:
- In docstrings, a level-1 markdown header "Extended help" is now interpreted as a marker dividing "brief help" from "extended help". The REPL help mode only shows the brief help (the content before the "Extended help" header) by default; prepend the expression with '?' (in addition to the one that enters the help mode) to see the full docstring (#25930).

Random:
- randn!(::MersenneTwister, ::Array{Float64}) is faster, and as a result, for a given state of the RNG, the corresponding generated numbers have changed (#35078)
- rand!(::MersenneTwister, ::Array{Bool}) is faster, and as a result, for a given state of the RNG, the corresponding generated numbers have changed (#33721)
- A new faster algorithm ("nearly division less") is used for generating random numbers within a range (#29240). As a result, the streams of generated numbers are changed (for ranges, like in rand(1:9), and for collections in general, like in rand([1, 2, 3])). Also, for performance, the undocumented property that, given a seed and a, b of type Int, rand(a:b) produces the same stream on 32 and 64 bits architectures, is dropped.

REPL:
- SparseArrays
- lu! accepts UmfpackLU as an argument to make use of its symbolic factorization.
- The trim keyword argument for the functions fkeep!, tril!, triu!, droptol!,dropzeros! and dropzeros has been removed in favour of always trimming. Calling these with trim=false could result in invalid sparse arrays.

Dates:
- The eps function now accepts TimeType types (#31487)
- The zero function now accepts TimeType types (#35554)
- Statistics
- Sockets
- Joining and leaving UDP multicast groups on a UDPSocket is now supported through join_multicast_group() and leave_multicast_group() (#35521)

Distributed:
- launch_on_machine now supports and parses ipv6 square-bracket notation (#34430)
- Deprecated or removed
- External dependencies
- OpenBLAS has been updated to v0.3.9 ([#35113])
- Tooling Improvements

NOD32 AntiVirus 13.2.16.0 (64-bit) 查看版本資訊

更新時間:2020-07-31
更新細節:

What's new in this version:

NOD32 AntiVirus 13.2.16.0 (64-bit)
- Fixed: Application freezes under certain circumstances


NOD32 AntiVirus 13.2.15.0 (64-bit)
Added:
- Windows 10 H2-2020 Compatible
- WMI Scanner scan & System registry scan option added
- Network data collection
- IPM improvements: Gamer Mode support, Expired product pop-up support

Improved:
- BPP: Visual improvements
- product install and uninstall analytics

- Minor bug fixes and improvements


NOD32 AntiVirus 13.1.21.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 13.1.16.0 (64-bit)
Added:
- compatibility with Windows 10 H1-2020
- License overuse check
- Banking & Payment : Notification about access via RDP (EIS/ESSP only)

Improved:
- Screen reader support
- Banking & Payment : Scrambler improvements (EIS/ESSP only)

Changed: Uninstaller feedback screen removed


NOD32 AntiVirus 13.0.24.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 13.0.22.0 (64-bit)
- Added: Advanced Machine Learning
- Improved: Deep Behavioral Detection
- Improved: Connected Home Monitor
- Improved: Password Manager
- Improved: Disk Encryption
- Changed: supported operating systems: Windows 7 SP1 and newer
- Fixed: many other improvements and fixes


NOD32 AntiVirus 12.2.30.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 12.2.29.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 12.2.23.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 12.1.34.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 12.1.31.0 (64-bit)
- Added: Behavioral Monitor settings in “Advanced setup”
- Added: Indonesian localization
- Added: Customer Experience Improvement Program
- Added: EULA and Privacy Policy links added to “About” screen
- Added: Automatic detection of Airplane mode
- Added: Information about scanned files by Real-time file system protection
- Improved: Reduced size of installer
- Improved: Product upgrade process including over-night updates
- Improved: PUA communication and term use throughout product (“Threat” has been replaced with “Detection” when PUA is detected)
- Improved: Redesigned Webcam protection rules editor in “Advanced setup”
- Improved: User is notified if Banking and Payment Protection is running on unsecured WiFi
- Improved: Updated in-browser page layout of Banking and Payment Protection
- Improved: Minor user interface improvements on Computer scan screen
- Improved: Communication of referral across product
- Improved: Minor user interface improvements on Security Report page
- Changed: EGUI runs only when it is necessary
- Fixed: Various functional and localization bugs


NOD32 AntiVirus 12.0.31.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 12.0.27.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 11.2.63.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 11.2.49.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 11.1.54.0 (64-bit)
- Changed: Initial Scan scans all local drives
- Fixed: GUI does not start when user logs off and on
- Fixed: GUI constantly displays single file Context scans as “In-progress”
- Fixed: Real-time file system protection does not run automatically after temporary pause
- Fixed: Unable to lock decrypted virtual drive or USB
- Fixed: JAWS Log filtering window does not read properly
- Fixed: Various internal and localization bugs


NOD32 AntiVirus 11.1.42.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 11.0.159.9 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 11.0.159.5 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 11.0.159.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 11.0.154.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 11.0.149.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 11.0.144.0 (64-bit)
New and Improved Features:
- Connected Home Monitor—Renamed from "Home Network Protection" and added a new feature to scan router-connected IoT devices (Internet of Things) to test for vulnerabilities such as weak passwords, open ports and known services
- UEFI Scanner—Proactive scanning that runs in the background and only notifies you if a problem is detected
- License Manager—New feature added to my.eset.com that allows you to view and manage your licenses and connected devices
- System cleaner—New tool to help restore default settings after a malware infection


NOD32 AntiVirus 10.1.219.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 10.1.210.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 10.1.204.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 10.0.390.0 (64-bit)
- Change log not available for this version


NOD32 AntiVirus 10.0.386.0 (64-bit)
- Adds support for Chrome v53-56 (x32/x64) in Banking & Payment Protection
- Fixes rare activation bug when user upgrades from previous version and activation ends in endless loop
- Improves installation on Windows 8, 8.1
- Updates strings for Updater and Scheduler
- Fixes several minor bugs: Script-based Attack Protection

KNIME 4.2.0 (64bit) 查看版本資訊

更新時間:2020-07-15
更新細節:

What's new in this version:

New:
- Joiner (Labs) -- multiple outputs, performance, UX, ...
- Integrated Deployment Nodes -- Capture Workflow Start/End, Workflow Combiner, Workflow Writer, ...
- Various new reader and writer nodes supporting bulk reading and remote file system connection (Labs)
- Microsoft Authentication
- SAP Reader (based on Theobald Xtract Universal)
- SharePoint Online Connector
- Simple File Reader -- simplified usage, faster execution time
- TensorFlow 2 Keras Reader
- Google Cloud Storage Connector (Labs)
- String Manipulation (Multiple Columns)
- Create Temp Dir node
- Row Splitter (Labs)
- List Files/Folders (Labs) (new file handling)
- Nodes for Amazon DynamoDB
- Table Difference Finder
- Salesforce Connection (multiple nodes, e.g. Salesforce (OAuth2) Connector, SOQL Query, ...)

Enhancement:
- Widget nodes: New design in component views (old mode available via 'legacy' flag in layout editor)
- Add workflow data area to the "Relative To" category (new file handling)
- "Spotfire (Labs)" nodes deprecated -- fully replaced by partner contributed nodes
- Textprocessing Performance Improvements
- Enable file text field in new file handling dialog in remote workflow editor
- Update Java to JRE to version "8u252-b09"
- Update Jackson to 2.11.0
- LineReader - Add BOM and gz support
- File menu entry to export a workflow summary
- Add duplicate checker to RowKey column
- Preference Page for Off-Heap Column Store activation
- urlDecode String Manipulator
- Register UrlEncode String Manipulator with Column Expressions Node
- Next functionality for node search
- String Manipulation node(s): new 'urlencode' method
- Support component drag'n'drop from private spaces (hub) into AP
- Colorize the connection lines of a selected node
- Metanode fails with "Error in sub flow"
- Support exchangeability of port types
- Create FSLocation Variable Type
- Table View (output port) with new option to copy data with header (to paste into Excel)
- Make 'Number to String' node streamable
- Disable dyn. port adaptations during execution and adopt warning message
- Make R environment configurable on a node level
- Add dynamic port support for Merge Variables node
- Update KNIME Analytics Platform to use the latest Eclipse (Eclipse 2020-03, i.e. 4.15)
- Add option to export summary / provenance trace from executed workflow
- Display column headers options should be added to the labeling view
- Make Column Appender with flexible Number of Input ports
- Add 'Configuration', 'Widget' and 'Container' node types
- Provide Ungroup node to skip rows with empty collection
- Top K Selector to give all occurrences of n biggest/smallest values
- Add portobject to possible porttypes of components
- Update Sorter UI for Sorter and top-k Node
- Add Node Monitor as default view
- Add float64 (double) datatype in Keras Input Layer
- Change default search mode in Table view to be case insensitive and to include column names
- Workflow Test Framework to Test for Errors in Components
- Add option to replace included columns in Column Combiner node
- Add select best option to the Feature Selection Filter node
- Allow to open dialog of DB nodes with missing/invalid input connection
- Support reconnecting to database if connection is invalid
- Improve formatting of long flow variable names in flow variable tab
- Implement SWT.OpenUrl event to support opening KNIME URLs for all OSs
- DB Loader: Support Microsoft SQL Server bulk copy API
- Support boolean columns in DB Row Filter
- Inform user about absence of flow variables in nodes with no settings
- Hide memory policy tab in nodes with no data table output ports
- Missing Value: Support fixed boolean value
- CSV Reader: Reduce number of opened input streams
- New 'hidden'-flag for node(set) extensions
- (Big Data Extensions): Add note about cluster-level permissions to node description of Create Databricks Environment
- (Big Data Extensions): Support Timezone option in Create Spark Context nodes

Bug Fixes:
- Perl integration does not work with Perl >=5.30 any more
- Provide fallback for non-standard SQL types when reading from databases
- Flow Variables don't work on Salesforce Node
- H2O Integration: Local context issues on certain IPsec VPN setups
- Amazon S3 Connection (Labs) sometimes does not list all subdirectories of a directory
- Java Snippet does not clear warning messages on reset
- Tableau Hyper API: Node fail when data volume increases.
- Text Mining: Add invertible flag to StanfordNLP Tokenizers to ensure tokens not to be normalized
- Support non-standard JDBC Oracle types such as BINARY_FLOAT and BINARY_DOUBLE
- Parallel Chunk Start dialogue has bugs: missing flow variable and always greyed out checkbox
- Scorer node output column named specifity instead of specificity
- PortTypeRegistry fails ungracefully when encountering erroneous port types among all available port types
- REST nodes don't work with empty passwords in BASIC authentication
- Amazon Athena Connector node could not login without role switching
- Temporary table and file stores in loops not deleted on clear
- Table Creator: Copying of cells with cmd+c doesn't work on Mac
- Null pointer exception in Table Column to Variable node
- Wrong workflow svg stored when saving workflow while in annotation edit mode
- OutputStreams can remain open after workflow was closed
- Empty folders in workflow directory are missing from export
- Workflow editor locks up when saving large workflow using temporary workflow editor
- GET Request node: inconsistency with retrieved binary objects
- Math Formula: Check for column names containing dollar signs
- Fix in-workflow buffers not being cleared when workflow is closed and cleaned up
- Deadlock when using flow variable buttons with JTextFields
- Inner nested components duplicate error messages
- Word metanode still used when checking if update available
- Configuration of Call Workflow (Table Based) node fails, if wf on server contains File Download node in wrapped metanode
- Make dropping node on connections and nodes a uniform experience
- Executing follow up nodes block reset of non-related content of metanode
- Unused Metanode input causes warnings upon workflow opening
- FTP node's open() always calls changeDirectoryUp at least one time
- Make "Lift Chart (JavaScript)" node responsive
- Execute option to work on all nodes
- (Big Data Extensions): Parquet Reader and ORC Reader fail when reading directories with hidden files
- (Big Data Extensions): Create Local Big Data Environment node fails to create root scratch directory on Windows if domain server is not accessible

Complete Internet Repair 5.2.3.4118 查看版本資訊

更新時間:2020-05-28
更新細節:

What's new in this version:

- Optimized Functions
- Cleaner Code
- Resolute Compatibility

Julia Language 1.4.2 (64-bit) 查看版本資訊

更新時間:2020-05-25
更新細節:

KNIME 4.1.3 (64bit) 查看版本資訊

更新時間:2020-05-14
更新細節:

What's new in this version:

Enhancements:
- Legacy database framework supports multi-release driver jars
- (Windows) Executables, e.g. knime.exe, to be signed -- less trouble during installation and running on Windows 10
- Document Data Extractor with option to separate terms with spaces
- Tableau Hyper: Switch to the Hyper API
- (Big Data Extensions): Impala Connector (legacy) supports latest Cloudera Impala driver
- (Big Data Extensions): Hive Connector (legacy) supports latest Cloudera Hive driver

Bug Fixes:
- Table does not unregister memory alert listeners on clear
- Encrypted shared components cannot be delete anymore via explorer
- DialogComponentAuthentication does not support one character passwords
- Text Mining: Array Index out of Bounds Exception due to HTML escaping in Spanish/PTBTokenizer
- Setting possible values as flow variable does not affect the view in the labeling widget
- NPE thrown in saveInternals of Tag Cloud (non-js)
- Cell Replacer removes spec of collection columns
- Azure Blob Store Connector cannot read append blobs
- H2O locks up server on a rare occasion
- Encrypted components can be opened without password when they are shared
- S3 server-side encryption (SSE) is not being used when creating a folder in S3
- Labeling View not compatible in safari and firefox
- Power BI: Filter dataset that are not "Push" datasets in node dialog
- Power BI: Show authentication placeholder in dataset/table selection
- NPE in Webpage Retriever node if "Fail" disabled and illegal status code received
- Integer Slider Configuration description mismatch
- MDF: Reading empty channel fails
- Tableau: Hyper Server did not call back
- Labeling fails when subscribing to other views published rows that are not in the labeling widget displayed set.
- Polynomial Regression Learner Fails with boolean integer input
- H2O Integration: AssertionError in metanode execution

TaskbarX 1.5.6.0 查看版本資訊

更新時間:2020-05-04
更新細節:

What's new in this version:

- Fix Crash when restart TaskbarX
- Added "Restart TaskbarX" button
- Stability and performance tweaks
- Use stopwatch instead of sleep for animator (sleeping any milliseconds isn't always equal in time :/)
- Enable Option Strict in both TaskbarX and the configurator : Option Strict Statement
- Do not restart on (SystemEvents.UserPreferenceChanged). It triggers to much.
- Updated TaskbarX logo to fit the new colorfull icon style.

Julia Language 1.4.1 (64-bit) 查看版本資訊

更新時間:2020-04-17
更新細節: