Navicat for MySQL (64-bit) 歷史版本列表 Page34

最新版本 Navicat for MySQL 16.3.7 (64-bit)

Navicat for MySQL (64-bit) 歷史版本列表

Navicat for MySQL 64 位是 MySQL / MariaDB 管理和開發的理想解決方案。在一個應用程序中同時連接到 MySQL 和 MariaDB 數據庫。這個全面的前端為數據庫管理,開發和維護提供了直觀而強大的圖形界面。它為 MySQL / MariaDB 以及專業開發人員提供了一套全面的工具.Navicat for MySQL 64 位連接到本地 / 遠程 MySQL 或 M... Navicat for MySQL (64-bit) 軟體介紹


JRiver Media Center 26.0.19 (64-bit) 查看版本資訊

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

What's new in this version:

Changed:
- Updated to Monkey's Audio 5.14
- ATSC and DVB tuners will be a little more responsive to canceling/stopping
- iTunes library import supports unlimited levels of iTunes playlist nesting instead of only one level
- Slovak translation updated (thanks Peter Lukac)
- Customized the waveform colors for the Black on Black, Thunderstorm, Z, Aruba, Green Eyes, Purity, Pearl Bailey, Modern Cards Dark, Modern Cards White and Blue Steel skins to better match.
- Made the waveform bar a little smoother on wide screens

Fixed:
- DVB Tuner's tuner event handler was executed repeatedly and could cause MC to crash
- Playback Status would not advance when playing a file after loading a different library
- The date field in some images was incorrectly set to "0" on import
- Some corrupt mp4 files could lead to hanging of MC (MC went into an infinite loop)

New:
- Added the relational type of one per composer to library fields

DS4Windows 2.0.5 (64-bit) 查看版本資訊

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

What's new in this version:

- Added Italian translation file to VS project
- Fixed Y buffer clearing in trackball routine
- Make new Special Actions enabled in the current profile by default
- Make sure to actually load Linked Profiles at program start. Oopsie
- Save settings on log off or Windows shutdown
- Save settings on controller unplug. Needed to save Linked Profile setting
- Link to ViGEm installer version 1.16.116
- Allow moving auto profile entries. Change contributed by mika-n
- Added tooltip to auto-profile path and title editbox fields
- Czech translation added. Provided by Maikeru007
- Fixed binding for Flash at High Latency setting

Streamlabs OBS 0.20.1 查看版本資訊

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

PDFZilla 3.9 查看版本資訊

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

Navicat for MySQL 15.0.9 (64-bit) 查看版本資訊

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

What's new in this version:

Navicat for MySQL 15.0.9 (64-bit)
Bug fixes:
- Only the first batch was transferred when "Number of row per batch" was enabled
- Minor bug fixes and improvements


Navicat for MySQL 15.0.8 (64-bit)
Improvements:
- Added "Keep Orthogonal Layout" to Model

Bug fixes:
- Unable to update bit type data
- Minor bug fixes and improvements


Navicat for MySQL 15.0.6 (64-bit)
Improvements:
- Added shortcuts for "Run Current Statement" and "Select Current Statement" in Query Editor

Bug fixes:
- "Unknown Internal Error" occurred when modeling databases
- Find bar UI issue in Data Viewer
- Unable to print table when using popup menu on Navigation pane
- Syntax error occurred when renaming index in MariaDB table
- Explain feature did not work with query parameters
- Interval type was not supported in Charts
- Highlight color issue in Filter wizard when using Dark mode
- Minor bug fixes and improvements


Navicat for MySQL 15.0.5 (64-bit)
Bug fixes:
- "Invalid floating point operation" error occurred when resizing tables in View Builder
- Multiple primary key names were generated when exporting model to SQL files
- Syntax error occurred when connecting to MySQL 4
- Minor bug fixes and improvements


Navicat for MySQL 15.0.4 (64-bit)
Bug fixes:
- Access violation error occurred when adding users to Navicat Cloud project
- Access Denied error occurred when designing table
- Unable to highlight field when typing in Filter's field selection list
- Wrong fields are exported to the SQL file when not all fields are selected
- Dark theme kept reverting back to Normal theme
- Wrong CREATE INDEX was generated in Model
- MySQL JSON data was truncated in Table Viewer
- Empty value was exported as **** when exporting DBF file
- Data Transfer high memory consumption issue
- Unable to connect Azure Database for MariaDB
- Run queries slow issue
- "List index out of bounds (-1)" error occurred when editing role privileges
- "Last Tab Window" option was missing


