Blisk 歷史版本列表 Page23

最新版本 Blisk 22.0.217.104

Blisk 歷史版本列表

Blisk 是一個基於鉻的瀏覽器,用於 web 開發的基本工具。將其用於同時構建和測試您的網站的桌面和移動版本。 Blisk 使開發人員能夠同時在多個設備上編碼,預覽其更改! 4 使用原因 Blisk:TIME SAVING以光速發展!現在您不需要一直刷新頁面,搜索並滾動到所需的元素。 Blisk 從根本上節省了開發和測試的時間。瀏覽器將使你的生產力達到 200%。所以你可以把你的工作快兩倍,把時... Blisk 軟體介紹


Office Timeline 3.62.9 查看版本資訊

更新時間:2019-02-25
更新細節:

ILSpy 4.0.1.4530 查看版本資訊

更新時間:2019-01-25
更新細節:

What's new in this version:

- ILSpy: Restore 3.x default value of "Show internal types and members" setting
- ILSpy.AddIn: Include BAML decompiler plugin in VSIX distribution

Saola Animate 2.5.0 查看版本資訊

更新時間:2019-01-22
更新細節:

What's new in this version:

New:
- 3D transformation for elements
- Drop shadow effect for elements
- Filer effects for elements, such as grayscale, blur..
- Clipping effects for elements: rectangle, circle or oval clipping
- Element alignments support flexible layout
- Browser compatibility warnings for features which some browsers don't support
- Russian language

Enhancements:
- Split Properties pane into multiple tabs
- Add more element grouping features: add to group, remove from group, layout group
- Improve auto-keyframe mode
- Improve Google font window
- Motion Path can work well with elements that have a flexible layout
- Allow changing z-orders and groups of elements in Timeline and Elements pane by mouse dragging
- Allow collapsing groups in Timeline
- Custom CSS now takes effect right inside the editor

Bugs Fixed:
- Crash error when selecting Close All from the right-click menu of any project tab
- Copying/pasting animations of multiple elements at once may not work correctly
- Some popup windows and menus are cut off on multi-monitor machines
- Some other minor bugs fixed

Blisk 10.1.262.144 查看版本資訊

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

What's new in this version:

Blisk supports:
- New phones: iPhone XR, iPhone XS, iPhone XS Max, OnePlus 5T

Blisk 10.0.261.275 查看版本資訊

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

What's new in this version:

- Starting in version 10 on all platforms, Blisk will use the newly improved emulation with the latest iOS and Android user interface. The devices start displaying the bottom toolbar. This release also has improved emulation performance - the devices load faster and resize better

New phones supported:
- iPhone 8 Plus, iPhone X, Galaxy S8, Galaxy S9, Galaxy S9 Plus, Pixel 2 XL

- Since version 10, we introduce the new feature: multi-device screenshot. Blisk can take a screenshot of multiple phones or tablets as a single image. With this feature, you can get the testing results even without switching across the devices. Blisk will generate the screenshot of all needed devices

Since version 10, we introduce the new feature:
- Image editor . Image editor enables annotating, drawing arrows and squares on top of any image

Caching:
- Since version 10, Blisk introduces a more convenient way to manage the cache. This option is available from device list -> Caching

Other features:
- TextArea and Select now support the autocomplete attribute
- Setting autocapitalize on a form element will apply to any child form fields, improving compatibility with Safari’s implementation of autocapitalize
- trimStart() and trimEnd() are now available as the standards-based way of trimming whitespace from strings

Saola Animate 2.0.3 查看版本資訊

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

Blisk 9.1.201.31 查看版本資訊

更新時間:2018-06-27
更新細節:

Blisk 9.0.177.201 查看版本資訊

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

What's new in this version:

Emulation update:
- Starting in version 9 on all platforms, Blisk will use the newly improved emulation. The devices start displaying website's loading state. This release also has improved emulation performance - the devices load faster and resize better

New devices:
Starting in version 9, Blisk supports:
- New phones: iPhone SE, iPhone 8 and iPhone 8 Plus, Google Pixel 2
- New tablets: iPad Pro 9.7", iPad Pro 10.5", iPad Pro 12.9"
- New desktops and laptops: iMac Retina 27", MacBook Pro Retina 15", MacBook Air 13", MacBook 12"

Device in real size:
- Since version 9, we introduce the new feature: previewing device in real size. With this feature, you can check how your web application, fonts, and elements look on the real device

Google tab:
- Since version 9, we introduce the new feature: Google tab . Google tab is an overlaying tab with Google search. You can use this tab to quickly find anything on the web without leaving your current tab

Google tab has two states:
- Google tab is ready to launch
- Google tab is launched. Click once again to disable it

Shortcuts:
- Blisk lets you perform most tasks directly from the keyboard. You can find the list of the default bindings (keyboard shortcuts) below. Note: you cannot change the existing shortcuts

New error reports:
- Since version 9, Blisk displays error reports in the overlay over device and desktop. Device overlay displays device errors and desktop overlay displays desktop errors

Chromium 65 with new APIs and technologies:
Since version 9, Blisk starts supporting latest APIs and technologies with Chromium 65:
- Network Information API provides actual network performance metrics from the client. Using these network quality signals, you can tailor content to the network. For example, on very slow connections, you could improve page load performance by serving a reduced version. To simplify your application logic, the API returns the measured network performance in terms of how it would compare to a cellular connection. For example, connected to a super fast fiber connection, the API would report 4G.
- console.log(navigator.connection.effectiveType);
- > 4G
- OpenType Variable Fonts Traditionally, one font contained only a single instance of a font family, for example, one weight or one stretch. If you wanted regular, bold and italic, you’d need to include three separate fonts, increasing the weight of your page. An OpenType variable font is the equivalent of multiple individual fonts that can be compactly packaged within a single font file. By adjusting the font-variation-settings CSS property, stretch, style, weight and more, can easily be adjusted, providing an infinite number of stylistic variations. Those three fonts can now be combined into a single, compact file.
- .heading {
- font-family: "Avenir Next Variable";
- font-size: 48px;
- font-variation-settings: 'wght' 700, 'wdth' 75;
- .content {
- font-family: "Avenir Next Variable";
- font-size: 24px;
- font-variation-settings: 'wght' 400;
- Media capture from DOM elements You can now live-capture content into a MediaStream directly from HTMLMediaElements like audio and video, with the Media Capture from DOM Elements API. After invoking captureStream() on an HTML media element, the streamed content can be manipulated, processed, sent remotely or recorded. Imagine using web audio to create your own equalizer or vocoder. Or stream the content to a remote site using WebRTC. The possibilities are almost endless.
- CSS Paint API. CSS Paint API allows you to programmatically generate an image whenever a CSS property expects an image. Properties like background-image or border-image are usually used with url() to load an image file or with CSS built-in functions like linear-gradient(). Instead of using those, you can now use paint(myPainter) to reference a paint worklet.

Server Timing API. The new Server Timing API allows your server to pass timing information to the browser; giving you a better picture of your overall performance. You can track as many metrics as you want: database read times, start-up time, or whatever is important to you, by adding a Server-Timing header to your response:
- 'Server-Timing': 'su=42;"Start-up",db-read=142;"Database Read"'
- display: contents. The new CSS display: contents property is pretty slick! When added to a container element, any children take its place in the DOM, and it essentially disappears

Blisk 8.0.201.218 查看版本資訊

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

Blisk 7.0.244.188 查看版本資訊

更新時間:2017-11-27
更新細節: