Audials One 歷史版本列表 Page12

最新版本 Audials One 2021.0.202.0

Audials One 歷史版本列表

Audials One 是最好的在大規模,快速,合法和免費的音樂檢索!只有 Audials One 可以監視成千上萬的電台,同時搜索互聯網上最好的音樂來源。這意味著它可以自動獲得所需的音樂,以最高的質量和驚人的速度,將其傳送到您的 PC 的硬盤,雲端或通過互聯網連接的移動設備上. 無線電台,音樂流,視頻剪輯而來自視頻流的電影則由 Audials One 記錄,並以最高質量保存為單個文件。這意味著您... Audials One 軟體介紹


pdfFactory 7.26 查看版本資訊

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

What's new in this version:

- performance improvements for documents that contain large bitmaps
- performance improvements when the Grayscale option is enabled

Gradle 6.4.1 查看版本資訊

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

What's new in this version:

Building, testing and running Java Modules:
- With this release, Gradle supports the Java Module System with everything you need to compile and execute tests for Java modules. You can also build Javadoc and run applications
- While there is some overlap with Gradle's dependency management features, Java Modules offer additional features like module boundaries that are enforced by the Java runtime

The only thing you need to configure is module path inference for the Java plugins:
- java {
- modularity.inferModulePath.set(true)
- Then you just need to make sure that you write a proper Java module by providing a module-info.java descriptor as part of your sources:
- src
- +-- main
- +-- java
- +-- module-info.java
- For more details, head over to the documentation on building modules, building modular applications and testing modules.
- Also feel free to explore the samples

Precompiled Groovy DSL script plugins:
- Script plugins are a convenient way to split up and organize a long build script, but they have some limitations and quirks. Kotlin DSL introduced precompiled script plugins that look like regular build scripts but have all of the advantages of binary plugins. They can:
- be published to a private repository or the Plugin Portal,
- be tested using TestKit,
- be applied using the plugins {} block,
- use the plugins {} block to apply other plugins
- Gradle now allows precompiled script plugins to be written using the Groovy DSL in addition to the Kotlin DSL
- For example, a Gradle script in buildSrc/src/main/groovy/my-plugin.gradle can be used as a plugin in the main project as plugins { id 'my-plugin' }
- Precompiled script plugins are covered in more depth in the user manual. There is also a sample available that demonstrates the feature in action

Single dependency lock file per project:
- Dependency locking is a mechanism for creating reproducible builds even when using dynamic dependency versions. This release adds an improved dependency locking file format that results in fewer lock files in most projects that use this feature. In addition, when using this format, the lock file name and location can be configured
- This format will become the default lock file format in Gradle 7.0. For now, it is required to opt-in to use it
- Take a look at the documentation for more information and how to enable the feature

Better dependency variant matching error messages:
- Gradle provides a powerful variant-aware dependency management engine
- This release introduces clearer variant matching error messages for the JVM ecosystem
- In previous releases, these error messages could be difficult to understand and sometimes lacked enough context to figure out what to do. Gradle 6.4 improves these error messages by making them more human-readable and introducing colors to the console to highlight problems.

Improvements to PMD code quality plugin:
- Incremental analysis is enabled by default
- As of Gradle 6.4, the PMD plugin uses incremental analysis by default. This can significantly reduce analysis time on subsequent builds.
- For builds relying on a version of PMD older than 6.0.0, you will need to explicitly disable incremental analysis.
- Specify number of violations required before the build fails
- The PMD plugin now lets you set the number of violations before the build fails. This can make it easier to introduce PMD into existing projects that may initially have many violations.
- If you wanted to fail the build if the number of violations is above 150, you can set maxFailures to 150.
- pmd {
- maxFailures = 150
- This was contributed by Matthew Duggan.
- Security warning about using DEBUG level logging
- Potentially sensitive information is logged when Gradle is executed with debug level logging, such as sensitive credentials, authentication tokens or internal repository URLs. Much of this logging occurs deep in components of the JVM and other libraries outside the control of Gradle. While debugging, this information may be inherently useful. However, this information can be unintentionally exposed when Gradle builds are executed on Continuous Integration services where build logs are publicly-accessible. See the recent update about the fixed Plugin Portal vulnerability for an example of this security risk.
- Gradle now warns users about the risks of using DEBUG level logging.
- We recommend plugin maintainers avoid logging sensitive information if possible, and if it's not possible, that all sensitive information be logged exclusively at the DEBUG log level.

Fixed issues:
2 issues have been fixed in Gradle 6.4.1.
[#13069] - Regression: Different daemons are used between IDE and CLI builds for the same project
[#13057] - Regression: Main-Class attribute always added to jar manifest when using application plugin

pdfFactory 7.25 查看版本資訊

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

What's new in this version:

- New: PDF files can now be saved as a sequence of individual single-page files. In the Save As dialog, select the “PDF pages” option from the “Save as type” list. (Pro only)
- Performance and file size improvements when creating complex PDF files
- Fixed a bug that sometimes caused incorrect PDF output when text was selected and deleted in the page display
- Fixed a bug that caused incorrect progress to be displayed when creatin PDF files that use Letterheads (Pro only)

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

What's new in this version:

- Mapping of Ivy files to variants should handle configuration level excludes
- Upgrade to native platform milestone for 6.4
- Investigate timeouts with file watching enabled
- Rename 'modularClasspathHandling' properties to 'modularity'
- In version constraints, the order of `prefer X` vs `strict Y` matters
- Perform module path derivation in Eclipse IDE sync
- Potential deadlock when using the worker API and not using the Gradle daemon
- Add module path support to CreateStartScripts tasks of application plugin
- Add modular classpath handling configuration to Java extension
- Document JPMS support
- Build service installed via init script closes prematurely when `:buildSrc` sub-build is finished
- Dependency ordering issue when upgrading to Guava 28.2-jre
- exclusiveContent API does not work with Kotlin Gradle DSL
- Configuring the Jar task's manifest gives an Incubating warning
- Register watchers for newly added file locations during the build
- Basic JPMS support for generating Javadoc
- Basic JPMS support for executing Java modules
- Basic JPMS support for testing Java modules
- GenerateModuleMetadata writes wrong file names in case of customized artifact publications.
- Basic JPMS support for compiling Java modules
- File change not recognized by VFS on Windows when entire watched directory is removed
- Improve the dependency lockfile format
- StackOverflowError in ManagedPropertyName.getDisplayName()
- Expose Repository MetadataSources
- ScalaCompile task does not respect all JavaForkOptions configuration
- java-library plugin makes impossible to have project dependency on Java9-modular kotlin project
- Add a method to specify Scalac plugins in ScalaCompile without breaking build cache
- [JPMS] Accessing resources when Java application run via JavaExec task
- Lockfile location/filename should be customizable
- Packaging test code in a separate JDK 9 module fails with IllegalArgumentException: superClassName is empty
-Java 9: Support Jigsaw modules in JavaExecAction
-Running tests against JDK 9 module causes accessibility issues
-Support setting Jigsaw module version in jar task
- Gradle 6.4-rc-1 triggers compileJava when project version is changed in multi-module project
- Cached component metadata rules leak memory
- Gradle 6.4-rc-1 breaks bootRun
- Traditional convention mappings do not work anymore for JavaExec.main
- Stack overflow in Gradle 6.4-rc-1, regression from 6.3
- Invalid equals breaks fix for cache memory leak
- Single lock file changes on generation without external change
- Potential race condition when task has a property whose value is derived from mapped dependency resolution results
- Race condition when a `Property` instance is used by multiple tasks and has a value derived from a dependency resolution result

Simplenote 1.16.0 查看版本資訊

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

pdfFactory 7.23 查看版本資訊

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

What's new in this version:

- various bug fixes when embedding and rendering fonts
- fixed a bug that caused overstruck text to be drawn an incorrect locations in the PDF file

Windows Terminal 2020 0.11.1191.0 查看版本資訊

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

Deezer Desktop 4.19.20 查看版本資訊

更新時間:2020-04-27
更新細節:

Arq Backup 6.2.10 查看版本資訊

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

What's new in this version:

Arq Backup 6.2.10
Fixed Issues:
- Fixed an issue which could cause a 'SQL logic error table backup_plans has no column named cpu_usage' error.


Arq Backup 6.2.9
New Features:
- Added a slider in backup plan options to control CPU usage.
- Added an option to select a specific folder as a destination when restoring files.

Fixed Issues:
- Fixed a layout issue which could cause the Delete button to disappear for some backups listed under "Storage Locations".
- Fixed an issue which could cause a 'mount point not found' error when restoring from a backup of a device that's not currently connected.
- Fixed an issue which could cause the screen to go blank when browsing backups of an SMB share.
- Fixed an issue which prevented setting the 'minutes after hour' of a backup plan's schedule to zero after it was changed to non-zero.


Arq Backup 6.2.5
- Encrypt the app password when saving it to file.


Arq Backup 6.2.4
Fixed Issues:
- Fixed layout issues when a storage location's name is very long.
- Disabled app debug logging.
- Defaulted agent logging to 'info' level.
- Fixed an issue that could cause Arq Agent to crash during backup.


Arq Backup 6.2.3
Changes:
- Reverted to path-style requests for S3 to work around bucket names that have '.' characters in them.
- Made text selectable in detail panes.

Fixed Issues:
- Fixed scrolling issue when browsing Arq 5 backups.
- Fixed an issue where a very long storage location name could cause display alignment issues in the list of backup plans.


Arq Backup 6.2.1
Changes:
- Removed feature for importing Arq 5 data into Arq 6 format. Arq 5 compatibility mode planned for end of June 2020.
- Cancel unfinished import activities and write a message to the activity log mentioning Arq 5 compatibility mode.


Arq Backup 6.1.15
Fixed Issues:
- Fixed 'specified cast is not valid' error when reading backup plans.
- Disabled Edit, Detach and Back Up Now buttons on unfinished importing backup plans.
- Show importing icon next to all backup plans that are being imported.


Arq Backup 6.1.14
- If import of Arq 5 data finds more than 10 missing data objects or any other error occurs, the user is asked to email [email protected] Pressing Cancel on the import activity removes the partially-imported backup plans. No Arq 5 data files are modified.


Arq Backup 6.1.13
Changes:
- Removed the option to import just configuration and no data. The only import option is to import all Arq 5 data and settings.
- Added a warning/explanation of the temporary limitations of importing Arq 5 data.


Fixed Issues:
- Added a workaround for backup plans with invalid data causing "specified cast is invalid errors" so that the main window continues loading other backup plans.
- Fixed an issue which could prevent scrolling of backup data when browsing other backups.


Arq Backup 6.1.9
- Fixed an issue which could cause "unique constraint" errors when backing up to Google Drive, Amazon Drive or B2.
- Improved the loading performance when expanding nodes of a file tree in the restore view.
- Changed the Arq 5 import function to abort after 50 errors, allowing for import of data even in the case of a few missing items.
- Fixed a crash that could occur during backup if Windows is unable to read the file's length.
- Fixed an issue that allowed names of storage locations to expand and cover the gear icon.

Arq Backup 6.1.8
Fixed Issues:
- Added support for importing Arq 5 backups that include archived folders.
- Allow 0 for a budget GB setting. (Arq always keeps the latest snapshot, so this allows for keeping only 1 snapshot at all times.)
- Automatically import lifetime license code from Arq 5 if it had one.


Arq Backup 6.1.3
Added Features:
- Display app version in Settings pane.

Fixed Issues:
- Fixed an issue that could cause the agent to crash when some types of removable drives are plugged in.
- Fixed an issue that could cause a permission error attempting to delete Arq's cache database during validation if a backup had just been performed.
- Fixed an issue that could cause not-found errors during validation on backup data imported from Arq 5.
- Fixed an issue that could cause some re-uploading of data for backup data imported from Arq 5.


Arq Backup 6.1.1
Fixed Issues:
- Fixed an issue where Arq used the wrong B2 ID when requesting a bucket listing.
- Fixed an issue where the "retain hours" setting wasn't being saved.
- Run the preflight script earlier in the backup process.


Arq Backup 6.1.0
Added Features:
- Added a Delete All Snapshots option in the select-snapshots view.

Fixed Issues:
- Fixed issues in importing packed objects from Arq 5 Glacier backups.
- Allow adopting a backup set that has data but no backup plan or snapshots (uses default backup plan settings).
- Write to activity log if the activity stops due to errors.


Arq Backup 6.0.226
- Fixed an issue which could cause errors when getting file listings from B2.


Arq Backup 6.0.225
- Fixed an issue in importing Arq 5 backups from a local-folder storage location which could lead to 'invalid folder path' error.
- When adding a B2 storage location, if your key pair doesn't have permission to list buckets, default to enter-bucket-only instead of showing an error.
- When adding an S3 storage location, if your key pair doesn't have permission to list buckets, default to enter-bucket-only instead of showing an error.
- Fixed an issue which could cause an 'Invalid cast from System.Int64 to Arq.Arq5StorageType' error when accessing some types of older backup data.


Arq Backup 6.0.222
- Fixed an issue where, if you import Glacier backups, then detach, then adopt, Arq reports a 'missing plan UUID' error.
- Changed Arq 5 import functions to not remove Arq 5 configuration files or delete any obsolete metadata after successful import. A separate feature will be added that deletes obsolete metadata at the user's discretion.
- Removed the Restart button from aborted Import activities.
- Fixed a scenario where during import of Arq 5 AWS mixed Standard and Glacier data, Glacier backup records could end up associated with the non-Glacier backup plan.
- Fixed an issue where unexpected/invalid JSON for a backup plan resulted in a 'Value cannot be null' error.
- Fixed a display issue when browsing other backups.


Arq for Windows Version 6.0.221
Major Release Arq 6:
- More power, more security, more storage savings.

Perfect backups:
- Arq uses Windows Volume Shadow Copy Service to create perfectly consistent backups of your files every time.
- If you're modifying your files as they're being backed up, it won't affect the backups.

More power:
- can run multiple backup jobs in parallel
- scans and uploads files in parallel for faster throughput
- only scans changed files/directories after the initial backup (uses filesystem events to detect changes on macOS and Windows)
- new data format which eliminates the need for reading metadata before browsing/downloading from backups.
- you can limit the scheduled backups to certain days of the week
- you can limit transfer rate to certain times of the day at certain days of the week
- powerful new rules for selecting which files and folders are included and excluded from backup
- time-based retention rules in addition to budget-based rules
- optionally keep deleted files in subsequent backups for easy locating of deleted files
- alerts when no backups have occurred for days

More secure:
- Set a password on Arq 6 to prevent others from opening Arq and deleting backups.
- Uses SHA256 for checksums instead of SHA1.

More storage savings:
- Arq 6 can back up to AWS Glacier Deep Archive. Store your backups there for $0.99/TB per month.
- Arq 6 can back up to Google Cloud Archive. Store your backups there for $1.230/TB per month with instant access to backups..

New Arq Premium subscription option:
- All the features of Arq 6 plus:
-> 1 TB storage included
-> simpler configuration
-> secure web access to your backups
-> $5.99/month (extra storage billed at $.00599/GB per month)

Even more features:
- All-new, modern user interface
- Disk device tracking instead of path-based — multiple external drives with the same name are treated as separate
- Faster object cleanup
- Faster validation
- Faster search
- Destination-agnostic, portable data format that's open and documented
- Progress bars showing percent complete
- Wake for backup
- More informative SMTP test results — full SMTP connection log when an error occurs
- Proper connection pooling for SMB and SFTP destinations with a configurable number of maximum threads — useful for SFTP storage locations that limit the number of simultaneous connections
- Optionally start a backup as soon as a volume is connected to the computer

Audials One 2020.2.31.0 查看版本資訊

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