Maxthon 歷史舊版本 Page17

最新版本 Maxthon 7.1.7.8000

Maxthon 歷史版本列表

Maxthon Windows 瀏覽器使用獨特的,創新的雙核心設計,同時使用 Webkit 和三叉戟。快速高效的雙核設計可快速可靠地顯示所有網頁。憑藉其第一個 HTML 5 支持和“開箱即用”功能, Maxthon 用於 PC 脫機安裝程序的瀏覽器可以讓用戶輕鬆地在不同的設備和平台之間共享和發送文件,它們代表了下一個網頁瀏覽時代,利用新技術和用戶體驗領先其中 Maxthon 是眾所周知的。它也代表... Maxthon 軟體介紹


Maxthon 5.2.1.3000 查看版本資訊

更新時間:2018-04-14
更新細節:

PhpStorm 2018.1.1 查看版本資訊

更新時間:2018-04-11
更新細節:

What's new in this version:

PhpStorm 2018.1.1 Build 181.4445.72

File-level suppression to PHP inspections:
- PhpStorm provides a lot of inspections to catch all sort of errors in your code, but it may occur that some particular code shouldn’t follow the standards set for the whole project. In previous PhpStorm versions, you were able to suppress a warning for a particular statement or declaration. PhpStorm 2018.1.1 brings the ability to suppress an inspection for the whole file: just add /**@noinspection <inspection_name> */ right after the first opening PHP tag or press ALT+Enter on the inspection warning and select Suppress for file in the submenu. You can also use /**@noinspection ALL */ to suppress all inspection for the file.

Required plugins for a project:
- Suppose you’ve found an essential plugin that would help a lot with developing your project (Symfony or PHP Annotations plugins are good examples of such plugins), and you want to make sure that everybody on your team is on the same page. Previously there was no way to let your colleagues know about the plugins without talking to them or writing the readme file. PhpStorm 2018.1.1 introduces Required plugins, which you can locate under Preferences | Build, Execution, Deployment | Required Plugins. You can specify the plugins and their exact versions as the project’s requirements. After you’ve set them, PhpStorm will notify if the required plugins are missing or need an update.

Go to Type action:
- You might have already used the Navigate | Type declaration action when working with JavaScript or when using our other IDEs. It lets you navigate to the type declaration from any expression, and now it is available in PHP, as well.

Notable bug fixes and features worth mentioning:
- Incorrect ‘find usages’ / refactoring of __constructor of parent class WI-19518
- Indexing of large files WI-41378
- Deployment: context menu is missing if no default server is selected WI-40826
- Docker-compose: output isn’t shown WI-41002
- Keystrokes lost during freezing IDEA-186636
- CommonJS: properties of function object returned by exported module not resolved WEB-24161
- DESC/DESCRIBE in read-only mode DBE-397


PhpStorm 2018.1 Build 181.4203.565

PHP Language:
- Inline function/method refactoring
- Refactor your code to functional style
- Configurable unchecked exceptions
- Goto Symbol navigation improvements
- Hierarchy checks for class aliases

Testing:
- Creating class from test
- Codeception: code coverage
- Better @covers support
- Gutter icons for running tests

HTTP Client:
- Assertions support
- Simplified first start


PhpStorm 2017.3.6 Build 173.4674.46
Bug fixes and features:
- PhpStorm v2017.3.4 & Codeception v2.4.0 incompatibility WI-40950


PhpStorm 2017.3.5 Build 173.4674.45
- Notable bug fixes and features worth mentioning
- Fixed: Built-in SSH: does not support strong security ciphers – Cannot negotiate, proposals do not match IDEA-140196
- PhpStorm v2017.3.4 & Codeception v2.4.0 incompatibility WI-40950
- Fixed: Multiple “Updating indices” bg tasks after external file system changes IDEA-123287
- Fixed: Autocomplete too fast and leads to errors when inputting a number DBE-4965
- Fixed: Hide MySQL Collations & Schemas DBE-5557
- Fixed: Database Console name in Files have turned into guids DBE-5904


PhpStorm 2017.3.4 Build 173.4548.32
Fixed:
- Allow UI scale exceed 2x
- Multiple “Updating indices” bg tasks after external file system changes
- Evaluate window: cannot TAB from expression into results tree


PhpStorm 2017.3.3 Build 173.4301.34

REST Client: Auto-formatting of responses:
- In this build, we’ve implemented one of the new REST client’s most voted features: auto-formatting of request results. PhpStorm analyses Content-Type and formats the response accordingly. If type detection has failed for some reason, you can still choose between JSON, HTML and XML formatting manually. To see the original response, you can select the View as Text formatting type

Highlighting call-site in case of pass-by-reference:
- PHP 7.3 may introduce “Explicit call-site pass-by-reference” (RFC) that will allow prepending of a call-site argument with &. This should help to understand the code and notice possible unexpected changes of a variable. It’s still a year till the 7.3 release, but why wait?
- In this build, we’ve extended parameter hints with pass-by-reference visualization that will help you find a function or a method call that has reference declaration in a parameter. The new parameter hints will be shown for all arguments that are actually passed by reference. Please share your feedback about the new feature!

Notable bug fixes and features worth mentioning:
- Fixed: Short syntax array destructuring does not allow skipping values: WI-34517
- Fixed: Unhandled exception: doesn’t analyze “new MyClass” (constructor) expression: WI-37946
- Fixed: Broken “Change to” spelling quickfix in the Commit dialog: WI-39142
- PHP New Class now saves previously selected template: WI-39427
- Fixed: “Can’t run 32-bit version on Windows”: JRE-590
- Fixed: All run configurations lost after upgrade to 2017.3: IDEA-182966
- Fixed: Tool Window docking issue IDEA-149061
- Fixed: FETCH ALL IN returns error org.postgresql.jdbc4.Jdbc4ResultSet: DBE-2465
- Fixed: DataGrip does not recognize Redshift’s WITH NO SCHEMA BINDING clause: DBE-5404


