Boxcryptor 歷史版本列表 Page8

最新版本 Boxcryptor 2.55.2774

Boxcryptor 歷史版本列表

Boxcryptor 在 Dropbox,Google Drive,OneDrive 和許多其他雲存儲中加密您的敏感文件和文件夾。它將最方便用戶的雲存儲服務的優勢與全球最高的安全標準相結合。在您的設備上正確加密數據,然後再將其同步到您選擇的雲提供商.Boxcryptor 可以免費使用兩台設備上的一個雲存儲提供商。作為單個用戶,您可以使用我們的 Boxcryptor Unlimited 許可證來增加... Boxcryptor 軟體介紹


Electron 8.2.0 (64-bit) 查看版本資訊

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

What's new in this version:

Features:
- Added new useSessionCookies flag to net requests to allow them to use the session cookie store
- Fixed issue where SameSite cookies would not be attached to outgoing requests from the net module
- Added disableDialogs option to WebPreferences

Fixes:
- Fixed a crash that could occur when sending arrays over IPC
- Fixed a potential crash on invalid zoomFactor values when setting the zoom factor of a webpage
- Fixed issue where mutating the global Object prototype could cause internal Electron logic to throw errors
- Returns a more graceful error when adding duplicate items to a single TouchBar instance

Other Changes:
- Updated Chromium to 80.0.3987.158

Electron 7.2.1 (64-bit) 查看版本資訊

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

What's new in this version:

Fixes:
- Reverted "fix: better window hierarchy checks"

Electron 7.2.0 (64-bit) 查看版本資訊

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

What's new in this version:

Features:
- Added new useSessionCookies flag to net requests to allow them to use the session cookie store
- Fixed issue where SameSite cookies would not be attached to outgoing requests from the net module
- Exposing methods required by capturing a hidden webContents

Fixes:
- Better window hierarchy checks
- Fixed ARIA role="tree" for macOS VoiceOver
- Fixed a crash that could occur when sending arrays over IPC
- Fixed a potential crash on devices which had not connected any printers to their network
- Fixed an occasional segfault with modal windows being closed or destroyed
- Fixed issue where mutating the global Object prototype could cause internal Electron logic to throw errors
- Fixed some properties not working in webview tags

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

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

What's new in this version:

New language features:
- Structs with all isbits and isbitsunion fields are now stored inline in arrays
- import now allows quoted symbols, e.g. import Base.:+
- a[begin] can now be used to address the first element of an integer-indexed collection a. The index is computed by firstindex(a)

Language changes:
- The syntax (;), which used to parse as an empty block expression, is deprecated. In the future it will indicate an empty named tuple

Multi-threading changes:
- Values can now be interpolated into @async and @spawn via $, which copies the value directly into the constructed underlying closure

Build system changes:
- Windows build installer has switched to Inno Setup. Installer command line parameters have thus changed. For example, to extract the installer to a specific directory, the command line parameter is now /DIR=x:dirname. Use julia-installer.exe /? to list all new command line parameters.

New library functions:
- The new only(x) function returns the one-and-only element of a collection x, and throws an ArgumentError if x contains zero or multiple elements
- takewhile and dropwhile have been added to the Iterators submodule
- accumulate has been added to the Iterators submodule
- There is a now an evalpoly function meant to take the role of the @evalpoly macro. The function is just as efficient as the macro while giving added flexibility, so it should be preferred over @evalpoly. evalpoly takes a list of coefficients as a tuple, so where one might write @evalpoly(x, p1, p2, p3) one would instead write evalpoly(x, (p1, p2, p3)).

New library features:
- Function composition now supports multiple functions: ∘(f, g, h) = f ∘ g ∘ h and splatting ∘(fs...) for composing an iterable collection of functions
- Functions gcd, lcm, and gcdx now support Rational arguments
- The splitpath function now accepts any AbstractString whereas previously it only accepted paths of type String
- filter can now act on a Tuple
- The tempname function now takes an optional parent::AbstractString argument to give it a directory in which to attempt to produce a temporary path name
- The tempname function now takes a cleanup::Bool keyword argument defaulting to true, which causes the process to try to ensure that any file or directory at the path returned by tempname is deleted upon process exit
- The readdir function now takes a join::Bool keyword argument defaulting to false, which when set causes readdir to join its directory argument with each listed name
- div now accepts a rounding mode as the third argument, consistent with the corresponding argument to rem. Support for rounding division, by passing one of the RoundNearest modes to this function, was added. For future compatibility, library authors should now extend this function, rather than extending the two-argument fld/cld/div directly
- methods now accepts a module (or a list thereof) to filter methods defined in it

Standard library changes:
- Calling show or repr on an undef/UndefInitializer() array initializer now shows valid Julia code
- Calling show or repr on a 0-dimensional AbstractArray now shows valid code for creating an equivalent 0-dimensional array, instead of only showing the contained value
- readdir output is now guaranteed to be sorted. The sort keyword allows opting out of sorting to get names in OS-native order
- The methods of mktemp and mktempdir that take a function to pass temporary paths to no longer throw errors if the path is already deleted when the function returns
- Verbose display of Char (text/plain output) now shows the codepoint value in standard-conforming "U+XXXX" format
- Iterators.partition now uses views (or smartly re-computed ranges) for partitions of all AbstractArrays
- Sets are now displayed less compactly in the REPL, as a column of elements, like vectors and dictionaries
- delete! on WeakKeyDicts now returns the WeakKeyDict itself instead of the underlying Dict used for implementation