Navicat for MySQL 15.0.3 (64-bit)
- New Charts
- Advanced Data Transfer
- Brand new Query Builder
- Enhanced Data Modeling Tool
- Dark theme UI and Diagram
- Many other new features and improvements

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

What's new in this version:

Improvements for plugin authors:
- Finalize property value only when the value is queried
- In previous Gradle releases, certain Gradle types, such as Property or ConfigurableFileCollection, provided a finalizeValue() method that eagerly calculated the final value for a property and prevented further changes
- When a task starts running, Gradle automatically finalizes task properties of these types, so that the same value is seen by the task's actions and Gradle's build caching/up-to-date checks. This also avoids calculating the property value multiple times, which can sometimes be expensive. Plugins can also use finalizeValue() to finalize other properties, such as a property of a project extension, just prior to querying the value.
- In this release, these types gain a new finalizeValueOnRead() method. This method is similar to finalizeValue(), except that the final value is calculated when the value is queried rather than immediately. Plugins can use this method when a property value may be expensive to calculate or when the value may not have been configured to ensure that all consumers of the property see the same, final, value from that point onwards.
- Please see the user manual for more details

New managed property types:
- Gradle 5.5 introduced the concept of a managed property for tasks and other types, where Gradle provides an implementation of the getter and setter for an abstract property defined on a task, project extension, or other custom type. This simplifies plugin implementations by removing a bunch of boilerplate.
In this release, it is possible for a task or other custom type to have an abstract read-only property of type DomainObjectSet<T>.
- Please see the user manual for more details.

New factory methods:
The ObjectFactory type, which plugins and other custom types use to create instances of various useful types, has several new factory methods to create certain Gradle types that could only be created using internal APIs in previous releases:
- The polymorphicDomainObjectContainer() method to create ExtensiblePolymorphicDomainObjectContainer<T> instances
- The namedDomainObjectSet() method to create NamedDomainObjectSet<T> instances
- The namedDomainObjectList() method to create NamedDomainObjectList<T> instances

Improvements for Gradle tooling providers:
- Tooling API: TestLauncher can run specific Test task tests
- The TestLauncher interface in the Tooling API could already launch tests by specifying the name of the test classes or methods; however, if there are multiple Test tasks, then all Test tasks would be executed.
- For IDEs, developers usually want to execute only one task at a time. Gradle 6.1 introduces a new API to execute tests with specific Test task using the withTaskAndTestClasses() and withTaskAndTestMethods() methods.

Streamlabs OBS 0.20.0 查看版本資訊

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

Navicat for MySQL 15.0.6 (64-bit) 查看版本資訊

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

What's new in this version:

Navicat for MySQL 15.0.6 (64-bit)
Improvements:
- Added shortcuts for "Run Current Statement" and "Select Current Statement" in Query Editor

Bug fixes:
- "Unknown Internal Error" occurred when modeling databases
- Find bar UI issue in Data Viewer
- Unable to print table when using popup menu on Navigation pane
- Syntax error occurred when renaming index in MariaDB table
- Explain feature did not work with query parameters
- Interval type was not supported in Charts
- Highlight color issue in Filter wizard when using Dark mode
- Minor bug fixes and improvements


Navicat for MySQL 15.0.5 (64-bit)
Bug fixes:
- "Invalid floating point operation" error occurred when resizing tables in View Builder
- Multiple primary key names were generated when exporting model to SQL files
- Syntax error occurred when connecting to MySQL 4
- Minor bug fixes and improvements


Navicat for MySQL 15.0.4 (64-bit)
Bug fixes:
- Access violation error occurred when adding users to Navicat Cloud project
- Access Denied error occurred when designing table
- Unable to highlight field when typing in Filter's field selection list
- Wrong fields are exported to the SQL file when not all fields are selected
- Dark theme kept reverting back to Normal theme
- Wrong CREATE INDEX was generated in Model
- MySQL JSON data was truncated in Table Viewer
- Empty value was exported as **** when exporting DBF file
- Data Transfer high memory consumption issue
- Unable to connect Azure Database for MariaDB
- Run queries slow issue
- "List index out of bounds (-1)" error occurred when editing role privileges
- "Last Tab Window" option was missing


Navicat for MySQL 15.0.3 (64-bit)
- New Charts
- Advanced Data Transfer
- Brand new Query Builder
- Enhanced Data Modeling Tool
- Dark theme UI and Diagram
- Many other new features and improvements

Streamlabs OBS 0.19.4 查看版本資訊

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

Apache Tomcat 9.0.30 查看版本資訊

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