Zoner Photo Studio X 歷史版本列表 Page17

最新版本 Zoner Photo Studio X 19.2309.2.506

Zoner Photo Studio X 歷史版本列表

Zoner Photo Studio X 將幫助你與你的照片。一切從下載到您的計算機編輯和共享,在一個地方。加入世界各地的數百萬用戶,為您的數碼照片獲得最佳工具! Zoner Photo Studio X 將幫助你的方式,同時也節省了你大量的時間花在處理你的數碼照片。下載,整理和編輯您的照片,並通過照片產品分享。嘗試 Zoner Photo Studio X 免費為 30 天沒有義務!Zoner ... Zoner Photo Studio X 軟體介紹


ONLYOFFICE 6.0.2.10 (64-bit) 查看版本資訊

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

What's new in this version:

- Fix problem with insert BMP image in doc

ONLYOFFICE 6.0.1.32 (64-bit) 查看版本資訊

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

StarUML 4.0.0 查看版本資訊

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

What's new in this version:

- SysML Support
- Additional UML Diagrams (Timing, Interaction Overview, Information Flow)
- MacBook Pro's Touch Bar Support
- Command Palette
- Tag Editor

Resolved:
- Tag editor #3
- Linux distributions for .deb and .rpm (no more AppImage) #172
- Support Macbook Touchbar #174
- Allow to extend maximum canvas size #178
- Open external url when double click on Hyperlink element #173
- Allow to register user TTF fonts #169
- Allow to change diagram background color #167
- Zooming too sensitive in Trackpad #108
- Drag-n-drop ports on Subsystem not working #168
- Can't autoresize ERDEntityView when suppressColumns is on true. #180
- Bump electron to latest version #179
- Add Command Palette #138
- Add frame by drag-and-drop a diagram from Explorer #198
- Lifeline need more top and bottom padding for placing Duration Constraints in Timing Diagram #186
- Entity, Boundary, Control's small icons are not shown in Explorer #192
- Add "Add Diagram" in context menu of diagram area #191
- Support Timing Diagram #51
- Support Interaction Overview Diagram #176
- Implement Duration and Time Constraints #52
- Support Information Flow Diagram #207
- Support Requirement Diagram (SysML) #182
- Support Block Definition Diagram (SysML) #183
- Support Internal Block Diagram (SysML) #184
- Support Parametric Diagram (SysML) #185

ONLYOFFICE 6.0.0.110 (64-bit) 查看版本資訊

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

ONLYOFFICE 5.6.4 (64-bit) 查看版本資訊

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

R for Windows 4.0.3 查看版本資訊

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

What's new in this version:

New features:
- On platforms using configure option --with-internal-tzcode, additional values "internal" and (on macOS only) "macOS" are accepted for the environment variable TZDIR. (See ?TZDIR.)
- On macOS, "macOS" is used by default if the system timezone database is a newer version than that in the R installation.
- When install.packages(type = "source") fails to find a package in a repository it mentions package versions which are excluded by their R version requirement and links to hints on why a package might not be found.
- The default value for options("timeout") can be set from enviromnent variable R_DEFAULT_INTERNET_TIMEOUT, still defaulting to 60 (seconds) if that is not set or invalid.
- This may be needed when child R processes are doing downloads, for example during the installation of source packages which download jars or other forms of data.

Link-time optimization on a unix-alike:
- There is now support for parallelized Link-Time Optimization (LTO) with GCC and for ‘thin’ LTO with clang via setting the LTO macro.
- There is support for setting a different LTO flag for the Fortran compiler, including to empty when mixing clang and gfortran (as on macOS). See file ‘config.site’.
- There is a new LTO_LD macro to set linker options for LTO compilation, for example to select an alternative linker or to parallelize thin LTO.

Deprecated and defunct:
- The LINPACK argument to chol.default(), chol2inv(), solve.default() and svd() has been defunct since R 3.1.0. Using it now gives a warning which will become an error in R 4.1.0.