LinearAlgebra:
- qr and qr! functions support blocksize keyword argument
- dot now admits a 3-argument method dot(x, A, y) to compute generalized dot products dot(x, A*y), but without computing and storing the intermediate result A*y
- ldlt and non-pivoted lu now throw a new ZeroPivotException type
- cond(A, p) with p=1 or p=Inf now computes the exact condition number instead of an estimate
- UniformScaling objects may now be exponentiated such that (a*I)^x = a^x * I.

Markdown:
- Tables now have the align attribute set when shown as HTML

Random:
- AbstractRNGs now behave like scalars when used in broadcasting
- The performance of rand(::Tuple) is improved in some cases. As a consequence, the stream of generated values produced for a given seed has changed

REPL:
- The attributes of the implicit IOContext used by the REPL to display objects can be modified by the user (experimental feature)

SparseArrays:
- The return value of zero(x::AbstractSparseArray) has no stored zeros anymore. Previously, it would have stored zeros wherever x had them. This makes the operation constant time instead of O(<number of stored values>).
- Products involving sparse arrays now allow more general sparse eltypes, such as StaticArrays

Electron 8.1.1 (64-bit) 查看版本資訊

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

What's new in this version:

Fixes:
- DeviceId from navigator.mediaDevices.enumerateDevices is now consistent across reloads

Other Changes:
- Updated Chromium to 80.0.3987.141

Electron 8.1.0 (64-bit) 查看版本資訊

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

What's new in this version:

Features:
- Added ability to set and get title bar traffic light position on the fly (macOS)
- Added new spellcheck-dictionary-* events on the `session module to help track and debug dictionary initialization
- Allow some NODE_OPTIONs in packaged apps

Fixes:
Fixed process.getProcessMemoryInfo() return wrong private value on macOS
Fixed a potential crash on devices which had not connected any printers to their network
Fixed an occasional segfault with modal windows being closed or destroyed
Fixed issue where repositioned traffic lights would be in the wrong position after the user switches OS theme
Fixed some properties not working in webview tags
MacOS VoiceOver is now able to find its way back into web contents after it navigated "out" of an application
Removed assurance of object identity equality from the contextBridge as it is incapable of handling mutations
Updating the document title while in fullscreen with custom traffic light positions no longer makes the traffic lights invisible

Changes:
- Updated Chromium to 80.0.3987.137. #22548

SeaMonkey 2.53.1 (64-bit) 查看版本資訊

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

What's new in this version:

Changes:
- The Bookmarks Manager has switched its name to Library, and now also includes the History list. When invoking History, the Library will be shown with the History list selected. The extensive modifications were needed because of Mozilla Gecko platform API changes.
- Download Manager has been migrated to a new API. Although it looks pretty much the same as before, the search option is missing and some other minor details work differently. The previous downloads history is removed during the upgrade.
- Added Layout panel to CSS Grid tools
- TLS 1.3 is the default version now
- SeaMonkey 2.53.1 uses the same backend as Firefox and contains the relevant Firefox 60.3 security fixes
- SeaMonkey 2.53.1 shares most parts of the mail and news code with Thunderbird. Please read the Thunderbird 60.0 release notes for specific changes and security fixes in this release.
- Additional important security fixes up to Current Firefox 72 and a few enhancements have been backported. We will continue to enhance SeaMonkey security in subsequent 2.53 beta and release versions as fast as we are able to.
- Among the general platform and mail fixes this release contains backported fixes from Thunderbird for the EFAIL security vulnerability.
- SeaMonkey now uses gtk3 on Linux. If you experience a problem because of this please file a bug and link it to Switch Linux builds to GTK3 with SeaMonkey 2.49. Please try another OS theme first. Some of them are buggy and cause problems with SeaMonkey, Thunderbird and Firefox.

Electron 8.0.3 (64-bit) 查看版本資訊

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

What's new in this version:

Fixes:
- Fixed ARIA role="tree" for macOS VoiceOver
- Fixed issue where dictionary files for the spellchecker would be downloaded to the app install directory instead of the user data directory

Other Changes:
- Updated Chromium to 80.0.3987.134
- Updated g_swizzle_imk_input_session for new SDK

Microsoft OneNote 2016 Build 12527.20242 (64-bit) 查看版本資訊

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

What's new in this version:

Resolved issues:
Outlook:
- Addresses an issue that caused third party applications to be unable to send email

Electron 7.1.14 (64-bit) 查看版本資訊

更新時間:2020-02-29
更新細節:

What's new in this version:

- Backported V8 patch to fix bug in type inference

Fixed:
- "will-navigate" event not being emitted for sandboxed contents
- Electron apps getting rejected to Mac App Store
- an OOB access in ReadableStream::Close (https://crbug.com/1045931)
- an integer overflow crash in ICU (https://crbug.com/1044570)
- an issue with safeDialog preferences not being passed properly
- crash with seccomp-bpf sandbox on linux and glibc 2.31