Ashampoo Snap 歷史版本列表 Page17

最新版本 Ashampoo Snap 15.0.5

Ashampoo Snap 歷史版本列表

Ashampoo Snap 是截圖和視頻捕捉的高端軟件解決方案!圖像和視頻比單純的文本更快速,更親切和更簡潔地傳達信息。使用 Ashampoo Snap 創建圖像和視頻,精確地展示你的意思告訴! Ashampoo Snap 使用戶能夠捕捉像素的完美準確性,編輯和共享屏幕內容作為單個圖像或視頻。該應用程序具有強大的圖像編輯功能。下載 Ashampoo Snap 離線安裝程序設置!Ashampoo S... Ashampoo Snap 軟體介紹


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

更新時間:2019-07-24
更新細節:

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

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

What's new in this version:

Notable changes:
- build: Experimental support for building Node.js on MIPS architecture is back
- child_process: The promisified versions of child_process.exec and child_process.execFile now both return a Promise which has the child instance attached to their child property
- deps: Updated libuv to 1.30.1, Support for the Haiku platform has been added, The maximum UV_THREADPOOL_SIZE has been increased from 128 to 1024, uv_fs_copyfile() now works properly when the source and destination files are the same
- process: A new method, process.resourceUsage() was added. It returns resource usage for the current process, such as CPU time
- src: Fixed an issue related to stdio that could lead to a crash of the process in some circumstances
- stream: Added a writableFinished property to writable streams. It indicates that all the data has been flushed to the underlying system #28007.
- worker: Fixed an issue that prevented worker threads to listen for data on stdin
- meta: Added Jiawen Geng to collaborators

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

更新時間:2019-06-28
更新細節:

What's new in this version:

Build:
- The startup time is reduced by enabling V8 snapshots by default

Deps:
- Updated V8 to 7.5.288.22
- The numeric separator feature is now enabled by default
- Updated OpenSSL to 1.1.1c

Inspector:
- The --inspect-publish-uid flag was added to specify ways of the inspector web socket url exposure

N-api:
- Accessors on napi_define_* are now ECMAScript-compliant

Report:
- The cpu info got added to the report output

Src:
- Restore the original state of the stdio file descriptors on exit to prevent leaving stdio in raw or non-blocking mode

tools,gyp:
- Introduce MSVS 2019

Util:
Inspect:
- Array grouping became more compact and uses more columns than before
- Long strings will not be split at 80 characters anymore. Instead they will be split on new lines

Worker:
- worker.terminate() now returns a promise and using the callback is deprecated

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

更新時間:2019-06-05
更新細節:

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

更新時間:2019-05-23
更新細節:

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

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

What's new in this version:

Intl:
- Update ICU to 64.2. This adds support for Japanese Era (Reiwa) (Ujjwal Sharma)
- Fixes a bug in ICU that affected Node.js 12.0.0 in the case where new Date().toLocaleString() was called with a non-default locale (Steven R. Loomis)

C++ API:
- Added an overload EmitAsyncDestroy that can be used during garbage collection

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

更新時間:2019-05-09
更新細節:

What's new in this version:

Changes:

Deps:
- Updated llhttp to 1.1.3. This fixes a bug that made Node.js' HTTP parser refuse any request URL that contained the "|" (vertical bar) character (Fedor Indutny) #27595.

Tls:
- Added an enableTrace() method to TLSSocket and an enableTrace option to tls.createServer(). When enabled, TSL packet trace information is written to stderr. This can be used to debug TLS connection problems (cjihrig)

Cli:
- Added a --trace-tls command-line flag that enables tracing of TLS connections without the need to modify existing application code (cjihrig)
- Added a --cpu-prof-interval command-line flag. It can be used to specify the sampling interval for the CPU profiles generated by --cpu-prof (Joyee Cheung)

Module:
- Added the createRequire() method. It allows to create a require function from a file URL object, a file URL string or an absolute path string. The existing createRequireFromPath() method is now deprecated (Myles Borins)
- Throw on require('./path.mjs'). This is technically a breaking change that should have landed with Node.js 12.0.0. It is necessary to have this to keep the possibility for a future minor version to load ES Modules with the require function (Myles Borins)

Repl:
- The REPL now supports multi-line statements using BigInt literals as well as public and private class fields and methods (Ruben Bridgewater)
- The REPL now supports tab autocompletion of file paths with fs methods (Anto Aravinth)

Meta:
- Added Christian Clauss to collaborators

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

更新時間:2019-04-30
更新細節:

What's new in this version:

Notable changes:
intl:
- Update ICU to 64.2. This adds support for Japanese Era
- Fixes a bug in ICU that affected Node.js 12.0.0 in the case where new Date().toLocaleString() was called with a non-default locale

C++ API:
- Added an overload EmitAsyncDestroy that can be used during garbage collection

Commits:
- benchmark: fix http bench-parser.js
- bootstrap: delay the instantiation of maps in per-context scripts
- build: allow icu download to use other hashes besides md5
- build: disable custom v8 snapshot by default
- crypto: update root certificates
- deps: backport ICU-20575 to fix err/crasher
- deps: backport ICU-20558 to fix Intl crasher
- deps: update ICU to 64.2
- dgram: change 'this' to 'self' for 'isConnected'
- doc: add Node 12 to the first list of versions
- doc: update comment in bootstrap for primordials
- doc: simplify GOVERNANCE.md text
- doc: fix pull request number
- doc: clarify behaviour of writeFile(fd)
- doc: fix v12.0.0 changelog id
- doc: simplify Collaborator pre-nomination text
- lib: throw a special error in internal/assert
- module: initialize module_wrap.callbackMap during pre-execution
- (SEMVER-MINOR) n-api: do not require JS Context for napi_async_destroy()
- process: reduce the number of internal frames in async stack trace
- report: print common items first for readability
- src: refactor deprecated UVException in node_file.cc
- src: move OnMessage to node_errors.cc
- src: use predefined AliasedBuffer types in the code base
- src: apply clang-tidy modernize-deprecated-headers found by Jenkins CI
- (SEMVER-MINOR) src: do not require JS Context for ~AsyncResoure()
- (SEMVER-MINOR) src: add Environment overload of EmitAsyncDestroy
- src: apply clang-tidy rule modernize-use-equals-default
- src: use std::vector<size_t> instead of IndexArray
- src: enable context snapshot after running per-context scripts
- src: enable snapshot with per-isolate data
- src: implement IsolateData serialization and deserialization
- src: allow creating NodeMainInstance that does not own the isolate
- test: refactor net-connect-handle-econnrefused
- test: move test-net-connect-handle-econnrefused
- test: rework to remove flakiness, and be parallel
- test: fix ineffective error tests
- test: make test-worker-esm-missing-main more robust
- test: increase coverage in lib/internal/dns/promises.js
- tls: include invalid method name in thrown error
- tools: update certdata.txt
- tools: update LICENSE and tools/icu/current_ver.dep
- tools: fix use-after-free mkcodecache warning
- tools: update tools/license-builder.sh
- tools: implement node_mksnapshot
- util: add prototype support for boxed primitives
- util: rename setIteratorBraces to getIteratorBraces
- util: improve Symbol.toStringTag handling

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

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

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

更新時間:2019-04-11
更新細節:

What's new in this version:

Notable changes:
- child_process: doc deprecate ChildProcess._channel
- deps: update nghttp2 to 1.37.0

dns:
- make dns.promises enumerable
- remove dns.promises experimental warning
- fs: remove experimental warning for fs.promises
- stream: make Symbol.asyncIterator support stable
- worker: use copy of process.env