TinyButStrong Error in field [var.version...]: the key 'version' does not exist or is not set in VarRef. (VarRef seems refers to $GLOBALS) This message can be cancelled using parameter 'noerr'.

TinyButStrong Error in field [var.version...]: the key 'version' does not exist or is not set in VarRef. (VarRef seems refers to $GLOBALS) This message can be cancelled using parameter 'noerr'.
 Brave Browser 軟體歷史版本 Download Page284 :: 軟體兄弟

Brave Browser 歷史版本列表 Page284

最新版本 [var.version]

Brave Browser 歷史版本列表

新的 Brave 瀏覽器會自動阻止廣告和跟踪器,使其比當前瀏覽器更快,更安全。除了真實的內容,一切頁面的加載速度都是驚人的。最多 60%的網頁加載時間是由每次在您最喜歡的新聞網站上打開頁面時加載到各個位置的基礎廣告技術引起的。而這 20%是花費在加載正在嘗試了解更多關於你的東西上的時間. 選擇版本:Brave Browser 0.19.123 Dev(32 位)Brave Browser 0.19... Brave Browser 軟體介紹

Brave Browser (32-bit)Brave Browser (64-bit)


PDF Reducer Pro 3.1.11 查看版本資訊

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

What's new in this version:

PDF Reducer Pro  3.1.11
- Change log not available for this version


PDF Reducer Pro  3.1.10
- Improved speed
- Improved compression rate
- Improved MRC engine
- Battery of minor bug fixes

Wickr Me 5.43.8 查看版本資訊

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

DisplayCAL 3.8.9.2 查看版本資訊

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

What's new in this version:

Fixed:
- When previous instance was force quit, override leftover lockfile
- When using a custom profiling testchart with very few or no dark RGB gray patches, try to better maintain slope of existing points during shaper curve generation

MSI Kombustor 4.1.2.0 查看版本資訊

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

What's new in this version:

- fixed the launch of the PhysX 4 test: "(GL) msi-02 (PhysX4 GPU - hard)"
- fixed bugs in the Vulkan renderer
- the log file is now saved in user's temp folder (C:UsersUSER_NAMEAppDataLocalTemp)
- updated with latest GeeXLab SDK libs (v0.29.9.0)
- added support of NVIDIA Quadro RTX 3000/4000/5000 Mobile, GeForce GTX 1650 Mobile, GeForce GTX 1660 Ti Mobile, GeForce RTX 2060/2070/2080 Mobile, Quadro T1000/T2000 Mobile, and AMD Radeon RX 5500
- added support of NVIDIA GeForce GTX 1660 SUPER

Streamlabs OBS 0.19.4 查看版本資訊

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

Mullvad VPN 2019.10 查看版本資訊

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

What's new in this version:

Fixed:
- Fix improved WireGuard port selection

Windows:
- Register 'NSI' service as a dependency of the daemon service
- Set daemon service SID type as 'unrestricted'
- Properly tear down routes after disconnecting from WireGuard relays
- Fix bug that prohibited WireGuard from working over port 53

pgAdmin 4 4.16 查看版本資訊

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

R for Windows 3.6.2 查看版本資訊

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

What's new in this version:

New features:
- runmed(x, *) gains a new option na.action determining _how_ to handle NaN or NA in x
- dotchart() gains new options ann, xaxt, frame.plot and log

Installation on a unix-alike:
- Detection of the C stack direction has been moved from run-time to configure: this is safer with LTO builds and allows the detection to be overridden - see file config.site
- Source-code changes enable installation on platforms using gcc-fno-common (the expected default for gcc 10.x)

C-level facilities:
- installTrChar (which is nowadays is wrapped by installChar) is defined in Rinternals.h. (Neither are part of the API.)

Package installation:
- Header Rconfig.h contains the value of FC_LEN_T deduced at installation which is used by the prototypes in headers R_ext/BLAS.h and R_ext/Lapack.h but to avoid extensive breakage this is only exposed when USE_FC_LEN_T is defined
- If a package's C/C++ calls to BLAS/LAPACK allow for the 'hidden' arguments used by most Fortran compilers to pass the lengths of Fortran character arguments, define USE_FC_LEN_T and include Rconfig.h (possibly _via_ R.h) before including R_ext/BLAS.h or R_ext/Lapack.h
- A package with Fortran source code and perhaps C (but not C++) sources can request for its shared object/DLL to be linked by the Fortran compiler by including a line USE_FC_TO_LINK= in src/Makevars[.win] and using $(SHLIB_OPENMP_FFLAGS) as part of PKG_LIBS
- The known reason for doing so is a package which uses Fortran (only) OpenMP on a platform where the Fortran OpenMP runtime is incompatible with the C one (e.g. gfortran 9.x with clang)

Utilities:
- R CMD check has a new option to mitigate checks leaving files/directories in /tmp. See the 'R Internals' manual - this is part of --as-cran

Windows:
- The default standard for C++ in package installation is C++11 (as it has been on other platforms where available since R 3.6.0: the default toolchain on Windows was defaulting to C++98)