Bug fixes:
- The code mitigating stack overflow with PCRE regexps on very long strings is enabled for PCRE2 < 10.30 also when JIT is enabled, since stack overflows have been seen in that case.
- Fix to correctly show the group labels in dotchart() (which where lost in the ylab improvement for R 4.0.0).
- addmargins(*, ..) now also works when fn() is a local function, thanks to bug report and patch PR#17124 from Alex Bertram.
- rank(x) and hence sort(x) now work when x is an object (as per is.object(x)) of type "raw" and provides a valid `[` method, e.g., for gmp::as.bigz(.) numbers.
- chisq.test(*, simulate.p.value=TRUE) and r2dtable() now work correctly for large table entries (in the millions). Reported by Sebastian Meyer and investigated by more helpers in PR#16184.
- Low-level socket read/write operations have been fixed to correctly signal communication errors. Previously, such errors could lead to a segfault due to invalid memory access. Reported and debuggedin PR#17850.
- quantile(x, pr) works more consistently for pr values slightly outside [0,1], thanks to Suharto Anggono's PR#17891.
- Further, quantile(x, prN, names=FALSE) now works even when prN contains NAs, thanks to Anggono's PR#17892. Ditto for ordered factors or Date objects when type = 1 or 3, thanks to PR#17899.
- Libcurl-based internet access, including curlGetHeaders(), was not respecting the "timeout" option. If this causes unanticipated timeouts, consider increasing the default by setting R_DEFAULT_INTERNET_TIMEOUT.
- as.Date() now also works with an initial "", thanks to Michael Chirico's PR#17909.
- isS3stdGeneric(f) now detects an S3 generic also when it it is trace()d, thanks to Gabe Becker's PR#17917.
- R_allocLD() has been fixed to return memory aligned for long double type PR#16534.
- fisher.test() no longer segfaults when called again after its internal stack has been exceeded PR#17904.
- Accessing a long vector represented by a compact integer sequence no longer segfaults (reported and debugged by Hugh Parsonage).
- duplicated() now works also for strings with multiple encodings inside a single vector PR#17809.
- phyper(11, 15, 0, 12, log.p=TRUE) no longer gives NaN; reported as PR#17271.
- Fix incorrect calculation in logLik.nls() PR#16100, patch from Sebastian Meyer.
- A very old bug could cause a segfault in model.matrix() when terms involved logical variables. Part of PR#17879.
- model.frame.default() allowed data = 1, leading to involuntary variable capture (rest of PR#17879).
- tar() no longer skips non-directory files, thanks to a patch by Sebastian Meyer, fixing the remaining part of PR#16716.

Zoner Photo Studio X 19.2009.2.274 查看版本資訊

更新時間:2020-09-19
更新細節:

What's new in this version:

Zoner Photo Studio X 19.2009.2.274
- Develop – Gradient Filter, Radial Filter, and Filter Brush – expanded to include Color Shift and Curve settings
- Develop – Presets – configurable preset intensity
- Variants – multiple versions of Develop edits for a single photo
- Develop – improvements to Tone Curve; new Luma curve
- Develop – blue-dot indicator on tools already used
- Develop – automatic line straightening
- Create – New options for photo products
- Create – Shopping Cart for orders of multiple products
- Other minor enhancements and fixes
- Complete overview of the new features: Autumn 2020 Update


Zoner Photo Studio X 19.2009.2.273
New:
- Develop – Gradient Filter, Radial Filter, and Filter Brush – expanded to include Color Shift and Curve settings
- Develop – Presets – configurable preset intensity
- Variants – multiple versions of Develop edits for a single photo
- Develop – improvements to Tone Curve; new Luma curve
- Develop – blue-dot indicator on tools already used
- Develop – automatic line straightening
- Create – New options for photo products
- Create – Shopping Cart for orders of multiple products
- Other minor enhancements and fixes
- Complete overview of the new features: Autumn 2020 Update


Zoner Photo Studio X 19.2009.2.272
New:
- Develop – Gradient Filter, Radial Filter, and Filter Brush – expanded to include Color Shift and Curve settings
- Develop – Presets – configurable preset intensity
- Variants – multiple versions of Develop edits for a single photo
- Develop – improvements to Tone Curve; new Luma curve
- Develop – blue-dot indicator on tools already used
- Develop – automatic line straightening
- Create – New options for photo products
- Create – Shopping Cart for orders of multiple products
- Other minor enhancements and fixes
- Complete overview of the new features: Autumn 2020 Update


Zoner Photo Studio X 19.2004.2.262
- Develop – Retouching tools – fixed a problem with retouching after using Align Horizon
- Develop – fixed a problem with DCP profiles and white balancing
- Manager – fixed a problem with photo groups
- Manager – Sort Pictures – fixed a problem with adjustments from Develop
- Filters – Specific Crop – fixed a problem with applying this function to multiple pictures
- Other minor fixes and improvements


Zoner Photo Studio X 19.2004.2.254
- Change log not available for this version


Zoner Photo Studio X 19.2004.2.250
- Change log not available for this version


Zoner Photo Studio X 19.2004.2.246
- This update fixes various problems


Zoner Photo Studio X 19.2004.2.245
- Change log not available for this version


Zoner Photo Studio X 19.2003.2.239
- Change log not available for this version


Zoner Photo Studio X 19.2003.2.232
- This update fixes various problems


Zoner Photo Studio X 19.2003.2.228
- Change log not available for this version


Zoner Photo Studio X 19.2003.2.225
Develop:
– Color Shift – completely reworked; added Advanced Mode
- Split Toning – new tool for quickly toning a a picture – overall, or in lights and shadows separately
- Quick Preview – new option for setting preview quality to speed up editing
- Anonymize – new feature for automatic license plate automatic detection

- Catalog – various optimizations for faster work with files and faster thumbnailing
- Other minor enhancements and error fixes
- Complete overview of the new features: 2020 Spring Update


Zoner Photo Studio X 19.1909.2.204
- Manager: Multi-page Documents – fixed a problem that had been breaking integration for Ghostscript 9.28 and higher
- Create: Export to PDF – Fixed problem with saving PDF file descriptions
- Zonerama: fixed a problem that had been causing a server communication error
- Video: fixed a problem concerning video files with a shifted audio track
- Video: improved compatibility with certain video file formats
- Manager: Filter – fixed a problem with changing the filter settings


Zoner Photo Studio X 19.1909.2.198
- Fixed a problem that caused occasional crashes when closing the Import tab
- Fixed a problem with shifting times for certain types of track logs
- Fixed error that had occurred when showing the map for choosing GPS coordinates
- Fixed a problem with sending postcards
- Fixed a problem with the controls for text settings in newly created text boxes


Zoner Photo Studio X 19.1909.2.195
- Fixed various problems


Zoner Photo Studio X 19.1909.2.193
- Fixed various problems


Zoner Photo Studio X 19.1909.2.189
- Fixed various problems


Zoner Photo Studio X 19.1909.2.184
- Fixed various problems


Zoner Photo Studio X 19.1909.2.182
- Change log not available for this version


Zoner Photo Studio X 19.1909.2.181
- Export: more configurable and finishes faster
- Catalog: option of 1:1 previews for RAW files
- Manager: faster photo rating
- Create: Collage – new template options
- Create: Calendar – new weekly and desk calendars
- Develop: Annotations – a new tool for adding text and objects
- Minor improvements and fixes


Zoner Photo Studio X 19.1904.2.175
- Change log not available for this version

Zoner Photo Studio X 19.2009.2.273 查看版本資訊

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

What's new in this version:

Zoner Photo Studio X 19.2009.2.273
New:
- Develop – Gradient Filter, Radial Filter, and Filter Brush – expanded to include Color Shift and Curve settings
- Develop – Presets – configurable preset intensity
- Variants – multiple versions of Develop edits for a single photo
- Develop – improvements to Tone Curve; new Luma curve
- Develop – blue-dot indicator on tools already used
- Develop – automatic line straightening
- Create – New options for photo products
- Create – Shopping Cart for orders of multiple products
- Other minor enhancements and fixes
- Complete overview of the new features: Autumn 2020 Update


Zoner Photo Studio X 19.2009.2.272
New:
- Develop – Gradient Filter, Radial Filter, and Filter Brush – expanded to include Color Shift and Curve settings
- Develop – Presets – configurable preset intensity
- Variants – multiple versions of Develop edits for a single photo
- Develop – improvements to Tone Curve; new Luma curve
- Develop – blue-dot indicator on tools already used
- Develop – automatic line straightening
- Create – New options for photo products
- Create – Shopping Cart for orders of multiple products
- Other minor enhancements and fixes
- Complete overview of the new features: Autumn 2020 Update


Zoner Photo Studio X 19.2004.2.262
- Develop – Retouching tools – fixed a problem with retouching after using Align Horizon
- Develop – fixed a problem with DCP profiles and white balancing
- Manager – fixed a problem with photo groups
- Manager – Sort Pictures – fixed a problem with adjustments from Develop
- Filters – Specific Crop – fixed a problem with applying this function to multiple pictures
- Other minor fixes and improvements


Zoner Photo Studio X 19.2004.2.254
- Change log not available for this version


Zoner Photo Studio X 19.2004.2.250
- Change log not available for this version


Zoner Photo Studio X 19.2004.2.246
- This update fixes various problems


Zoner Photo Studio X 19.2004.2.245
- Change log not available for this version


Zoner Photo Studio X 19.2003.2.239
- Change log not available for this version


Zoner Photo Studio X 19.2003.2.232
- This update fixes various problems


Zoner Photo Studio X 19.2003.2.228
- Change log not available for this version


Zoner Photo Studio X 19.2003.2.225
Develop:
– Color Shift – completely reworked; added Advanced Mode
- Split Toning – new tool for quickly toning a a picture – overall, or in lights and shadows separately
- Quick Preview – new option for setting preview quality to speed up editing
- Anonymize – new feature for automatic license plate automatic detection

- Catalog – various optimizations for faster work with files and faster thumbnailing
- Other minor enhancements and error fixes
- Complete overview of the new features: 2020 Spring Update


Zoner Photo Studio X 19.1909.2.204
- Manager: Multi-page Documents – fixed a problem that had been breaking integration for Ghostscript 9.28 and higher
- Create: Export to PDF – Fixed problem with saving PDF file descriptions
- Zonerama: fixed a problem that had been causing a server communication error
- Video: fixed a problem concerning video files with a shifted audio track
- Video: improved compatibility with certain video file formats
- Manager: Filter – fixed a problem with changing the filter settings


Zoner Photo Studio X 19.1909.2.198
- Fixed a problem that caused occasional crashes when closing the Import tab
- Fixed a problem with shifting times for certain types of track logs
- Fixed error that had occurred when showing the map for choosing GPS coordinates
- Fixed a problem with sending postcards
- Fixed a problem with the controls for text settings in newly created text boxes


Zoner Photo Studio X 19.1909.2.195
- Fixed various problems


Zoner Photo Studio X 19.1909.2.193
- Fixed various problems


Zoner Photo Studio X 19.1909.2.189
- Fixed various problems


Zoner Photo Studio X 19.1909.2.184
- Fixed various problems


Zoner Photo Studio X 19.1909.2.182
- Change log not available for this version


Zoner Photo Studio X 19.1909.2.181
- Export: more configurable and finishes faster
- Catalog: option of 1:1 previews for RAW files
- Manager: faster photo rating
- Create: Collage – new template options
- Create: Calendar – new weekly and desk calendars
- Develop: Annotations – a new tool for adding text and objects
- Minor improvements and fixes


Zoner Photo Studio X 19.1904.2.175
- Change log not available for this version

Typora 0.9.9.96 (64-bit) 查看版本資訊

更新時間:2020-09-15
更新細節:

What's new in this version:

- Support code syntax Q
- Fix issues with PDF export on 3rd party themes
- Other small fix

Zoner Photo Studio X 19.2009.2.272 查看版本資訊

更新時間:2020-09-15
更新細節:

What's new in this version:

Zoner Photo Studio X 19.2009.2.272
New:
- Develop – Gradient Filter, Radial Filter, and Filter Brush – expanded to include Color Shift and Curve settings
- Develop – Presets – configurable preset intensity
- Variants – multiple versions of Develop edits for a single photo
- Develop – improvements to Tone Curve; new Luma curve
- Develop – blue-dot indicator on tools already used
- Develop – automatic line straightening
- Create – New options for photo products
- Create – Shopping Cart for orders of multiple products
- Other minor enhancements and fixes
- Complete overview of the new features: Autumn 2020 Update


Zoner Photo Studio X 19.2004.2.262
- Develop – Retouching tools – fixed a problem with retouching after using Align Horizon
- Develop – fixed a problem with DCP profiles and white balancing
- Manager – fixed a problem with photo groups
- Manager – Sort Pictures – fixed a problem with adjustments from Develop
- Filters – Specific Crop – fixed a problem with applying this function to multiple pictures
- Other minor fixes and improvements


Zoner Photo Studio X 19.2004.2.254
- Change log not available for this version


Zoner Photo Studio X 19.2004.2.250
- Change log not available for this version


Zoner Photo Studio X 19.2004.2.246
- This update fixes various problems


Zoner Photo Studio X 19.2004.2.245
- Change log not available for this version


Zoner Photo Studio X 19.2003.2.239
- Change log not available for this version


Zoner Photo Studio X 19.2003.2.232
- This update fixes various problems


Zoner Photo Studio X 19.2003.2.228
- Change log not available for this version


Zoner Photo Studio X 19.2003.2.225
Develop:
– Color Shift – completely reworked; added Advanced Mode
- Split Toning – new tool for quickly toning a a picture – overall, or in lights and shadows separately
- Quick Preview – new option for setting preview quality to speed up editing
- Anonymize – new feature for automatic license plate automatic detection

- Catalog – various optimizations for faster work with files and faster thumbnailing
- Other minor enhancements and error fixes
- Complete overview of the new features: 2020 Spring Update


Zoner Photo Studio X 19.1909.2.204
- Manager: Multi-page Documents – fixed a problem that had been breaking integration for Ghostscript 9.28 and higher
- Create: Export to PDF – Fixed problem with saving PDF file descriptions
- Zonerama: fixed a problem that had been causing a server communication error
- Video: fixed a problem concerning video files with a shifted audio track
- Video: improved compatibility with certain video file formats
- Manager: Filter – fixed a problem with changing the filter settings


Zoner Photo Studio X 19.1909.2.198
- Fixed a problem that caused occasional crashes when closing the Import tab
- Fixed a problem with shifting times for certain types of track logs
- Fixed error that had occurred when showing the map for choosing GPS coordinates
- Fixed a problem with sending postcards
- Fixed a problem with the controls for text settings in newly created text boxes


Zoner Photo Studio X 19.1909.2.195
- Fixed various problems


Zoner Photo Studio X 19.1909.2.193
- Fixed various problems


Zoner Photo Studio X 19.1909.2.189
- Fixed various problems


Zoner Photo Studio X 19.1909.2.184
- Fixed various problems


Zoner Photo Studio X 19.1909.2.182
- Change log not available for this version


Zoner Photo Studio X 19.1909.2.181
- Export: more configurable and finishes faster
- Catalog: option of 1:1 previews for RAW files
- Manager: faster photo rating
- Create: Collage – new template options
- Create: Calendar – new weekly and desk calendars
- Develop: Annotations – a new tool for adding text and objects
- Minor improvements and fixes


Zoner Photo Studio X 19.1904.2.175
- Change log not available for this version