WinTools.net Professional 歷史版本列表 Page7

最新版本 Select Version

WinTools.net Professional 歷史版本列表

WinTools.net Professional 是一套提高操作系統性能的工具。 WinTools.net 乾淨地從磁盤驅動器中刪除不需要的軟件,從 Windows 註冊表中刪除不需要的軟件。 WinTools.net 使您可以控制 Windows 啟動過程和內存監控,並為您提供定制桌面和系統設置的功能,以滿足您的需求。為您的連接增加更多的速度和穩定性。確保您的隱私並保持敏感信息的安全。 Win... WinTools.net Professional 軟體介紹


WinTools.net Professional 21.5 查看版本資訊

更新時間:2021-06-29
更新細節:

What's new in this version:

- Status Bar size was changed
- Menu font was updated

WinTools.net Professional 21.3 查看版本資訊

更新時間:2021-05-19
更新細節:

What's new in this version:

- Static boxes were updated
- Tab problem was fixed

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

更新時間:2021-04-24
更新細節:

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

更新時間:2021-03-26
更新細節:

What's new in this version:

New language features:
- Types written with where syntax can now be used to define constructors, e.g. (Foo{T} where T)(x) = ....
- <-- and <--> are now available as infix operators, with the same precedence and associativity as other arrow-like operators
- Compilation and type inference can now be enabled or disabled at the module level using the experimental macro [email protected]_options
- The library name passed to ccall or @ccall can now be an expression involving global variables and function calls. The expression will be evaluated the first time the ccall executes
- ? (U+A71B), ? (U+A71C) and ? (U+A71D) can now also be used as operator suffixes. They can be tab-completed from ^uparrow, ^downarrow and ^! in the REPL
- Standalone "dotted" operators now get parsed as Expr(:., :op), which gets lowered to Base.BroadcastFunction(op). This means .op is functionally equivalent to (x...) -> (op).(x...), which can be useful for passing the broadcasted version of an operator to higher-order functions, for example map(.*, A, B) for an elementwise product of two arrays of arrays
- The syntax import A as B (plus import A: x as y, import A.x as y, and using A: x as y) can now be used to rename imported modules and identifiers
- Unsigned literals (starting with 0x) which are too big to fit in a UInt128 object are now interpreted as BigInt
- It is now possible to use ... on the left-hand side of assignments for taking any number of items from the front of an iterable collection, while also collecting the rest, for example a, b... = [1, 2, 3]. This syntax is implemented using Base.rest, which can be overloaded to customize its behavior for different collection types

Language changes:
- The postfix conjugate transpose operator ' now accepts Unicode modifiers as suffixes, so e.g. a'? is parsed as var"'?"(a), which can be defined by the user. a'? parsed as a' * ? before, so this is a minor breaking change.
- Macros that return :quote expressions (e.g. via Expr(:quote, ...)) were previously able to work without escaping (esc(...)) their output when needed. This has been corrected, and now esc must be used in these macros as it is in other macros.
- The --> operator now lowers to a :call expression, so it can be defined as a function like other operators. The dotted version .--> is now parsed as well. For backwards compatibility, --> still parses using its own expression head instead of :call.
- The a[begin, k] syntax now calls firstindex(a, 1) rather than first(axes(a, 1)), but the former now defaults to the latter for any a
- ? (U+233F) and ¦ (U+00A6) are now infix operators with times-like and plus-like precedence, respectively. Previously they were parsed as identifier characters

Compiler/Runtime improvements:
- All platforms can now use @executable_path within jl_load_dynamic_library(). This allows executable-relative paths to be embedded within executables on all platforms, not just MacOS, which the syntax is borrowed from
- Constant propagation now occurs through keyword arguments
- The precompilation cache is now created atomically. Invoking n Julia processes simultaneously may create n temporary caches

Command-line option changes:
- There is no longer a concept of "home project": starting julia --project=dir is now exactly equivalent to starting julia and then doing pkg> activate $dir and julia --project is exactly equivalent to doing that where dir = Base.current_project(). In particular, this means that if you do pkg> activate after starting julia with the --project option (or with JULIA_PROJECT set) it will take you to the default active project, which is @v1.6 unless you have modified LOAD_PATH.

Multi-threading changes:
- Locks now automatically inhibit finalizers from running, to avoid deadlock
- New function Base.Threads.foreach(f, channel::Channel) for multithreaded Channel consumption

Build system changes:
- Windows Installer now has the option to 'Add Julia to Path'. To unselect this option from the commandline simply remove the tasks you do not want to be installed: e.g. ./julia-installer.exe /TASKS="desktopicon,startmenu,addtopath", adds a desktop icon, a startmenu group icon, and adds Julia to system PATH.