PhpStorm 2017.3.2 Build 173.4127.29
Notable bug fixes and features worth mentioning:
- Unhandled exception shouldn’t be reported for tests with @expectedException
- Improved discoverability of Recursive Search in Find Window


PhpStorm 2017.3.1 Build 173.3942.32
- Support custom templates variables in ‘new class’ dialog
- Fix “Structure view is always collapsed”
- Fix Tool Window docking issue
- Fix “Unable to update issue state from Open Task dialog”


PhpStorm 2017.3 Build 173.3757.138
- Brand new editor-based REST client. With the new REST client, all the powers of the PhpStorm code editor are now available for your REST requests.
- Significant performance improvements. Typing latency in very complex PHP files has decreased significantly. We've examined typing latency in the mPDF main file, which is a 38k-line-long mix of PHP, JS, and HTML, and it is down by 75% in PhpStorm 2017.3!
- New inspections for exception handling. Three new inspection Unhandled exception, Redundant @throws and Redundant catch clause with corresponding Quick Fixes will help you take exceptions under your control!
- Test generation improvements. Now you can create Codespec and PhpSpec classes and create test methods!
- Improved Twig support. We've implemented language injections for Twig custom tags and named blocks as well as improved Twig formatting that can now handle complex structures.

Maxthon 5.2.1.2000 查看版本資訊

更新時間:2018-04-11
更新細節:

What's new in this version:

- Fixed the issue of set default browser abnormally on win 10
- Fixed the issue of log in failed when logging browser under special cases
- Fixed the issue of can't enter Chinese on search box when using Baidu Input Method
- Fixed the issue of it displayed abnormally when clicking print preview on Amazon refund page
- Fixed the issue of Maxthon blog displayed abnormally when visiting

Maxthon 5.2.1.1000 查看版本資訊

更新時間:2018-04-03
更新細節:

Maxthon 5.1.7.2000 查看版本資訊

更新時間:2018-03-19
更新細節:

Maxthon 5.1.6.3000 查看版本資訊

更新時間:2018-02-13
更新細節:

What's new in this version:

- Fixed the issue of the selected status not correct on drop down list which in note edition page route
- Fixed the issue of new note is in wrong place after switching the catalog in note edition page
- Fixed the issue of favorites became disordered after import the favorites from Maxnote
- Fixed the issue of browser won’t start automatically if users select install abp extension during installation process

Maxthon 5.1.6.2000 查看版本資訊

更新時間:2018-02-07
更新細節:

What's new in this version:

- Fixed the issue of the panel’s page didn’t close when fast close and open the type of the panel extension in toolbar entrance.
- Fixed the issue of when selected the favorites type for "selected content" and then switch the tab, the "selected content" page and "Non-Url favorite tool bar"
- Fixed the issue of the downloader will continue to download for a period of time when download process displayed 100%
- Fixed the issue of the website which core has been locked will display "Lock" icon on menu in hover only and it shouldn’t display when not on hover
- Fixed the issue of there are no responses when clicking the back button on Non-Url favorite tool bar under special cases
- Fixed the issue of click search result on result page in Favorite extension and it can’t open the result page normally
- Fixed the issue of pop-up window of sharing displayed abnormal when stretching the sidebar Fixed the issue of there are no responses when right right click on any images to save after opening Maxnote with Ctrl+G

Maxthon 5.1.6.1000 查看版本資訊

更新時間:2018-01-30
更新細節:

Maxthon 5.1.5.3000 查看版本資訊

更新時間:2018-01-16
更新細節:

What's new in this version:

- This update fixed the following issues
-Fixed the issue of some websites stucked because of adblock filtering rules
-Fixed the issue of switch core available in new tab under special cases
-Fixed the issue of auto-fill enabled on retro mode under special cases
-Fixed the issue of can’t copy and paste picture on Maxnote
-Fixed the issue of there are no responses after changing and saving the article width in read mode under special cases
-Fixed the issue of the favorites became disordered after importing html under special cases
-Fixed the issue of some favorite icons displayed abnormal under certain resolutions in Win10 system
-Fixed the issue of error display when opening favorites bar with Ctrl+B

Maxthon 5.1.5.2000 查看版本資訊

更新時間:2018-01-04
更新細節:

What's new in this version:

- Added popular words recommendation on search box
- Improved the data importing feature experience when upgrading MX4 to MX5
- Optimized the experience on Maxnote
- Fixed the issue of there's no text reminder when the mouse is suspended on sidebar's favorite and note button
- Fixed the issue of sidebar did not display after installation or upgraded browser
- Fixed the issue of there's no responses when entering read mode
- Fixed the issue of there's no responses on all types filter feature on Maxnote main interface
- Fixed the issue of Maxnote main interface's folder directory display different
- Fixed the issue of uninstall programs still show the the old version number and name after upgrading the browser
- Fixed the issue of can't auto-fill account info on Adobe website
- Fixed the issue of the content does not highlighted after searching on Maxnote
- Fixed the issue of right-click and edit directory folder on Maxnote's folder, it still displayed the old title
- Fixed the issue of identify location in folder's detail is wrong after searching in folder
- Fixed the issue of there's no note title after creating a new note under special cases