Vivaldi (64-bit) 歷史舊版本 Page63

最新版本 Vivaldi 6.5.3206.63 (64-bit)

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

從 Opera 的創造者,一個快速的 Vivaldi 瀏覽器 64 位,但也是一個功能豐富的瀏覽器,高度靈活,並把用戶放在第一位。一個為你製作的瀏覽器。最後,你可以沖浪你的方式.Vivaldi 網頁瀏覽器適應你,而不是其他的方式。你喜歡瀏覽器標籤放在窗口的底部還是側面?也許你更喜歡不同的地址欄位置?使用 Vivaldi 瀏覽器,您可以自定義所有更多功能,例如鍵盤快捷鍵,鼠標手勢等。您是鍵盤用戶嗎?... Vivaldi (64-bit) 軟體介紹


Megacubo 15.4.1 (64-bit) 查看版本資訊

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

What's new in this version:

- Support for TS transmissions has been rewritten and is now much more efficient
- The LIVE and VIDEOS options were merged, as identifying the type by URL was not infallible and testing each stream would be impracticable
- Added "When transmission fails..." option under "Options> Tuning" to allow selecting the default behavior when a transmission fails

ZennoPoster 5.35.1.0 查看版本資訊

更新時間:2019-10-02
更新細節:

rekordbox 5.7.0 查看版本資訊

更新時間:2019-10-01
更新細節:

What's new in this version:

New:
- Compatible model added: DDJ-XP2
- TRANSPORT category and ASSIGN feature in PAD EDITOR
- Autocomplete feature for Genre/Artist/Album when editing track information in the track list

Improved:
- Video brightness changes along with the channel fader] is now an option and can be disabled in Preferences
- Autocomplete feature for editing genre in the track information window
- Added a function to remove TEXT and IMAGE lists in the video panel

Fixed:
- Drag and drop became impossible while displaying the video window on a Mac
- Improved stability and fixed other minor issues

ZennoPoster 5.35.0.0 查看版本資訊

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

RazorSQL 8.4.7 (64-bit) 查看版本資訊

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

Rust 1.38.0 查看版本資訊

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

What's new in this version:

Rust 1.38.0
Language:
- The #[global_allocator] attribute can now be used in submodules
- The #[deprecated] attribute can now be used on macros

Compiler:
- Added pipelined compilation support to rustc. This will improve compilation times in some cases. For further information please refer to the "Evaluating pipelined rustc compilation" thread
- Added tier 3 support for the aarch64-uwp-windows-msvc, i686-uwp-windows-gnu, i686-uwp-windows-msvc, x86_64-uwp-windows-gnu, and x86_64-uwp-windows-msvc targets
- Added tier 3 support for the armv7-unknown-linux-gnueabi and armv7-unknown-linux-musleabi targets
- Added tier 3 support for the hexagon-unknown-linux-musl target
- Added tier 3 support for the riscv32i-unknown-none-elf target

Libraries:
- ascii::EscapeDefault now implements Clone and Display
- Derive macros for prelude traits (e.g. Clone, Debug, Hash) are now available at the same path as the trait. (e.g. The Clone derive macro is available at std::clone::Clone). This also makes all built-in macros available in std/core root. e.g. std::include_bytes!
- str::Chars now implements Debug
- slice::{concat, connect, join} now accepts &[T] in addition to &T
- *const T and *mut T now implement marker::Unpin
- Arc<[T]> and Rc<[T]> now implement FromIterator<T>.
- Added euclidean remainder and division operations (div_euclid, rem_euclid) to all numeric primitives. Additionally checked, overflowing, and wrapping versions are available for all integer primitives
- thread::AccessError now implements Clone, Copy, Eq, Error, and PartialEq
- iter::{StepBy, Peekable, Take} now implement DoubleEndedIterator

Stabilized APIs:
- <*const T>::cast
- <*mut T>::cast
- Duration::as_secs_f32
- Duration::as_secs_f64
- Duration::div_duration_f32
- Duration::div_duration_f64
- Duration::div_f32
- Duration::div_f64
- Duration::from_secs_f32
- Duration::from_secs_f64
- Duration::mul_f32
- Duration::mul_f64
- any::type_name

Cargo:
- Added pipelined compilation support to cargo
- You can now pass the --features option multiple times to enable multiple features

Misc:
- rustc will now warn about some incorrect uses of mem::{uninitialized, zeroed} that are known to cause undefined behaviour

Compatibility Notes:
- The x86_64-unknown-uefi platform can not be built with rustc 1.38.0
- The armv7-unknown-linux-gnueabihf platform is known to have issues with certain crates such as libc


Rust 1.37.0
Language:
- #[must_use] will now warn if the type is contained in a tuple, Box, or an array and unused.
- You can now use the cfg and cfg_attr attributes on generic parameters.
- You can now use enum variants through type alias. e.g. You can write the following:
- type MyOption = Option;
- fn increment_or_zero(x: MyOption) -> u8 {
- match x {
- MyOption::Some(y) => y + 1,
- MyOption::None => 0,
- You can now use _ as an identifier for consts. e.g. You can write const _: u32 = 5;.
- You can now use #[repr(align(X)] on enums.
- The ? Kleene macro operator is now available in the 2015 edition.

Compiler:
You can now enable Profile-Guided Optimization with the -C profile-generate and -C profile-use flags. For more information on how to use profile - guided optimization, please refer to the rustc book.
- The rust-lldb wrapper script should now work again.

Libraries:
- mem::MaybeUninit is now ABI-compatible with T.
- Stabilized APIs:
- BufReader::buffer
- BufWriter::buffer
- Cell::from_mut
- Cell<[T]>::as_slice_of_cells
- DoubleEndedIterator::nth_back
- Option::xor
- Wrapping::reverse_bits
- i128::reverse_bits
- i16::reverse_bits
- i32::reverse_bits
- i64::reverse_bits
- i8::reverse_bits
- isize::reverse_bits
- slice::copy_within
- u128::reverse_bits
- u16::reverse_bits
- u32::reverse_bits
- u64::reverse_bits
- u8::reverse_bits
- usize::reverse_bits

Cargo:
- Cargo.lock files are now included by default when publishing executable crates with executables.
- You can now specify default-run="foo" in [package] to specify the default executable to use for cargo run.

Vivaldi 2.8.1664.40 (64-bit) 查看版本資訊

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

ASUS GPU Tweak II 2.0.7.2 查看版本資訊

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

RazorSQL 8.4.6 (64-bit) 查看版本資訊

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

What's new in this version:

Enhancements:
- Added support for the following HBase drivers: Apache Phoenix JDBC Driver, CData HBase JDBC Driver
- Preferences: Added a preference for changing the query results selection color

Changes:
- Preferences: Added more categories to make preferences easier to find

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

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