Adobe DNG Converter 歷史版本列表 Page17

最新版本 Adobe DNG Converter 16.2

Adobe DNG Converter 歷史版本列表

Adobe DNG Converter 是一個免費的實用程序,可以將 600 多個攝像機的文件轉換為 DNG 格式,使您能夠輕鬆將相機專用的原始文件轉換為更通用的 DNG 原始文件.Digital Negative 的開發旨在解決缺乏專有和開放的標準每個數碼相機創建的獨特的原始文件。 DNG 允許攝影師將其原始相機文件歸檔為單一格式,便於將來進行編目和訪問。隨著格式規範免費提供,任何開發人員都可以... Adobe DNG Converter 軟體介紹


Silhouette Studio 4.4.259 (64-bit) 查看版本資訊

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

What's new in this version:

Bug-Fixes:
- Stability improvements - fixed a common crash
- Cameo 4 Firmware version 1.11 rev004 is now available
- Groups with rotated elements no longer rotate out of position when exporting to SVG
- 'Cut lines overlapping the cut border' dialog no longer appears with unwelded fonts and certain files
- Incompatible Material Settings message no longer displays incorrectly with specific files
- Cut border no longer goes off the mat if the media size is set to custom
- Fix for manual input of a rhinestone size
- Fixed an issue with Cameo 4 failing to update Firmware in some situations
- Fixed an issue with the Blade depth slider when a Cameo 4 is connected with an AutoBlade
- Stipple Tooltip adjusted to include new machines
- Fixed crashes with some third-party SVGs
- Missing translations added to three of the intro screens
- There is now a 15x15inch option when the mat is set to None
- Materials now update correctly when changing the theme

Silhouette Studio 4.4.259 (32-bit) 查看版本資訊

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

What's new in this version:

Bug-Fixes:
- Stability improvements - fixed a common crash
- Cameo 4 Firmware version 1.11 rev004 is now available
- Groups with rotated elements no longer rotate out of position when exporting to SVG
- 'Cut lines overlapping the cut border' dialog no longer appears with unwelded fonts and certain files
- Incompatible Material Settings message no longer displays incorrectly with specific files
- Cut border no longer goes off the mat if the media size is set to custom
- Fix for manual input of a rhinestone size
- Fixed an issue with Cameo 4 failing to update Firmware in some situations
- Fixed an issue with the Blade depth slider when a Cameo 4 is connected with an AutoBlade
- Stipple Tooltip adjusted to include new machines
- Fixed crashes with some third-party SVGs
- Missing translations added to three of the intro screens
- There is now a 15x15inch option when the mat is set to None
- Materials now update correctly when changing the theme

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

What's new in this version:

