Adobe DNG Converter 歷史版本列表
Adobe DNG Converter 是一個免費的實用程序,可以將 600 多個攝像機的文件轉換為 DNG 格式,使您能夠輕鬆將相機專用的原始文件轉換為更通用的 DNG 原始文件.Digital Negative 的開發旨在解決缺乏專有和開放的標準每個數碼相機創建的獨特的原始文件。 DNG 允許攝影師將其原始相機文件歸檔為單一格式,便於將來進行編目和訪問。隨著格式規範免費提供,任何開發人員都可以... Adobe DNG Converter 軟體介紹更新時間:2020-11-05
更新細節:
What's new in this version:
New Features:
- Comes with Git Credential Manager Core v2.0.280.19487
- Comes with Git LFS v2.12.1
更新時間:2020-10-31
更新細節:
What's new in this version:
New:
- Comes with Git v2.29.2
Fixed:
- The recent regression where OpenSSH's copy-ssh-id failed to work correctly, was fixed
- A regression preventing /usr/bin/update-ca-trust from working was fixed
更新時間:2020-10-24
更新細節:
What's new in this version:
New:
- Comes with Git v2.29.1
- The MSYS2 runtime now optionally supports creating Cygwin-style symbolic links (via setting the environment variable MSYS=winsymlinks:sysfile)
更新時間:2020-10-20
更新細節:
What's new in this version:
New:
- Comes with Git v2.29.0
- Comes with MSYS2 runtime (Git for Windows flavor) based on Cygwin 3.1.7
- Comes with Git LFS v2.12.0
- Comes with GNU Privacy Guard v2.2.23
- Comes with OpenSSL v1.1.1h
- Comes with libcbor v0.8.0
- Comes with libfido2 v1.5.0
- Comes with OpenSSH v8.4p1
- Comes with Git Credential Manager Core v2.0.252.766
- Existing Git Credential Manager for Windows users are now automatically upgraded to Git Credential Manager Core
- Git for Windows' installer learned to let users override the default branch used by git init
- The installer size was reduced by dropping a couple unneeded .dll files
- Comes with cURL v7.73.0
Fixed:
- The credential helper selector (used as default credential helper in the Portable Git) now persists the users choice correctly again
- The full command-lines of MSYS2 processes (such as cp.exe) spawned from Git's Bash can now be seen in sysmon, wmic etc by default
- A bug preventing Unicode characters from being used in the window title of Git Bash was fixed
- OpenSSH was patched to no longer warn about an "invalid format" when private and public keys are stored separately
- Non-ASCII output of paged Git commands is now rendered correctly in Windows Terminal
- It is now possible to use wordpad.exe as Git's editor of choice
- When using Git via the "Run As..." function, it now uses the correct home directory
- The Git Bash prompt now works even after calling set -u
- Git for Windows can now be installed even with stale AutoRun registry entries (e.g. left-overs from a Miniconda installation)
更新時間:2020-10-19
更新細節:
更新時間:2020-10-15
更新細節:
What's new in this version:
Performance improvements:
- File system watching is ready for production use
- In an incremental build, input and output files are checked to determine what needs to be rebuilt. This feature typically saves a lot of time; however, it adds some I/O overhead, which can be noticeable in large projects when not much has changed since the previous build.
- Back in Gradle 6.5 we've introduced file-system watching as an experimental feature. When enabled, it allows Gradle to keep what it has learned about the file system in memory during and between builds instead of polling the file system on each build. This significantly reduces the amount of disk I/O needed to determine what has changed since the previous build.
- This feature is now ready for production use and supported on Linux, Windows and macOS. You can enable it by adding the following to gradle.properties in the project root or in your Gradle user home: org.gradle.vfs.watch=true
Configuration cache improvements:
- Gradle 6.6 introduced configuration caching as an experimental feature. This release comes with usability and performance improvements for the configuration cache.
- Early adopters of configuration cache can use the command line output and HTML report for troubleshooting. Previously, the configuration cache state was saved despite reported problems, which in some situations required manual cache invalidation. In this release, the configuration cache gets discarded when the build fails because of configuration cache problems. Note that you can still ignore known problems.
- The problem report is also more helpful now. It reports the source of problems more accurately, pointing at the offending location in plugins and scripts in more cases.
- Loading from the configuration cache is also faster and memory consumption during builds has been reduced, especially for Kotlin and Android builds.
- Read about this feature and its impact on the Gradle blog. You can also track progress of configuration cache support in core plugins and community plugins.
New JVM ecosystem features:
- Toolchain support for JVM projects
- By default, Gradle uses the same Java version for running Gradle itself and building JVM projects.
- This is not always desirable. Building projects with different Java versions on different developer machines and CI servers may lead to unexpected issues. Additionally, you may want to build a project using a Java version that running Gradle is not compatible with.
- Before this release, it required several steps to configure a different Java version for compilation, testing, generating Javadoc, and executing applications.
- This release introduces the toolchain concept to simplify such a setup. A Java toolchain is a set of tools (javac compiler,java command etc), taken from a local Java installation and used during the build. Instead of manually specifying executables for the various tasks, toolchains provide a centralized place to define the Java version requirements in the build.
New dependency management features:
- Compile-only API dependencies for JVM libraries
- When writing a Java (or Groovy/Kotlin/Scala) library, there are cases where you require dependencies at compilation time which are parts of the API of your library, but which should not be on the runtime classpath.
- An example of such a dependency is an annotation library with annotations that are not used at runtime. These typically need to be available at compile time of the library's consumers when annotation processors inspect annotations of all classes. Another example is a dependency that is part of the runtime environment the library is expected to run on, but also provides types that are used in the public API of the library.
- The Java Library Plugin now offers the compileOnlyApi configuration for this purpose. It effectively combines the major properties of the compileOnly configuration (dependency will not be on the runtime classpath) and the api (dependencies are visible for consumers at compile time).
Other new features and usability improvements:
- Abbreviation of kebab-case project names
- Gradle allows you to abbreviate project and task names from the command-line. For example, you can execute the task compileTestJava by running gradle cTJ.
- Up until this release, fuzzy name matching only worked for camelCase names (e.g. compileTestJava). This is the recommended convention for task names, but it is unusual for project names. In the Java world, directory names are usually all lowercase by convention and in Gradle, project names usually follow the name of the directory the project is in.
- Many projects worked around this limitation by using kebab-case project directories (e.g. my-awesome-lib) while defining different camelCase project names in their settings scripts. This allowed them to use project name abbreviations in the command line but added additional complexity to the build.
- This release changes the fuzzy name matching to support for kebab-case names. Now, you can execute the compileTestJava task in the project my-awesome-lib with the following command
Fixed:
- Make <feature>RuntimeElements extend <feature>RuntimeOnly
- Only log file events that cause a change in the virtual file system
- Introduce file system watching debug flag
- Improve verbose VFS logging
- Update InProcessGradleExecuterIntegrationTest for file system watching
- Remove ToBeFixedForFileSystemWatching annotation
- Allow repository definition by configuration
- Add single/multi-project choice to 'gradle init --type application'
- Add 'compileOnlyApi' configuration to java-library projects
- TestNGTestFramework makes the Test Retry plugin incompatible with config cache
- Add switch to enable verbose logging for VFS
- Dependency resolution selector cache not specific enough for virtual platform edges
- Scala compilation of protobuf generated code is broken because zinc leaks protobuf-java to compile classpath
- Let user configure JavaCompile with source/target/release independant of a toolchain
- Performance bottleneck for large projects when file system watching is enabled
- Let `Javadoc` task accept a toolchain
- Remove incubating message about watching the file system
- Drop "unsafe" from file system watching-related property names
- Allow configuring the maximum number of watched hierarchies
- Change 'gradle init' to generate multi-projects
- Provide API to query for toolchains
- Extend name matching section in user guide
- RepositoryContentDescriptor should support include/exclude version ranges
- Verify project naming convention consistency
- Make use of kebab case name matching in gradle/gradle
- Precompiled script plugins - `GradleProperties has not been loaded yet.`
- Let `JavaExec` task accept a toolchain
- build events generated by tooling api are wrong when OperationCompletionListener is used
- Make fuzzy matching work with kebab-case project naming
- Use composition instead of inheritance to separate BuildOperationRunner from BuildOperatoinExecutor
- Configuration caching uses stale provider value
- Configuration caching querying task outputs too early
- Toolchain is matched deterministically
- Download toolchains on demand
- Use Kotlin source in Santa Tracker Kotlin Android performance tests
- Detect common Java installation locations
- Let `Test` task accept a toolchain
- Ability to configure toolchain requirements for a build
- Deprecate `JavaApplication#setMainClassName` in favour of property
- Enable partial VFS invalidation by default
- Move excessive logging around VFS to build operations
- Explain memory leak-like slowdown when FSW is enabled on Gradle build
- Support for compiling own (test) code with Groovy 4.0
- Gradle 6.5 pulls in optional dependency
- Gradle 6.5 build fails on Java 15-ea with Execution failed for task ':jar'. java.util.ConcurrentModificationException (no error message)
- Memory inefficiency in ConsumerVariantMatchResult for very large project.
- Pre-existing empty output directory may cause incorrect up-to-date checks
- JDK 15 support in Gradle
- Update integration tests using Jetty to run on JDK15
- Jacoco JDK15 support
- Review how TestKit directories are watched
- Disable file system watching when there is a change to Ant default excludes
- Verify correct usage of FileTimeStampInspector when file-system watching is enabled
- Use the Java API compiler when possible
- Attribute "without_test_code" is missing in .classpath file for project references
- Support `SUBST` or disable its use with file watching
- Test filters hide underlying issues during test task execution
- Add test for continuous build with VFS retention enabled
- Tooling API on JDK11 can not connect to Gradle project 4.5
- Feature? dependency lock missing skippedDependencies Property
- Composite artifact can't be resolved in buildSrc
- Maven2Gradle conversion support targeting Kotlin DSL
- Detect local Java installations
- Java toolchain detection should work on macos when no system VM installed
- Artifact transforms with dependencies fail when project substitutes external one
- Samples use nightly build instead of RC
- 6.7-rc-1: build fails with Cannot acquire state lock for project
- Property auto-detect used at configuration time when using toolchain with auto-download=false
- Service creation is too eager
- Javadoc and toolchain: task is up-to-date when toolchain changes
- `Problems reading data from Binary store` with intra-project dependency and capability resolution strategy
- Incremental annotation processing can fail when forking with Java 8
- Incremental compilation wipes out aggregating processor file in Gradle 6.7
更新時間:2020-10-01
更新細節:
What's new in this version:
New Features:
- Firmware v1.12 for Cameo 4 is now available
This firmware update provides a new delayed loading option that can detect your mat or material, thus allowing you to use both hands when loading. To use this new delayed loading option:
- First, press the Load button on your Cameo 4
- Next, hold your mat or material in the correct positioning up against the pinch rollers
- Wait 3 seconds, and the Cameo 4 will then load the mat or material into the machine
Bug Fixes:
- A user-created SVG that has an image can now be correctly imported back into Studio
- Fixed a crash with certain files in Cut By Layer
更新時間:2020-09-15
更新細節:
What's new in this version:
- Support for the following cameras has been added. Visit the Camera Raw page for a complete list of supported cameras
- Canon EOS R5
- Canon EOS R6
- Nikon Z 5
- Olympus OM-D E-M10 Mark IV
- Olympus OM-D E-M10 Mark III S
- Panasonic LUMIX DC-G100 (DC-G110)
- Skydio 2
- Sony A7s III (ILCE-7SM3)*
- Sony ZV-1 (DCZV1/B)
更新時間:2020-09-15
更新細節:
What's new in this version:
Nuclino 1.4.0
Improved navigation and search experience:
- Being able to explore and quickly retrieve the information you need without losing context is essential to staying productive. We have always made it a priority to continuously optimize the navigation and search experience in Nuclino and have just released another update to make it even better.
- When you have a lot of deeply nested, interconnected items, it can be easy to get lost. Now, you will always know where you are. After finding the item you needed through search or navigating to it using internal links, you will be able to see exactly where this item is in the hierarchy of your workspace, thanks to the following updates
Responsive images:
- Images in Nuclino are now rendered differently depending on your screen size and DPI.
- That means that images will now:
- load faster;
- look sharper on high DPI displays;
- consume less bandwidth on mobile and other small screens.
- As you explore your content using internal links or using the quick access menu, the sidebar will always show where each item is located in the hierarchy.
- Search now allows you to not only find the item you need, but also its context. Hover over the item and click on Show in workspace and you will be instantly taken to the exact location of the item in the workspace structure.
- If you get lost while navigating through your sidebar, you can always go back to your open item by selecting Show in workspace option in the item menu.
- Enhancements and fixes:
Code blocks:
- Code blocks no longer display an unnecessary vertical scroll bar.
- Horizontal scrolling of code blocks now works correctly in all browsers.
- Lines of code no longer breach the borders of code blocks in shared items.
Misc:
- It is now possible to see the full path of an item, including all clusters it belongs to, by hovering over the clusters displayed over the item title.
- Videos in shared items are now correctly aligned.
- When the sidebar is hidden, resizing the browser window no longer automatically opens it.
- The margins between image grids and other elements have been adjusted.
- Text links in italics now have correct styling.
- The item comment experience has been improved to handle longer comments.
- Guests no longer see menu items for actions inaccessible to them, such as permanently deleting content from trash or moving items and clusters between workspaces.
Nuclino 1.3.0
Dropbox integration:
- If your team is using Dropbox to store and share documents, you can now easily link to your files from Nuclino. Simply paste a link to a Dropbox file or folder and Nuclino will automatically fetch its title.
Improved embedding experience:
- Embedding content inside Nuclino can bring your documents to life and save you the trouble of having to keep multiple tabs open. Nuclino supports embeds from 15+ different apps, including Google Drive, Figma, Draw.io, and more.
- We are committed to continuously improving the experience of working with embeds. This month, we have added the ability to easily open the link to the embedded content, comment on, or delete an embed. Simply open the newly-added menu in the top-right corner of the embed.
- Additionally, now you can browse the full list of available embeds directly from Nuclino. Use the insert menu or the slash command and navigate to Apps & integrations to access it.
More enhancements and fixes:
- You will no longer get duplicate notifications when you are mentioned in a comment or a reply.
- When you delete, archive, or move an item or a cluster, you will now get a confirmation message.
- The workspace export has been optimized to work for particularly large workspaces.
- Scrollbars in the insert menus are now visible on Windows and Linux.
- Pressing Undo (Ctrl/Cmd + Z) after pasting a link will now remove the automatically fetched link title and show the original URL. Automatic link embedding can be reversed the same way.
- The in-app toast notifications have been redesigned.
更新時間:2020-09-09
更新細節:
What's new in this version:
- Broken incremental annotation processing when previous build was incremental
- DefaultConfigurableFileCollection.setFrom with empty arguments
- Fix outgoing edge reference counting
- Classpath not correct with platform bom
- Fix incremental annotation processing