LibreOffice (64-bit) 歷史舊版本 Page13

最新版本 LibreOffice 7.6.5 (64-bit)

LibreOffice (64-bit) 歷史版本列表

LibreOffice 64 位是一個功能強大的辦公套件; 其乾淨的界面和強大的工具讓你釋放你的創造力,提高你的生產力。 LibreOffice 嵌入了幾個應用程序,使其成為最強大的 Free& 文字處理器,Calc,電子表格應用程序,Impress,演示文稿引擎,Draw,我們的繪圖和流程圖應用程序,Base,我們的數據庫和數據庫前端,以及用於編輯數學的數學運算. 您的文檔無論目的如何:... LibreOffice (64-bit) 軟體介紹


SnapGene 6.0.5 查看版本資訊

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

What's new in this version:

Fixed:
- an issue which may result in ancestral sequences in the history no longer being resurrectable
- an issue that resulted in duplicate copies of ancestors being embedded within a file
- an hang that can occur when adding a restriction site via silent mutation
- an issue with installation on some versions of Linux

LibreOffice 7.2.7 (64-bit) 查看版本資訊

更新時間:2022-05-13
更新細節:

Opera GX 85.0.4341.79 (64-bit) 查看版本資訊

更新時間:2022-05-12
更新細節:

SnapGene Viewer 6.0.4 查看版本資訊

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

What's new in this version:

Fixed:
- an issue that can result in history not being displayed correctly and ancestral sequences no longer being resurrectable
- an issue that prevented loading documents in the Gateway cloning dialogs via drag-n-drop or browsing to a file on disk

SnapGene 6.0.4 查看版本資訊

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

What's new in this version:

Fixed:
- an issue that can result in history not being displayed correctly and ancestral sequences no longer being resurrectable
- an issue that prevented loading documents in the Gateway cloning dialogs via drag-n-drop or browsing to a file on disk

Node.js 18.1.0 (64-bit) 查看版本資訊

更新時間:2022-05-03
更新細節:

What's new in this version:

- doc: add @kuriyosh to collaborators
- (SEMVER-MINOR) lib,src: implement WebAssembly Web API
- (SEMVER-MINOR) test_runner: add initial CLI runner
- (SEMVER-MINOR) worker: add hasRef() to MessagePort

Node.js 18.0.0 (64-bit) 查看版本資訊

更新時間:2022-04-20
更新細節:

What's new in this version:

- Node.js 18 is here! Highlights include the update of the V8 JavaScript engine to 10.1, global fetch enabled by default, and a core test runner module.
- Initially, Node.js 18 will replace Node.js 17 as our ‘Current’ release line. As per the release schedule, Node.js 18 will be the ‘Current’ release for the next 6 months and then promoted to Long-term Support (LTS) in October 2022. Once promoted to long-term support the release will be designated the codename ‘Hydrogen’. Node.js 18 will be supported until April 2025.

Notable Changes:
Deprecations and Removals:
- (SEMVER-MAJOR) fs: runtime deprecate string coercion in fs.write, fs.writeFileSync
- (SEMVER-MAJOR) dns: remove dns.lookup and dnsPromises.lookup options type coercion
- (SEMVER-MAJOR) process: runtime deprecate multipleResolves
- (SEMVER-MAJOR) stream: remove thenable support
- (SEMVER-MAJOR) tls: move tls.parseCertString to end-of-life

fetch (experimental):
- An experimental fetch API is available on the global scope by default. The implementation is based upon undici, an HTTP/1.1 client written for Node.js by contributors to the project.
- Through this addition, the following globals are made available: fetch, FormData, Headers, Request, Response
- Disable this API with the --no-experimental-fetch command-line flag

HTTP Timeouts:
- server.headersTimeout which limits the amount of time the parser will wait to receive the complete HTTP headers is now set to 60000 (60 seconds) by default.
- server.requestTimeout which sets the timeout value in milliseconds for receiving the entire request from the client is now set to 300000 (5 minutes) by default.
- If these timeouts expire, the server responds with status 408 without forwarding the request to the request listener and then closes the connection.
- Both timeouts must be set to a non-zero value to protect against potential Denial-of-Service attacks in case the server is deployed without a reverse proxy in front.

Test Runner module (experimental):
The node:test module facilitates the creation of JavaScript tests that report results in TAP format. To access it:
- import test from 'node:test';
- This module is only available under the node: scheme

Toolchain and Compiler Upgrades:
- Prebuilt binaries for Linux are now built on Red Hat Enterprise Linux (RHEL) 8 and are compatible with Linux distributions based on glibc 2.28 or later, for example, Debian 10, RHEL 8, Ubuntu 20.04.
- Prebuilt binaries for macOS now require macOS 10.15 or later
- For AIX the minimum supported architecture has been raised from Power 7 to Power 8
- Prebuilt binaries for 32-bit Windows will initially not be available due to issues building the V8 dependency in Node.js. We hope to restore 32-bit Windows binaries for Node.js 18 with a future V8 update.
- Node.js does not support running on operating systems that are no longer supported by their vendor. For operating systems where their vendor has planned to end support earlier than April 2025, such as Windows 8.1 (January 2023) and Windows Server 2012 R2 (October 2023), support for Node.js 18 will end at the earlier date.
- Full details about the supported toolchains and compilers are documented in the Node.js BUILDING.md file

V8 10.1:
The V8 engine is updated to version 10.1, which is part of Chromium 101. Compared to the version included in Node.js 17.9.0, the following new features are included:
- The findLast and findLastIndex array methods
- Improvements to the Intl.Locale API
- The Intl.supportedValuesOf function
- Improved performance of class fields and private class methods (the initialization of them is now as fast as ordinary property stores)
- The data format returned by the serialization API (v8.serialize(value)) has changed, and cannot be deserialized by earlier versions of Node.js. On the other hand, it is still possible to deserialize the previous format, as the API is backwards-compatible.

