4K Stogram 歷史版本列表 Page13

最新版本 Julia Language 1.10.1 (32-bit)

4K Stogram 歷史版本列表

4K Stogram 是一個 Instagram 查看器和 PC,macOS 和 Linux 的下載。從你的朋友下載照片,視頻和故事’ 公共和私人 Instagram 帳戶,備份您的 Instagram 個人資料,並導入您的 Instagram 訂閱列表。下載 Instagram 帳戶,主題標籤和位置!免費開始!同時收集帳戶的照片,並在桌面上以 JPEG 格式保存。跟隨您最喜愛的攝影師... 4K Stogram 軟體介紹


CareUEyes 2.0.0.1 查看版本資訊

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

What's new in this version:

- Adjust the mode list to a mode button
- Adjust the UI style
- Make the editing mode easier to use in scenes with white backgrounds and black fonts
- Reading mode supports brightness adjustment
- Add a button on the "About" page to modify the license

Riot 1.6.8 (64-bit) 查看版本資訊

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

What's new in this version:

- Upgrade to JS SDK 7.1.0 and React SDK 2.9.0

Riot 1.6.7 (64-bit) 查看版本資訊

更新時間:2020-06-30
更新細節:

What's new in this version:

- Upgrade to React SDK 2.8.1

SoftMaker Office 2021 Rev 18.0.5074 (64-bit) 查看版本資訊

更新時間:2020-06-18
更新細節:

GraphPad Prism 8.4.3.686 查看版本資訊

更新時間:2020-06-18
更新細節:

USB Network Gate 9.0.2236 查看版本資訊

更新時間:2020-05-08
更新細節:

What's new in this version:

USB Network Gate 9.0.2236
- Change log not available for this version


USB Network Gate 9.0.2205
- Added: USB device isolation. The list of supported device types includes (but is not limited to): USB flash drives, external hard drives, 3D mice, USB cameras, USB printers, USB scanners, USB audio cards, and USB microphones. Available in USB Network Gate for Windows 8 and later.
- Per-session USB device isolation. The connected remote USB device is accessible only during a specific session (e.g. an RDP session).
- Per-user USB device isolation. The connected remote USB device is accessible only to a specific user.
- Fixed: BSOD when sharing Genius cameras
- Fixed: BSOD when unplugging the shared USB CDC device from the server computer
- Fixed: An issue with using the installer language in the software GUI on 64-bit Windows platforms

USB Network Gate 8.2.2087 查看版本資訊

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

What's new in this version:

USB Network Gate 8.2.2087
- Improved: support for high DPI displays
- Fixed: an issue when restoring the client’s connections to two or more shared USB devices after the client machine reboot


USB Network Gate 8.1.2013
- Change log not available for this version


USB Network Gate 8.0.1859
- Improved: GUI compatibility with high-resolution monitors. Improved: the performance of the network connection between the USB Network Gate server and client. Improved: drivers are digitally signed with WHQL. Fixed: execution of the "unshare-all-usb-ports" command, when the device was shared from the USB hub, which was disconnected from the machine and was not displayed in the list. Fixed: the occurrence of several BSODs. Fixed: inaccurate displaying of the description and status of the shared devices shown in the command line on the client. Fixed: functioning with the USB drives displayed in the system as SCSI (e.g. Seagate Expansion).
- Improved: data transfer speed
- Several other major enhancements
- Fixed: some minor bugs and glitches


USB Network Gate 8.0.1828
- Added: displaying the amount of data transferred in both directions for each connection
- Added: displaying the data transfer speed in both directions for each connection
- Added: displaying the client's IP address (instead of "localhost") on other clients, when it is connected to itself locally
- Added: automatic client disconnection option, if the shared device was not active for a certain amount of time
- Added: the option that prevents the restart of the shared device after its disconnection
- Added: Windows Server 2016 full support
- Improved: GUI compatibility with high-resolution monitors
- Improved: the performance of the network connection between the USB Network Gate server and client
- Improved: drivers are digitally signed with WHQL
- Fixed: execution of the "unshare-all-usb-ports" command, when the device was shared from the USB hub, which was disconnected from the machine and was not displayed in the list
- Fixed: the occurrence of several BSODs
- Fixed: inaccurate displaying of the description and status of the shared devices shown in the command line on the client
- Fixed: functioning with the USB drives displayed in the system as SCSI (e.g. Seagate Expansion)
- Fixed: the "Allow disconnection by other users" option did not persist when it was enabled after the device was shared
- Fixed: issues when sharing identical devices
- Fixed: minor activation issues
- Added the following localizations: Chinese (China), Chinese (Taiwan), Dutch, French, German, Italian, Japanese, Korean, Polish, Portuguese, Russian, Spanish

DVDFab Passkey Lite 9.3.6.4 查看版本資訊

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

What's new in this version:

- Added the support for some new Java protections

DVDFab Passkey Lite 9.3.6.3 查看版本資訊

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

What's new in this version:

- New: Added the support for some new Java protections

Rust 1.39.0 查看版本資訊

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

What's new in this version:

Rust 1.39.0
Language:
- You can now create async functions and blocks with async fn, async move {}, and async {} respectively, and you can now call .await on async expressions.
- You can now use certain attributes on function, closure, and function pointer parameters. These attributes include cfg, cfg_attr, allow, warn, deny, forbid as well as inert helper attributes used by procedural macro attributes applied to items. e.g.
- fn len(
- #[cfg(windows)] slice: &[u16],
- #[cfg(not(windows))] slice: &[u8],
- ) -> usize {
- slice.len()
- You can now take shared references to bind-by-move patterns in the if guards of match arms. e.g.
- fn main() {
- let array: Box<[u8; 4]> = Box::new([1, 2, 3, 4]);
- match array {
- nums
- // ---- `nums` is bound by move.
- if nums.iter().sum::<u8>() == 10
- // ^------ `.iter()` implicitly takes a reference to `nums`.
- => {
- drop(nums);
- // ----------- Legal as `nums` was bound by move and so we have ownership.
- _ => unreachable!(),

Compiler:
- Added tier 3* support for the i686-unknown-uefi target
- Added tier 3 support for the sparc64-unknown-openbsd target
- rustc will now trim code snippets in diagnostics to fit in your terminal. Note Cargo currently doesn't use this feature. Refer to cargo#7315 to track this feature's progress
- You can now pass --show-output argument to test binaries to print the output of successful tests
- * Refer to Rust's platform support page for more information on Rust's tiered platform support

Libraries:
- Vec::new and String::new are now const functions
- LinkedList::new is now a const function
- str::len, [T]::len and str::as_bytes are now const functions
- The abs, wrapping_abs, and overflowing_abs numeric functions are now const

Stabilized APIs:
- Pin::into_inner
- Instant::checked_duration_since
- Instant::saturating_duration_since

Cargo:
- You can now publish git dependencies if supplied with a version
- The --all flag has been renamed to --workspace. Using --all is now deprecated

Misc:
- You can now pass -Clinker to rustdoc to control the linker used for compiling doctests

Compatibility Notes:
- Code that was previously accepted by the old borrow checker, but rejected by the NLL borrow checker is now a hard error in Rust 2018. This was previously a warning, and will also become a hard error in the Rust 2015 edition in the 1.40.0 release
- rustdoc now requires rustc to be installed and in the same directory to run tests. This should improve performance when running a large amount of doctests
- The try! macro will now issue a deprecation warning. It is recommended to use the ? operator instead
- asinh(-0.0) now correctly returns -0.0. Previously this returned 0.0


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.
- 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.