New library functions:
- New function Base.kron! and corresponding overloads for various matrix types for performing Kronecker product in-place
- New function Base.readeach(io, T) for iteratively performing read(io, T)
- Iterators.map is added. It provides another syntax Iterators.map(f, iterators...) for writing (f(args...) for args in zip(iterators...)), i.e. a lazy map
- New function sincospi for simultaneously computing sinpi(x) and cospi(x) more efficiently
- New function cispi(x) for more accurately computing cis(pi * x)
- New function addenv for adding environment mappings into a Cmd object, returning the new Cmd object.
- New function insorted for determining whether an element is in a sorted collection or not
- New function Base.rest for taking the rest of a collection, starting from a specific iteration state, in a generic way

New library features:
- The redirect_* functions now accept devnull to discard all output redirected to it, and as an empty input
- The redirect_* functions can now be called on IOContext objects
- findfirst, findnext, findlast, and findall now support AbstractVector{<:Union{Int8,UInt8}} (pattern, array) arguments
- New constructor NamedTuple(iterator) that constructs a named tuple from a key-value pair iterator
- A new reinterpret(reshape, T, a::AbstractArray{S}) reinterprets a to have eltype T while potentially inserting or consuming the first dimension depending on the ratio of sizeof(T) and sizeof(S).
- New append!(vector, collections...) and prepend!(vector, collections...) methods accept multiple collections to be appended or prepended
- keys(io::IO) has been added, which returns all keys of io if io is an IOContext and an empty Base.KeySet otherwise
- count now accepts an optional init argument to control the accumulation type
- New method occursin(haystack) that returns a function that checks whether its argument occurs in haystack
- New methods ?(collection), ?(item), and ?(item) returning corresponding containment-testing functions
- The nextprod function now accepts tuples and other array types for its first argument
- The reverse(A; dims) function for multidimensional A can now reverse multiple dimensions at once by passing a tuple for dims, and defaults to reversing all dimensions; there is also a multidimensional in-place reverse!(A; dims)
- The function isapprox(x,y) now accepts the norm keyword argument also for numeric (i.e., non-array) arguments x and y
- ispow2(x) now supports non-Integer arguments x
- view, @view, and @views now work on AbstractStrings, returning a SubString when appropriate
- All AbstractUnitRange{<:Integer}s now work with SubString, view, @view and @views on strings
- sum, prod, maximum, and minimum now support init keyword argument
- unique(f, itr; seen=Set{T}()) now allows you to declare the container type used for keeping track of values returned by f on elements of itr
- first and last functions now accept an integer as second argument to get that many leading or trailing elements of any iterable
- CartesianIndices now supports step different from 1. It can also be constructed from three CartesianIndexes I, S, J using I:S:J. step for CartesianIndices now returns a CartesianIndex
- RegexMatch objects can now be probed for whether a named capture group exists within it through haskey()
- For consistency haskey(r::RegexMatch, i::Integer) has also been added and returns if the capture group for i exists

Standard library changes:
- A new standard library TOML has been added for parsing and printing TOML files
- A new standard library Downloads has been added, which replaces the old Base.download function with Downloads.download, providing cross-platform, multi-protocol, in-process download functionality implemented with libcurl
- Libdl has been moved to Base.Libc.Libdl, however it is still accessible as an stdlib
- To download artifacts lazily, LazyArtifacts now must be explicitly listed as a dependency, to avoid needing the support machinery to be available when it is not commonly needed
- It is no longer possible to create a LinRange, StepRange, or StepRangeLen with a <: Integer eltype but non-integer step
- intersect on CartesianIndices now returns CartesianIndices instead of Vector{<:CartesianIndex}
- push!(c::Channel, v) now returns channel c. Previously, it returned the pushed value v
- The composition operator ° now returns a Base.ComposedFunction instead of an anonymous function
- Logging (such as @warn) no longer catches exceptions in the logger itself
- @time now reports if the time presented included any compilation time, which is shown as a percentage
- @varinfo can now report non-exported objects within modules, look recursively into submodules, and return a sorted results table
- @testset now supports the option verbose to show the test result summary of the children even if they all pass
- In LinearIndices(::Tuple) and CartesianIndices(::Tuple), integers (as opposed to ranges of integers) in the argument tuple now consistently describe 1-based ranges, e.g, CartesianIndices((3, 1:3)) is equivalent to CartesianIndices((1:3, 1:3)). This is how tuples of integers have always been documented to work, but a bug had caused erroneous behaviors with heterogeneous tuples containing both integers and ranges