Web Streams API (experimental):
- Node.js now exposes the experimental implementation of the Web Streams API on the global scope. This means the following APIs are now globally available:
- ReadableStream, ReadableStreamDefaultReader, ReadableStreamBYOBReader, ReadableStreamBYOBRequest, ReadableByteStreamController, ReadableStreamDefaultController, TransformStream, TransformStreamDefaultController, WritableStream, WritableStreamDefaultWriter, WritableStreamDefaultController, ByteLengthQueuingStrategy, CountQueuingStrategy, TextEncoderStream, TextDecoderStream, CompressionStream, DecompressionStream.

Other Notable Changes:
- (SEMVER-MAJOR) buffer: expose Blob as a global
- (SEMVER-MAJOR) child_process: improve argument validation
- doc: add RafaelGSS to collaborators
- (SEMVER-MAJOR) http: make TCP noDelay enabled by default
- (SEMVER-MAJOR) net: make server.address() return an integer for family
- (SEMVER-MAJOR) worker: expose BroadcastChannel as a global
- (SEMVER-MAJOR) worker: graduate BroadcastChannel to supported

SnapGene Viewer 6.0.3 查看版本資訊

更新時間:2022-04-19
更新細節:

What's new in this version:

Enhancements:
- Impoved formatting when using the Copy Selected Primers and Export Primer Data commands
- Improved responsiveness of cloning dialogs when switching tabs and flipping fragments
- Improved responsiveness when making selections in multiple sequence alignments
- Improved responsiveness when performing or opening a file with an alignment to a reference sequence

Fixed:
- Fixed an issue with renaming folders in collections
- Avoid switching from Map to Sequence view after importing sequences to align to the reference
- Fixed an regression where features in replaced regions were erronously retained during restriction cloning if the insert was the same size
- Fixed an issue with decoding features from GenBank files generated by CHOPCHOP
- Fixed aligning sequences in a multi-sequence FASTA file with a reference
- Fixed an issue with opening supported file types in Miscellaneous Files when viewing a collection
- Fixed a default file name and extension when saving a sequence trace
- Addressed an issue where Sharepoint index conflict files resulted in new file notifications when working with collections
- Improved stability when detecting common features
- Fixed an issue where the selection bar was blank after making a feature in a multiple sequence alignment
- Fixed a crash when attempting to create a custom feature type in SnapGene Viewer
- Fixed an issue that prevented loading non-installed custom feature types that are embedded within a file
- Improved stability with multiple sequence alignments
- Fixed a memory leak when creating, editing, or duplicating features
- Corrected an issue with history colors after performing PCR using primers that extend beyond the end of a linear template
- Fixed an issue with making RNA sequences from selections in large genomic sequences
- Fixed an issue where unnecessary menus were sometimes shown on the launch dialog
- Fixed various issues where characters right of a period in a agarose gel sequence name was not shown in the fragment list or source control
- Removed unecessary message indicating upgrading to SnapGene is required to perform an alignemnt if one or more aligned sequences and an associated alignment to the reference sequence is already computed
- Improved overall stability
- Addressed various memory leaks

SnapGene 6.0.3 查看版本資訊

更新時間:2022-04-19
更新細節:

What's new in this version:

Enhancements:
- Impoved formatting when using the Copy Selected Primers and Export Primer Data commands
- Improved responsiveness of cloning dialogs when switching tabs and flipping fragments
- Improved responsiveness when making selections in multiple sequence alignments
- Improved responsiveness when performing or opening a file with an alignment to a reference sequence

Fixed:
- Fixed an issue with renaming folders in collections
- Avoid switching from Map to Sequence view after importing sequences to align to the reference
- Fixed an regression where features in replaced regions were erronously retained during restriction cloning if the insert was the same size
- Fixed an issue with decoding features from GenBank files generated by CHOPCHOP
- Fixed aligning sequences in a multi-sequence FASTA file with a reference
- Fixed an issue with opening supported file types in Miscellaneous Files when viewing a collection
- Fixed a default file name and extension when saving a sequence trace
- Addressed an issue where Sharepoint index conflict files resulted in new file notifications when working with collections
- Improved stability when detecting common features
- Fixed an issue where the selection bar was blank after making a feature in a multiple sequence alignment
- Fixed a crash when attempting to create a custom feature type in SnapGene Viewer
- Fixed an issue that prevented loading non-installed custom feature types that are embedded within a file
- Improved stability with multiple sequence alignments
- Fixed a memory leak when creating, editing, or duplicating features
- Corrected an issue with history colors after performing PCR using primers that extend beyond the end of a linear template
- Fixed an issue with making RNA sequences from selections in large genomic sequences
- Fixed an issue where unnecessary menus were sometimes shown on the launch dialog
- Fixed various issues where characters right of a period in a agarose gel sequence name was not shown in the fragment list or source control
- Removed unecessary message indicating upgrading to SnapGene is required to perform an alignemnt if one or more aligned sequences and an associated alignment to the reference sequence is already computed
- Improved overall stability
- Addressed various memory leaks

Thunderbird 91.8.1 (64-bit) 查看版本資訊

更新時間:2022-04-19
更新細節:

What's new in this version:

Fixed:
- CLIENTID extension to SMTP was not supported by smtp-js
- Additional SMTP errors now propagated to user
- OpenPGP was not able to use some previously supported key types
- OpenPGP Key Manager did not always display correct information after importing additional IDs
- Duplicate new mail notifications could be displayed when server-side filters were in use
- Cancelling an SMTP password entry resulted in multiple failure dialogs being displayed