Deprecated and defunct:
- Support for specifying C++98 in package installation is deprecated
- Support in R CMD config for F77, FCPIFCPLAGS, CPP, CXXCPP and CXX98 and similar is deprecated. (CPP is found from the system make and may well not be set)
- Use $CC -E and $CXX -E instead of CPP and CXXCPP

Bug fixes:
- runmed(x, *) when x contains missing values now works consistently for both algorithm="Stuetzle" and "Turlach", and no longer segfaults for "Turlach", as reported by Hilmar Berger
- apply(diag(3), 2:3, mean) now gives a helpful error message
- dgamma(x, shape, log=TRUE) now longer overflows to Inf for shape < 1 and very small x, fixing PR#17577, reported by Jonathan Rougier
- Buffer overflow in building error messages fixed. Reported by Benjamin Tremblay
- options(str = .) is correctly initialized at package utils load time, now. A consequence is that str() in scripts now is more consistent to interactive use, e.g., when displaying function(**) argument lists
- as.numeric() now gives correct error message
- Printing ls.str() no longer wrongly shows "" in rare cases
- Auto-printing S4 objects no longer duplicates the object, for faster speed and reduced memory consumption. Reported by Aaron Lun
- pchisq(, , ncp=100) no longer takes practically forever in some cases. Hence ditto for corresponding qchisq() calls
- x %% L for finite x no longer returns NaN when L is infinite, nor suffers from cancellation for large finite L, thanks to Long Qu's
Analogously, x %/% L and L %/% x suffer less from cancellation and return values corresponding to limits for large L
- grepl(NA, *) now returns logical as documented
- options(warn=1e11) is an error now, instead of later leading to C stack overflow because of infinite recursion
- R_tryCatch no longer transfers control for all conditions. Reported and patch provided by Lionel Henry in PR#17617
- format(object.size(.), digits=NULL) now works, fixing PR#17628 reported by Jonathan Carroll
- get_all_vars(f, d) now also works for cases, e.g. where d contains a matrix. Reported by Simon Wood in 2009 and patch provided by Ben Bolker in PR#13624
- Additionally, it now also works when some variables are data frames, fixing PR#14905, reported by Patrick Breheny
- barplot() could get spacings wrong if there were exactly two bars PR#15522. Patch by Michael Chirico
- power.t.test() works in more cases when returning values of n smaller than 2
- dotchart(*, pch=., groups=.) now works better. Reported by Robert and confirmed by Nic Rochette in PR#16953
- canCoerce(obj, cl) no longer assumes length(class(obj)) == 1
- plot.formula(*, subset = *) now also works in a boundary case reported by Robert Schlicht (TU Dresden)
- readBin() and writeBin() of a rawConnection() now also work inlarge cases

Surfer 17.1 查看版本資訊

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

What's new in this version:

Surfer 17.1
- Crash when changing properties
- Grid Data: Variogram graphic Direction rotates wrong way
- Defaults: Grid Data defaults set to Current Session (should be Always Reset)
- Crash closing Surfer immediately after it starts
- Crash when Grid Data: gridding with Local Polynomial with No Search


Surfer 17.0
New features and improvements:
- 3D Axes Grid lines
- 3D Axes Ticks and Labels
- 3D Axes Titles
- 3D PDF export
- 3D View: 3D axes
- 3D View: report XYZ coordinates
- 3D View: report XYZ coordinates: display in the status bar
- 3D View: Improve status bar XYZ performance
- Add Cross Validation page to Grid Data wizard
- Adjust PM line spacing when computer text Scale is increased
- Allow multiple identical actions on messages (ex: two URL actions)
- Attribute Table: define Type for columns (numeric, string, etc)
- Change the options labels for hiding of announcement and update notifications
- Copy cell transforms to new cells and have relative cell references
- File Defaults: Map Scale Bar: sbCylceSp and sbLabInc should be Always reset
- Grid Data - Support Cross Variograms in Variogram modeling page
- Grid Data wizard: option to skip Options/Variogram/Cross Validation pages
- Grid Data: add new grid back as map layer
- Grid Data: add preview image of data distribution
- Grid Data: Add Variogram Modeling page to Grid Data wizard
- Grid Data: Blank a grid file during gridding, using any vector format
- Grid Data: Dataset drop downs: increase number of files
- Grid Data: Kriging Advanced Options: Add AutoFit button for variogram components
- Grid Data: redesign/update dialog with new layout
- Grid Data: Save/Load gridding parameters
- Grid Data: save/load parameters: don't revert to default if change parameters
- Grid Data: Variogram surface: Weight renamed to Count
- Gridding: Co-kriging
- In-app Messaging
- Points, Polylines, Polygons: display and edit XY (and Z if any) coordinates in the Property Manager
- Rename "Auto recover save interval"
- S17: Update Welcome dialog tips
- Transform: relative cell references should use all rows for number of rows by default
- Variograms: Use industry standard term "partial sill" instead of "scale"
- Variograms: Use industry standard term "range" instead of "length"
- VRML Export (.WRL file format)

WordPress 5.1.4 查看版本資訊

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