Package Manager:
- pkg> precompile is now parallelized through depth-first precompilation of dependencies. Errors will only throw for direct dependencies listed in the Project.toml.
- pkg> precompile is now automatically triggered whenever Pkg changes the active manifest. Auto-precompilation will remember if a package has errored within the given environment and will not retry until it changes. Auto-precompilation can be gracefully interrupted with a ctrl-c and disabled by setting the environment variable JULIA_PKG_PRECOMPILE_AUTO=0.
- The Pkg.BinaryPlatforms module has been moved into Base as Base.BinaryPlatforms and heavily reworked. Applications that want to be compatible with the old API should continue to import Pkg.BinaryPlatforms, however new users should use Base.BinaryPlatforms directly
- The Pkg.Artifacts module has been imported as a separate standard library. It is still available as Pkg.Artifacts, however starting from Julia v1.6+, packages may import simply Artifacts without importing all of Pkg alongside

LinearAlgebra:
- New method LinearAlgebra.issuccess(::CholeskyPivoted) for checking whether pivoted Cholesky factorization was successful
- UniformScaling can now be indexed into using ranges to return dense matrices and vectors
- New function LinearAlgebra.BLAS.get_num_threads() for getting the number of BLAS threads
- (+)(::UniformScaling) is now defined, making +I a valid unary operation
- Instances of UniformScaling are no longer isequal to matrices. Previous behaviour violated the rule that isequal(x, y) implies hash(x) == hash(y)
- Transposing *Triangular matrices now returns matrices of the opposite triangular type, consistently with adjoint!(::*Triangular) and transpose!(::*Triangular). Packages containing methods with, e.g., Adjoint{<:Any,<:LowerTriangular{<:Any,<:OwnMatrixType}} should replace that by UpperTriangular{<:Any,<:Adjoint{<:Any,<:OwnMatrixType}} in the method signature

Markdown:
Printf:
- Complete overhaul of internal code to use the ryu float printing algorithms (from Julia 1.4); leads to consistent 2-5x performance improvements.
- New Printf.tofloat function allowing custom float types to more easily integrate with Printf formatting by converting their type to Float16, Float32, Float64, or BigFloat.
- New Printf.format"..." and Printf.Format(...) functions that allow creating Printf.Format objects that can be passed to Printf.format for easier dynamic printf formatting.
- Printf.format(f::Printf.Format, args...) as a non-macro function that applies a printf format f to provided args.

Random:
REPL:
- The AbstractMenu extension interface of REPL.TerminalMenus has been extensively overhauled. The new interface does not rely on global configuration variables, is more consistent in delegating printing of the navigation/selection markers, and provides improved support for dynamic menus. These changes are compatible with the previous (deprecated) interface, so are non-breaking.

The new API offers several enhancements:
- Menus are configured in their constructors via keyword arguments
- For custom menu types, the new Config and MultiSelectConfig replace the global CONFIG Dict
- request(menu; cursor=1) allows you to control the initial cursor position in the menu (defaults to first item)
- MultiSelectMenu allows you to pass a list of initially-selected items with the selected keyword argument
- writeLine was deprecated to writeline, and writeline methods are not expected to print the cursor indicator. The old writeLine continues to work, and any of its method extensions should print the cursor indicator as before.
- printMenu has been deprecated to printmenu, and it both accepts a state input and returns a state output that controls the number of terminal lines erased when the menu is next refreshed. This plus related changes makes printmenu work properly when the number of menu items might change depending on user choices.
- numoptions, returning the number of items in the menu, has been added as an alternative to implementing options
- suppress_output (primarily a testing option) has been added as a keyword argument to request, rather than a configuration option
- Tab completion now supports runs of consecutive sub/superscript characters, e.g. ^(3) tab-completes to ?³?
- Windows REPL now supports 24-bit colors, by correctly interpreting virtual terminal escapes

SparseArrays:
- Display large sparse matrices with a Unicode "spy" plot of their nonzero patterns, and display small sparse matrices by an Matrix-like 2d layout of their contents
- New convenient spdiagm([m, n,] v::AbstractVector) methods which call spdiagm([m, n,] 0 => v), consistently with their dense diagm counterparts

Dates:
- Quarter period is defined
- canonicalize can now take Period as an input
- Zero-valued FixedPeriods and OtherPeriods now compare equal, e.g., Year(0) == Day(0). The behavior of non-zero Periods is not changed