Performance improvements:
- Fast feedback for local incremental builds is crucial for developer productivity. This is especially true when your IDE uses Gradle to build and run tests for your project, which IntelliJ IDEA does by default. This scenario has been the primary focus of performance improvements since Gradle 6.5 and will continue for the next several Gradle releases.
- Configuration caching
- Before running any task, Gradle needs to run the configuration phase. Currently, this is done on every build invocation and can incur a noticeable overhead, especially in large projects.
- The configuration cache significantly improves build performance by caching the result of the configuration phase and reusing it for subsequent builds. Using the configuration cache, Gradle can skip the configuration phase entirely when nothing that affects the build configuration has changed as you can see below.
- Additionally, Gradle is able to optimize task execution when configuration caching is enabled and execute more tasks in parallel by default.
- Note that configuration caching is different from the build cache, which caches outputs produced by the build. The configuration cache captures only the state of the configuration phase.
- IDE sync and import does not currently benefit from configuration caching.
- This feature is considered highly experimental and not enabled by default or recommended for production use. Tasks and plugins usually require changes to meet the requirements to use configuration caching. Not all core Gradle plugins have been updated yet and some features are not yet implemented. Your build may likely require changes.
- You can enable this experimental feature by supplying the parameter --configuration-cache on the command-line or adding it to your run configuration. If your build is incompatible with configuration caching, Gradle will generate a report describing the problems found.
- Learn more about this new feature and its impact in the Configuration Cache documentation.
- Stability improvements of file-system watching
- Gradle 6.5 introduced an experimental opt-in that improves the performance of local incremental builds by watching for file-system changes.
- This release brings a number of stability improvements for file-system watching when used with composite builds or large projects on Windows and macOS. Gradle will now report better errors when you enable file-system watching on unsupported systems.
- Improved cache hits with normalized runtime classpaths
- For up-to-date checks and the build cache, Gradle needs to determine if two task input properties have the same value. In order to do so, Gradle first normalizes both inputs and then compares the result.
- Runtime classpath analysis now inspects manifest and META-INF properties files, ignoring changes to comments, whitespace and order-differences. Moreover, you can selectively ignore attributes or properties that don't impact the runtime classpath.
- normalization {
- runtimeClasspath {
- metaInf {
- ignoreAttribute("Implementation-Version")
- ignoreProperty("timestamp")
- This improves the likelihood of build cache hits when any ZIP file on the classpath is regenerated and only differs by unimportant values or comments. The most common case where this sort of normalization can be useful is with JAR files, but it can be applied to any ZIP file on the classpath--such as AAR, WAR, or APK files.
- See the user manual for further information. Note that this API is incubating and will likely change in future releases as support is expanded for normalizing properties files outside of the META-INF directory.

New features and usability improvements:
- Conventions for handling user-provided credentials
- Builds sometimes require users to supply credentials. For example, credentials might be required to authenticate with an artifact repository in order to publish an artifact. It's a good practice to keep credentials outside the build script.
- This release includes a new API for credentials that makes working with credentials easier by establishing a convention to supply credentials using Gradle properties that can be provided to the build as command-line arguments, environment variables, or as values in a gradle.properties file. It also introduces fail-fast behavior when Gradle knows that the build will need credentials at some point and the credentials are missing.
- Starting from this release, you can easily externalize credentials used for authentication to an artifact repository:
- repositories {
- maven {
- name = 'mySecureRepository'
- credentials(PasswordCredentials)
- // url = uri(<<some repository url>>)
- The credentials for mySecureRepository will be searched for in Gradle properties with the names mySecureRepositoryUsername and mySecureRepositoryPassword.
- For more details on using the new API to authenticate with artifact repositories, see the user manual section as well as an updated sample.
- You can also use the new provider API directly to supply credentials to an external tool:
- tasks.register('login', Exec) {
- def loginProvider =
- providers.credentials(PasswordCredentials, 'login')
- inputs.property('credentials', loginProvider)
- doFirst {
- PasswordCredentials loginCredentials = loginProvider.get()
- // use credentials
- The credentials for the above will be searched for in Gradle properties with the names loginUsername and loginPassword.
- See the updated sample for more details.
- Support for the --release flag in Java compilation
- Java 9 introduced cross compilation support with the --release flag on the Java compiler. This option tells the compiler to produce bytecode for an earlier version of Java and guarantees that the code does not use any APIs from later versions.
- In previous Gradle versions, it could be achieved through the use of compilerArgs and making sure that sourceCompatibility and targetCompatibility are not set:
- compileJava {
- options.compilerArgs.addAll(['--release', '7'])
- With this release, Gradle makes this use case easier by supporting the --release flag for Java compilation directly on the CompileOptions of JavaCompile tasks:
- compileJava {
- options.release = 7
- See the section on cross compilation for details.
- Dependency management improvements
- Reproducible Gradle Module Metadata
- Gradle Module Metadata is a format used to serialize the Gradle component model, similar to but more powerful than Maven’s POM.
- By default, the Gradle Module Metadata file contains a build identifier field which defaults to a unique ID generated during build execution. This behaviour can now be disabled at the publication level, allowing users to opt-in for a reproducible Gradle Module Metadata file. This enables downstream tasks to consider it up-to-date, resulting in faster and reproducible builds.
- main(MavenPublication) {
- from components.java
- withoutBuildIdentifier()
- See the documentation for more information on Gradle Module Metadata generation.
- Variant-aware dependency substitution rules
- It’s a common problem in dependency management that the same dependency can appear in a dependency graph but with different attributes. For example, you want to only use the “fat jar” with repackaged dependencies, but the regular jar is pulled in transitively. The far jar may be published under a "fat jar" classifier, while the regular jar has no classifier.
- Previously, it wasn't possible for Gradle to substitute a dependency using a classifier with a dependency without a classifier, nor was it possible to substitute a dependency without classifier with a dependency with a classifier.
- Similarly, other attributes (typically "platform" dependencies) or capabilities could not be used when describing dependency substitutions.
- Gradle now supports declaring substitutions based on classifiers, attributes, or capabilities. Gradle's dependency substitution API has been enriched to cover those cases.
- See the documentation on variant-aware substitution for details.
- Improvements for plugin authors:
- Injectable ArchiveOperations service
- Previously, it was only possible to create a FileTree for a ZIP or TAR archive by using the APIs provided by a Project.
- However, a Project object is not always available, for example in worker actions or when using the configuration cache.
- The new ArchiveOperations service has zipTree() and tarTree() methods for creating read-only FileTree instances respectively for ZIP and TAR archives.
- See the user manual for how to inject services and the ArchiveOperations API documentation for more details and examples.
- Combining two providers
- When using Lazy Properties, it’s common to compute a value by combining the values of two providers. In previous Gradle releases, it wasn’t possible to do this without eagerly reading one of the provider values or losing dependency information. Gradle 6.6 introduces a zip method which lets you provide the combined value lazily.:
- def hello = objects.property(String).convention("Hello")
- def world = objects.property(String).convention("World")
- def helloWorld = hello.zip(world) { left, right ->
- "${left}, ${right}!".toString()
- // ...
- hello.set("Bonjour")
- world.set("le monde")
- println(helloWorld.get()) // prints “Bonjour, le monde!”
- Refer to the API documentation for details.
- Security improvements:
- Removed debug logging of environment variables
- Debug level logging may expose sensitive information in the build log output, for example in CI server logs. For this reason, Gradle displays a prominent warning when using debug level logging since version 6.4. One example of this risk is leaking secret values such as credentials stored in environmental variables.
- Previously, when debug level was enabled, Gradle used to log all environment variables when starting a process such as a test, Gradle daemon, or when using Project.exec. In practice, this means most of the builds logged environment variables on debug level.
- As an additional security precaution, Gradle no longer logs environment variables when starting processes starting with this version.
- Note that many CI servers, like Jenkins and Teamcity, mask secrets in the captured logs. Still, we recommend limiting the usage of debug level logging to environments which do not capture the log output, like your local machine. Build scans never capture the debug log as part of the console log even when you enabled debug logging.
- As an additional measure, you may want to limit the environment variables passed to the test task or other forked processes by explicitly using ProcessForkOptions.setEnvironment(). This way the forked processes themselves cannot leak secrets from the environment, since they don't have them available anymore.

Fixed:
- Runtime classpath normalization should apply to zips and to nested zips in classes directories
- Stackoverflow visiting file collections referencing themselves
- System.getProperty(...) with null default value triggers NPE
- java.lang.RuntimeException: Problems reading data from Binary store
- Configuration cache should support dynamic and changing dependencies
- Configuration cache should support dependency locking
- Make `java-gradle-plugin` plugin support the configuration cache
- Make `ear` plugin support the configuration cache
- Make `war` plugin support the configuration cache
- Make `java-library-distribution` plugin support the configuration cache
- Make `distribution` plugin support the configuration cache
- Make `application` plugin support the configuration cache
- Make `java-platform` plugin support the configuration cache
- Make `java-library` plugin support the configuration cache
- Make `java` plugin support the configuration cache
- [6.6-milestone-1] Gradle wrapper task throws NumberFormatException with OpenJDK 15
- Exception stacktrace shown upon startup when file-system watching is enabled on certain older Linux distributions
- Missing classes with Scala incremental compilation
- Kotlin compiler daemon keeps disappearing with file-system watching enabled on macOS
- compileKotlin task has unstable task inputs with precompiled `.gradle.kts` scripts
- CL code snippets are broken in Gradle docs
- Make sure file system watching is enabled consistently during a build
- Make Project.zipTree() and Project.tarTree() available via injected services
- Configuration cache can fail when artifact transform is chained and takes artifact dependencies as a parameter
- Broken non-incremental compilation with Scala
- Watch root directories of included builds
- Artifact collection contains different results when loaded from configuration cache
- Rename "VFS retention" to "file-system watching" in public types and messages
- Investigate what files are watched outside of the root directory
- JVM crash with file-system watching enabled on Windows
- java14 helpful NPEs not working in test
- exclusiveContent API fails with "Cannot mutate content repository descriptor..."
- incorrect docs for how to disable scala incremental compilation
- Stop watching caches in Gradle user home and in the `$rootDir/.gradle` directory
- Allow GenerateModuleMetadata and GenerateMavenPom to be reproducible
- Make up-to-date checks for :kotlinCompilerEmbeddable:unpackPatchedKotlinCompilerEmbeddable faster
- Give user information about increasing inotify watch count when needed
- Configuration cache property serialization should consider custom writeObject/readObject methods
- Gradle 5.1.1 does not retry connection resets
- POM dependency with `<type>` bypasses variant-aware resolution, even when conflict-resolved with project dependency
- Dependency substitution is broken for those with <type> attributes in POM files
- Dependency substitution rules
- Add property for setting the `--release` compiler argument
- Buildscript dependencies have bad handling of pom files
- local projects dependencies no longer work in gradle 6.6-rc-1
- Java plugin can overwrite the classpath of Test tasks added by other plugins
- 6.6RC1: error message for missing credentials is duplicated
- Causes of custom AssertionErrors should be preserved
- ClassDirectories property of `JacocoReport` is annotated with @Classpath
- Instrumentation causes a duplicate method and a `ClassFormatError` at runtime
-Suppressed exceptions thrown by tests are not captured in the test report and build scan

Git for Windows 2.28.0 (64-bit) 查看版本資訊

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

What's new in this version:

New:
- Comes with Git v2.28.0
- Comes with subversion v1.14.0
- Comes with the designated successor of Git Credential Manager for Windows (GCM for Windows), the cross-platform Git Credential Manager Core. For now, this is opt-in, with the idea of eventually retiring GCM for Windows
- Comes with cURL v7.71.1
- Comes with Perl v5.32.0
- Comes with MSYS2 runtime (Git for Windows flavor) based on Cygwin 3.1.6 (including the improvements of Cygwin 3.1.5)
- Comes with GNU Privacy Guard v2.2.21

Bug-fixes:
- A typo was fixed in the installer
- The new git pull behavior option now records the fast-forward choice correctly
- In v2.27.0, git svn was broken completely, which has been fixed
- Some Git operations could end up with bogus modified symbolic links (where git status would report changes but git diff would not), which is now fixed
- When reinstalling (or upgrading) Git for Windows, the "Pseudo Console Support" choice is now remembered correctly
- Under certain circumstances, the Git Bash window (MinTTY) would crash frequently, which has been addressed
- When pseudo console support is enabled, the VIM editor sometimes had troubles accepting certain keystrokes, which was fixed
- Due to a bug, it was not possible to disable Pseudo Console support by reinstalling with the checkbox turned off, which has been fixed
- A bug with enabled Pseudo Console support, where git add -i would not quit the file selection mode upon an empty input, has been fixed
- The cleanup mode called "scissors" in git commit now handles CR/LF line endings correctly
- When cloning into an existing directory, under certain circumstances, the core.worktree option was set unnecessarily. This has been fixed

Silhouette Studio 4.4.247 (64-bit) 查看版本資訊

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

What's new in this version:

New Features:
- Smart Snapping - re-position shapes easily with smart snap guides! Press ‘S’ to toggle Smart Snapping
- Print Preview - see a preview of how your Print & Cut job will print before you send
- Transparent PNG Auto-Trace - drag PNG files with transparent backgrounds to create instant cut lines around the solid areas of your image

Standard Edition Fixes:
- Users can now change the page color / media color in preferences and toggle between this and white with (w) key
- Irregular white bars no longer displayed on launch
- The tooltip for Arc Tool is no longer 'Flexishapes'
- Corrected the swedish firmware update translation
- Fixed performance issue where memory usage increases after tracing then does not drop again after
- Fixed an issue causing a crash when swapping between active documents with Registration marks
- "Never" has been restored to the update preferences options
- Performing a copy & paste while in the Library will no longer copy & paste the selected object on the Design Area
- Removed unnecessary folders from Silhouette Studio installers
- Resolved a conflict with connecting a Cameo 4 Plus followed by a CE Lite-50
- Increased the minimum grid size to 0.04in/1mm
- Changing the grid color is now working as expected
- Updated Japanese translations
- Silhouette Studio no longer requires an install of Silhouette Link or Bonjour
- Open files now honor changes to the default save location Preference
- Removed duplicative 'Default' options from Preferences drop-downs
- Expanding a Preference drop-down no longer activates 'Apply' button
- Mouse Hover color in dark mode is no longer white
- Fixed an issue with the Lock Scale Ratio button preventing input above 20 inches
- Selecting multiple objects no longer toggles the aspect ratio lock
- 32-bit Release versions are no longer displaying the beta dialog upon startup
- Font installer is now verified
- Application window size is now remembered on start-up
- 'Restore factory defaults' no longer causes SS to crash
- General performance improvements
- Fixed log file cleanup
- Crash no longer occurs when trying to use Studio in a very small window
- OK button is now visible on the 'Device detected' pop-up on Windows 7 machines
- Added a right-click context menu to document tabs
- UI is now better aligned in Preferences
- Default blade choice in preferences is now working
- All options in the Display tab of preferences now work as expected
- Preference window buttons now fit Mac OS OK/Close conventions
- Reduced the size of the Preferences window
- Removed 'Silhouette Device Connections' options from Preferences
- ‘Restore Defaults’ is now correctly restoring changed settings in Preferences
- Tutorial text is easier to read when using the Grey theme

Design Fixes:
- Resizing the font in a sticky note will resize the note to fit
- Registration marks are the same initial size whether enabled by Page Setup or Default Preference
- Opening two files and switching between them now updates the mat in the Page Setup panel
- Page size is no longer set to custom when the values match Letter dimensions
- Registration Mark Length slider no longer misses a step when increasing size from the lowest value
- You can now hold shift while panning a pattern to constrain it to a vertical or horizontal direction
- It is possible to collapse panels again
- Compound paths are now showing correctly in the Glyph preview
- Image scale is now transferred correctly when using the eyedropper tool
- Warping no longer creates many more points than necessary on a filled shape
- Specify Dimensions section is now disabled when no object is selected
- Using the Move tool in the Quick Access Toolbar will no longer move objects when the distance is set to 0
- Moved Print Bleed to the 'Registration Marks' panel
- Restored the Custom option in the media size dropdown of Page Setup
- Page Setup sliders are now more accurate
- You can no longer snap to hidden guides
- The eraser cursor no longer appears to snap to grid
- Pressing 'i' to select Eyedropper no longer causes Cross-hairs to become frozen
- Applying a new default orientation now greys out the "Apply" button
- Text panel advanced options now work with Dark Theme
- Made Pixscan warning text more readable on the Dark Theme
- Added an 'X' to Sticky Note top-right corner when a Sticky Note is active
- Sticky Notes can now be edited once the file has been saved
- Added a 'Do you want to delete this Sticky Note' warning when a note with text is deleted
- Sticky Notes can now be re-scaled
- Created a Dynamic Toolbar for Sticky Notes
- Sticky Notes can no longer be resized to the point the text is pushed out of the note
- Pan Pattern icon now moves with a shape
- The Silhouette icon on the Toolbar is no longer pixelated
- Zoom is no longer reset when you switch from design to send
- Glyphs panel is no longer white in the Dark Theme
- Add a checkbox on page setup for ‘constrain media to cutting mat’
- Spanish translation for reg mark on/off checkboxes are now correct
- Updated Japanese text for certain materials
- Commercial font indicator is now displaying for commercial fonts
- Files saved in a .jpg/png format now respect DPI settings
- Increased size of the grid lines on the Cameo 4 Plus 15" cutting mat
- Improved the time it takes to change the line and fill properties of text objects
- Secondary grid lines can now be set to a different color
- Send Fixes
- A cut job with no cut lines will no longer send job startup data to the machine
- Have you mirrored?' pop-up now appears in Cut by Line/Fill/Color
- Improved message that is displayed when Action Not Found
- Incompatible material settings dialog no longer appears when sending with 2mm Kraft Blade
- String name no longer appears in context menu when multiple user-defined materials have been selected
- Cut border no longer becomes offset to reg marks when you have a Portrait cutter
- Users prompted whether they want to copy updated 'Cameo 4 Tool 1' settings to 'Default’ tab
- Smart Cut should no longer create unnecessary cuts for dashed lines
- Device name is now saved directly to the machine rather than to your preferences
- Layer field is no longer blank in Cut by Layer
- Removed Emboss as an action from Copy Paper
- Tutorial instructions in Send have been adjusted for Cameo 4
- Extended media-only cutting range to 60ft for machines which support the roll feeder
- Carriage now returns to origin after a Test Cut
- Updated the "Load Media" text when a Cameo 4 is connected
- Enabled advanced users to turn off Smart Cut loop generation in Material Settings
- Smart Cut can now raise blade when traversing loops
- Removed unusable 'cut' settings from CAMEO4 Tool 2 materials
- Renaming a duplicated material no longer crashes Studio
- Sketch Pen settings have been updated to improve the "Dragging lines" issue
- Stipple sorting has been re-added
- Barcode cuts are now more reliable
- Adjusted the Send Panel dropdown UI
- Cardstock, Plain and Cardstock, Textured Emboss settings have been corrected
- Updated Wood Paper settings
- Sketch action has been removed from the materials "Metal Sheets, Etching" and "Metal Sheets, Stippling"
- Default Punch force is now 7 and can be set higher if required
- Added Rotary Cut action to Crepe Paper
- Renamed 'Skim Force' to 'Loop Force' in Rotary cut settings
- Increased the maximum force to 23 for Rotary Blade
- Made the force 1 by default on all newly created custom materials for Tool 2
- Blade Depth dial for 3mm Kraft Blade now goes up to 30 in all areas
- Calibration distance adjustment lines are now printing
- Red and Blue circles have been removed from the Calibration sheet to avoid confusion
- Changed '(Auto) Tool Name' to 'Tool Name (Detected)' in the Tool dropdown
- Cameo 3 is no longer defaulting to ratchet blade when 'Choose Automatically' Preference is enabled
- Studio no longer crashes when you send a stipple design to a Curio
- 'Other' is now at the bottom of the material categories list
- Weed Lines now cut with settings for Tool 1
- Languages are now changing appropriately on the Send panel

Library Fixes:
- Removed references to Cloud in the Barcode panel
- Updating the Library from 3.6 no longer shows an old logo
- Editing a folder via the properties window no longer causes a crash
- Studio no longer removes the last part of the file if multiple periods are used in the file name
- Scroll bar now appears when folders overflow the window
- Sign in window displays the correct error code when the Silhouette Library is down for maintenance
- Improved Library security
- Fixed a crash with certain Libraries/Design IDs
- 'Could not sync' message is now more obvious
- Update to Library cached image access
- Speed improvements to Library UI
- Color changes to improve readability in the Snapshot panel
- Library banner no longer appears if you click 'X' while an account is syncing
- Changed Right-Click 'Open' label to 'Use' for fonts
- Made the Font drop-down wider and longer
- There is now a warning when users are about to remove a user from the library
- Tooltips have been added for show/hide library icon and library status icons

Designer Edition & Above Fixes:
- Designs should no longer be able to be dragged into Locked Layers
- Crash no longer occurs when closing Studio while Layers or Nesting is open
- Resolved a crash relating to files that were saved while Trace By Colour was active
- Lowercase y no longer looks like a v on the Font Creation sheet
- It is now possible to adjust the color of crosshairs
- Pop-up now uses its own line colors, rather than the default line style
- Right-clicking with the Magnet Trace tool selected will now start undoing the Magnet Trace
- Exported SVGs with Compound Paths should now render correctly in other programs
- Studio no longer crashes when opening the glyph tab of the font creation panel or the text panel on Mac
- Media area is now correct when editing font glyphs
- Reduced the number of points created when saving a font
- Improved the time Studio took to save a Handwritten Font
- Opening another panel whilst editing a glyph no longer closes the glyph
- UI no longer flickers when upgrading/downgrading
- Nesting boundary is no longer incorrect when using registration marks
- Puzzle sliders no longer intermittently fail
- Using 'Puzzle Selected Shape' on an image fill no longer results in a tiled image
- Designs should no longer be able to be pasted into locked Layers
- Page no longer resets to 12 inches when adjusting size in Media Layout view
- Added units of measurement to 'Margin' and 'Nesting' sliders in Media Layout View
- Studio no longer crashes when turning on crosshairs after setting a default line color
- Shape no longer invisible when the angle of the Rhinestones is set to Perpendicular
- Rhinestone Spacing and Angle Offset sliders no longer snap back to default values when using the arrows

Silhouette Studio 4.4.247 (32-bit) 查看版本資訊

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

What's new in this version:

New Features:
- Smart Snapping - re-position shapes easily with smart snap guides! Press ‘S’ to toggle Smart Snapping
- Print Preview - see a preview of how your Print & Cut job will print before you send
- Transparent PNG Auto-Trace - drag PNG files with transparent backgrounds to create instant cut lines around the solid areas of your image

Standard Edition Fixes:
- Users can now change the page color / media color in preferences and toggle between this and white with (w) key
- Irregular white bars no longer displayed on launch
- The tooltip for Arc Tool is no longer 'Flexishapes'
- Corrected the swedish firmware update translation
- Fixed performance issue where memory usage increases after tracing then does not drop again after
- Fixed an issue causing a crash when swapping between active documents with Registration marks
- "Never" has been restored to the update preferences options
- Performing a copy & paste while in the Library will no longer copy & paste the selected object on the Design Area
- Removed unnecessary folders from Silhouette Studio installers
- Resolved a conflict with connecting a Cameo 4 Plus followed by a CE Lite-50
- Increased the minimum grid size to 0.04in/1mm
- Changing the grid color is now working as expected
- Updated Japanese translations
- Silhouette Studio no longer requires an install of Silhouette Link or Bonjour
- Open files now honor changes to the default save location Preference
- Removed duplicative 'Default' options from Preferences drop-downs
- Expanding a Preference drop-down no longer activates 'Apply' button
- Mouse Hover color in dark mode is no longer white
- Fixed an issue with the Lock Scale Ratio button preventing input above 20 inches
- Selecting multiple objects no longer toggles the aspect ratio lock
- 32-bit Release versions are no longer displaying the beta dialog upon startup
- Font installer is now verified
- Application window size is now remembered on start-up
- 'Restore factory defaults' no longer causes SS to crash
- General performance improvements
- Fixed log file cleanup
- Crash no longer occurs when trying to use Studio in a very small window
- OK button is now visible on the 'Device detected' pop-up on Windows 7 machines
- Added a right-click context menu to document tabs
- UI is now better aligned in Preferences
- Default blade choice in preferences is now working
- All options in the Display tab of preferences now work as expected
- Preference window buttons now fit Mac OS OK/Close conventions
- Reduced the size of the Preferences window
- Removed 'Silhouette Device Connections' options from Preferences
- ‘Restore Defaults’ is now correctly restoring changed settings in Preferences
- Tutorial text is easier to read when using the Grey theme

Design Fixes:
- Resizing the font in a sticky note will resize the note to fit
- Registration marks are the same initial size whether enabled by Page Setup or Default Preference
- Opening two files and switching between them now updates the mat in the Page Setup panel
- Page size is no longer set to custom when the values match Letter dimensions
- Registration Mark Length slider no longer misses a step when increasing size from the lowest value
- You can now hold shift while panning a pattern to constrain it to a vertical or horizontal direction
- It is possible to collapse panels again
- Compound paths are now showing correctly in the Glyph preview
- Image scale is now transferred correctly when using the eyedropper tool
- Warping no longer creates many more points than necessary on a filled shape
- Specify Dimensions section is now disabled when no object is selected
- Using the Move tool in the Quick Access Toolbar will no longer move objects when the distance is set to 0
- Moved Print Bleed to the 'Registration Marks' panel
- Restored the Custom option in the media size dropdown of Page Setup
- Page Setup sliders are now more accurate
- You can no longer snap to hidden guides
- The eraser cursor no longer appears to snap to grid
- Pressing 'i' to select Eyedropper no longer causes Cross-hairs to become frozen
- Applying a new default orientation now greys out the "Apply" button
- Text panel advanced options now work with Dark Theme
- Made Pixscan warning text more readable on the Dark Theme
- Added an 'X' to Sticky Note top-right corner when a Sticky Note is active
- Sticky Notes can now be edited once the file has been saved
- Added a 'Do you want to delete this Sticky Note' warning when a note with text is deleted
- Sticky Notes can now be re-scaled
- Created a Dynamic Toolbar for Sticky Notes
- Sticky Notes can no longer be resized to the point the text is pushed out of the note
- Pan Pattern icon now moves with a shape
- The Silhouette icon on the Toolbar is no longer pixelated
- Zoom is no longer reset when you switch from design to send
- Glyphs panel is no longer white in the Dark Theme
- Add a checkbox on page setup for ‘constrain media to cutting mat’
- Spanish translation for reg mark on/off checkboxes are now correct
- Updated Japanese text for certain materials
- Commercial font indicator is now displaying for commercial fonts
- Files saved in a .jpg/png format now respect DPI settings
- Increased size of the grid lines on the Cameo 4 Plus 15" cutting mat
- Improved the time it takes to change the line and fill properties of text objects
- Secondary grid lines can now be set to a different color
- Send Fixes
- A cut job with no cut lines will no longer send job startup data to the machine
- Have you mirrored?' pop-up now appears in Cut by Line/Fill/Color
- Improved message that is displayed when Action Not Found
- Incompatible material settings dialog no longer appears when sending with 2mm Kraft Blade
- String name no longer appears in context menu when multiple user-defined materials have been selected
- Cut border no longer becomes offset to reg marks when you have a Portrait cutter
- Users prompted whether they want to copy updated 'Cameo 4 Tool 1' settings to 'Default’ tab
- Smart Cut should no longer create unnecessary cuts for dashed lines
- Device name is now saved directly to the machine rather than to your preferences
- Layer field is no longer blank in Cut by Layer
- Removed Emboss as an action from Copy Paper
- Tutorial instructions in Send have been adjusted for Cameo 4
- Extended media-only cutting range to 60ft for machines which support the roll feeder
- Carriage now returns to origin after a Test Cut
- Updated the "Load Media" text when a Cameo 4 is connected
- Enabled advanced users to turn off Smart Cut loop generation in Material Settings
- Smart Cut can now raise blade when traversing loops
- Removed unusable 'cut' settings from CAMEO4 Tool 2 materials
- Renaming a duplicated material no longer crashes Studio
- Sketch Pen settings have been updated to improve the "Dragging lines" issue
- Stipple sorting has been re-added
- Barcode cuts are now more reliable
- Adjusted the Send Panel dropdown UI
- Cardstock, Plain and Cardstock, Textured Emboss settings have been corrected
- Updated Wood Paper settings
- Sketch action has been removed from the materials "Metal Sheets, Etching" and "Metal Sheets, Stippling"
- Default Punch force is now 7 and can be set higher if required
- Added Rotary Cut action to Crepe Paper
- Renamed 'Skim Force' to 'Loop Force' in Rotary cut settings
- Increased the maximum force to 23 for Rotary Blade
- Made the force 1 by default on all newly created custom materials for Tool 2
- Blade Depth dial for 3mm Kraft Blade now goes up to 30 in all areas
- Calibration distance adjustment lines are now printing
- Red and Blue circles have been removed from the Calibration sheet to avoid confusion
- Changed '(Auto) Tool Name' to 'Tool Name (Detected)' in the Tool dropdown
- Cameo 3 is no longer defaulting to ratchet blade when 'Choose Automatically' Preference is enabled
- Studio no longer crashes when you send a stipple design to a Curio
- 'Other' is now at the bottom of the material categories list
- Weed Lines now cut with settings for Tool 1
- Languages are now changing appropriately on the Send panel

Library Fixes:
- Removed references to Cloud in the Barcode panel
- Updating the Library from 3.6 no longer shows an old logo
- Editing a folder via the properties window no longer causes a crash
- Studio no longer removes the last part of the file if multiple periods are used in the file name
- Scroll bar now appears when folders overflow the window
- Sign in window displays the correct error code when the Silhouette Library is down for maintenance
- Improved Library security
- Fixed a crash with certain Libraries/Design IDs
- 'Could not sync' message is now more obvious
- Update to Library cached image access
- Speed improvements to Library UI
- Color changes to improve readability in the Snapshot panel
- Library banner no longer appears if you click 'X' while an account is syncing
- Changed Right-Click 'Open' label to 'Use' for fonts
- Made the Font drop-down wider and longer
- There is now a warning when users are about to remove a user from the library
- Tooltips have been added for show/hide library icon and library status icons

Designer Edition & Above Fixes:
- Designs should no longer be able to be dragged into Locked Layers
- Crash no longer occurs when closing Studio while Layers or Nesting is open
- Resolved a crash relating to files that were saved while Trace By Colour was active
- Lowercase y no longer looks like a v on the Font Creation sheet
- It is now possible to adjust the color of crosshairs
- Pop-up now uses its own line colors, rather than the default line style
- Right-clicking with the Magnet Trace tool selected will now start undoing the Magnet Trace
- Exported SVGs with Compound Paths should now render correctly in other programs
- Studio no longer crashes when opening the glyph tab of the font creation panel or the text panel on Mac
- Media area is now correct when editing font glyphs
- Reduced the number of points created when saving a font
- Improved the time Studio took to save a Handwritten Font
- Opening another panel whilst editing a glyph no longer closes the glyph
- UI no longer flickers when upgrading/downgrading
- Nesting boundary is no longer incorrect when using registration marks
- Puzzle sliders no longer intermittently fail
- Using 'Puzzle Selected Shape' on an image fill no longer results in a tiled image
- Designs should no longer be able to be pasted into locked Layers
- Page no longer resets to 12 inches when adjusting size in Media Layout view
- Added units of measurement to 'Margin' and 'Nesting' sliders in Media Layout View
- Studio no longer crashes when turning on crosshairs after setting a default line color
- Shape no longer invisible when the angle of the Rhinestones is set to Perpendicular
- Rhinestone Spacing and Angle Offset sliders no longer snap back to default values when using the arrows

Gradle 6.5.1 查看版本資訊

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

What's new in this version:

Fixed:
- Regression: Gradle 6.5 cached builds cause IllegalStateException
- Regression: Compile classpath configuration is not deterministic
- Regression: Class cast exception when GStrings are used with System.getProperty
- And a number of dependency graph resolution errors
- Class cast exception when GStrings are used with System.getProperty
- Compile classpath configuration is not deterministic
- BinaryStore Exception when using Spring Boot snapshots
- Gradle 6.5 cached builds cause IllegalStateException
- Graph serialization error with projects being replaced by binary dependencies
- Exception: Problems reading data from Binary store
- "Problems reading data from Binary store" on platforms

Adobe DNG Converter 12.3 查看版本資訊

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

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

What's new in this version:

Fixed:
- Core alignment resolution results keep changing
- Gradle 6.5-milestone-2: build crashes while generating a jar file
- Usage of project.fileTree for dependencies can lead to ordering issues
- Watching on Linux fails with `Received event for unknown watch descriptor 527`
- Amend version sorting to resolve differences on well known qualifiers
- The cache key for @CacheableRule is problematic when dependencies have no metadata
- failOnNonReproducibleResolution() crashes build
- Instant execution fails to serialize a property with finalize on read enabled and whose value is a mapped task output
- java.lang.ClassCastException when compiling groovy gradle source
- Binary store exception
- A "by ancestor" selection reason shows as "Unknown" in dependencyInsight output
- [scala] When the user specifies a non-default version of Zinc, compiler-bridge.jar from DEFAULT_ZINC_VERSION is still used
- Gradle dependency locking > inconsistent dependencies resolution with/without --write-locks option
- Resolving a dependency prevents its further use as a BOM
- ResolvedDependencyResult.getResolvedVariant() can return a null value
- Cannot delete project directory on Windows when watching the file system is enabled
- Slow Scala compilation times in 6.2.2 compared to 5.6.2
- Add a command-line flag to enable watching the file system for changes
- Test if VFS retention works when removing build directory manually
- Document watching the file system
- Support symlinks with VFS retention
- Bad performance when file trees are used as task outputs
- Add Generated annotation to kotlin-dsl generated files
- Add `stopDaemons()` to `GradleConnector` interface
- Provide a way to stop daemon via tooling api

Git for Windows 2.27.0 (64-bit) 查看版本資訊

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

What's new in this version:

New Features:
- Comes with Git v2.27.0
- Comes with OpenSSL v1.1.1g
- Comes with cURL v7.70.0
- Comes with subversion v1.13.0
- Comes with MSYS2 runtime (Git for Windows flavor) based on Cygwin 3.1.4
- The release notes have been made a bit more readable and are now linked from the Start Menu group
- The Frequently Asked Questions (FAQ) are now linked in a Start Menu item
- Comes with Git LFS v2.11.0
- Comes with OpenSSH v8.3p1

Bug Fixes:
- Some Perl packages (e.g. Net::SSLeay) that had been broken recently have been fixed
- Git for Windows and WSL Git now have the same idea of symbolic links' length, i.e. git status will no longer mark them as modified in Git for Windows after checking them out in WSL