Statistics:
Sockets:
Distributed:
- Now supports invoking Windows workers via ssh (via new keyword argument shell=:wincmd in addprocs)
- Other new keyword arguments in addprocs: ssh to specify the ssh client path, env to pass environment variables to workers, and cmdline_cookie to work around an ssh problem with Windows workers that run older (pre-ConPTY) versions of Windows, Julia or OpenSSH.

UUIDs:
- Change uuid1 and uuid4 to use Random.RandomDevice() as default random number generator
- Added parse(::Type{UUID}, ::AbstractString) method

Mmap:
- On Unix systems, the Mmap.madvise! function (along with OS-specific Mmap.MADV_* constants) has been added to give advice on handling of memory-mapped arrays

Deprecated or removed:
- The Base.download function has been deprecated (silently, by default) in favor of the new Downloads.download standard library function
- The Base.Grisu code has been officially removed (float printing was switched to the ryu algorithm code in 1.4). The code is available from JuliaAttic if needed

WinTools.net Professional 21.0 查看版本資訊

更新時間:2021-03-14
更新細節:

What's new in this version:

- loading speed was increased
- program speed was increased
- Splash Screen algorithm updated
- lng-files were updated

更新時間:2021-03-14
更新細節:

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

更新時間:2021-03-13
更新細節:

WinTools.net Professional 20.12 查看版本資訊

更新時間:2020-12-09
更新細節:

What's new in this version:

- Freezing bug of Dup Files was fixed
- Incorrect amount of enumirating files was fixed
- Interface bug was fixed
- DestroyIcon() bug was fixed

Cisco Webex Teams 40.12.0.17293 查看版本資訊

更新時間:2020-12-09
更新細節:

What's new in this version:

Cisco Webex Teams 40.12.0.17293
- Webex Teams is now the all new Webex

We resolved the following issues:
- When you dragged Webex to a second monitor and tried to search for someone, the results list didn't appear in a usable format
- Webex would freeze when you clicked on your profile picture
- Webex would crash after you'd restart your computer from Sleep mode
- We resolved the following issues when you use Webex Calling or Calling Hosted by a Service Provider:
- When you received an incoming call while connected to a device but chose to answer the call on your desktop app, you had to reconnect to the device after the call ended
- When someone shared their screen during a call, you didn't see the zoom option
- When you'd receive an incoming call from someone in your organization, their email address would show up as the caller ID instead of their name

We resolved the following issue when you use Unified CM:
- When you received an incoming call while connected to a device but chose to answer the call on your desktop app, you had to reconnect to the device after the call ended
- When you entered your credentials into the Phone Services tab of your Settings and then clicked Save, your Settings window disappeared, making it difficult to know whether your changes saved
- When someone shared their screen during a call, you didn't see the zoom option
- When you'd receive an incoming call from someone in your organization, their email address would show up as the caller ID instead of their name


Cisco Webex Teams 40.11.0.17133
We resolved the following issues:
- Sometimes you couldn't add somebody to a space

We resolved the following issue when you connected to your enterprise content management:
- When your admin chose to enable linked folders and make them the default storage location in Control Hub, linked folders were not being set as the default storage automatically. Instead, you were prompted to manually set the linked folder as default

We resolved the following issues when you use Webex Calling or Calling Hosted by a Service Provider:
- Making a long distance call from your desktop or mobile app failed
- Sometimes there is a small delay in phone service registration
- When you'd try to transfer a call and nobody picks up, you couldn't hear the caller but they could hear you
- You wouldn't hear incoming calls ring on your desktop speaker
- Call Queues would open in an external browser with an error message if Call Settings Web view was configured

We resolved the following issue when you use Unified CM:
- You'd see a Phone Services Disconnected error message when your phone service should work


Cisco Webex Teams 40.10.1.16961
- Change log not available for this version


Cisco Webex Teams 40.10.1.16875
- Change log not available for this version


Cisco Webex Teams 3.0.16605.0
We resolved the following issue when you connected to your enterprise content management:
- When files were shared from SharePoint, some files had the SharePoint label while other files showed the OneDrive label
- When you chose to share a Box file, the list only showed 3 files at a time and the remainder of the screen was blank

We resolved the following issue when you use Calling in Webex Teams (Webex Calling):
- Your status wasn't showing up correctly
- When someone called you, you'd only hear your ringtone for 30 seconds

We resolved the following issue when you use Calling in Webex Teams (Unified CM):
- When you tried to transfer a call or add someone to a call, the Call button would disappear after you typed the person's number in the keypad. If you used your mouse to select the numbers in the keypad, the Call button remained, as expected.
- When you'd try to make a call using the keypad and searched for a number or someone's name, the results hid the keypad
- You couldn't include spaces when calling someone using the keypad in your app
- There were audio issues with the G.729 codec


Cisco Webex Teams 3.0.15645.0
We resolved the following issues:
- When you shared your screen with somebody, they saw your screen in reverse

We resolved the following issue when you use Calling in Webex Teams (Webex Calling):
- When you made a call to a phone number, you couldn't merge that call with another phone call


Cisco Webex Teams 3.0.15485.0
We resolved the following issues:
- When you were the only moderator in a team, you could incorrectly remove yourself as team moderator
- Webex Teams didn't use your backup proxy
- When your company used Single Sign On (SSO) and you entered an incorrect email address, you couldn't sign in using your correct email address
- Sometimes when you changed a space image it didn't update immediately

We resolved the following issue when you use Meetings in Webex Teams:
- We resolved the issues related to joining meetings where a password or PIN is required

We resolved the following issue when you use Calling in Webex Teams (Webex Calling):
- When you merged two active calls to create a conference call on the fly, your participant list would show duplicate entries
- You didn't see someone's video when they called you
- When you made a call from the app to a phone number, the phone number didn't display in your Calling window
- Your status didn't update when you were on a call
- When you transferred a call, you couldn't disconnect from the call
- When you added more than 2 people to a call, your audio was inconsistent
- The self care portal link wouldn’t open the Webex Calling User Portal
- The Complete Transfer button would disappear when a call was transferring

We resolved the following issue when you use Calling in Webex Teams (Unified CM):
- When you recorded an incoming call, a new untitled space was created
- When you made a call to an unregistered number or video address accidentally, you'd receive a notification that the number was invalid but when you closed the calling window, the dial tone continued
- Every time you put a call on hold and then resumed that call, you'd see a new call entry in your Call history
- When you transferred a call, the person on the other end wouldn't have any audio


Cisco Webex Teams 3.0.15410.0
We made the following improvement:
- Bots are now listed in the People search results list

We resolved the following issues:
- Some German translations didn't appear correctly
- When your administrator added a custom help link, clicking on the help icon opened the link twice
- Sometimes the app quit unexpectedly when you joined large spaces and clicked on profile pictures in the People tab

We resolved the following issue when you connected to your enterprise content management:
- When you linked a folder to a space, the app quit unexpectedly when you tried to view the files in the linked folder

We resolved the following issue when you use Calling in Webex Teams (Webex Calling):
- When you were on a call, your availability didn't change to On a call

We resolved the following issues when you use Calling in Webex Teams (Unified CM):
- When you made a call, sometimes the app quit unexpectedly
- Sometimes when you recorded a meeting locally, muted audio was recorded
- When you dialed an invalid number, you heard the busy tone


Cisco Webex Teams 3.0.15211.0
- Change log not available for this version


Cisco Webex Teams 3.0.15164.0
- Change log not available for this version


Cisco Webex Teams 3.0.15131.0
We resolved these issues:
- When an admin installed the app using an MSI, Outlook integration didn't work
- When you chose to leave a space using Ctrl + Shift + E, the app quit unexpectedly
- When the app was installed using an MSI with ACCEPT_EULA=TRUE , you were still prompted to accept an end user license agreement

We resolved the following issues when you use Calling in Webex Teams (Webex Calling):
- Sometimes the incorrect caller ID was shown
- Phone services sometimes quit unexpectedly and failed to restart and reconnect
- When you used feature access codes, there was an issue with numbers containing spaces

We resolved the following issue when you use Calling in Webex Teams (Unified CM):
- You couldn't use your keyboard for keypad input during a call
- When you used buttons and cards with apps in Webex Teams, we resolved the following issues
- When you had multiple images in cards, additional space was incorrectly added to them
- When you extended the size of a card, the message area didn't expand correctly
- When you chose to center buttons on the card, they appeared left aligned
- When you have multiple buttons, the content for the first button clicked was shown over any other button's content


Cisco Webex Teams 3.0.15092.0
- We've made some updates for scaling reliability


Cisco Webex Teams 3.0.15092.0
- We've made some updates for scaling reliability


Cisco Webex Teams 3.0.15036.0
We resolved the following issue when you connected to your enterprise content management:
- When your administrator had disabled local storage and there was no linked folder in the space, you couldn't create a screen capture in that space


Cisco Webex Teams 3.0.14741.0
- Change log not available for this version


Cisco Webex Teams 3.0.13354.0
- Change log not available for this version

Zoom Meetings 5.4.6 查看版本資訊

更新時間:2020-12-09
更新細節: