KBMMW 4.84.00 发布
kbmMW is a portable, highly scalable, high end application server and
enterprise architecture integration (EAI) development framework for
Win32, ..Net and Linux with clients residing on Win32, .Net, Linux,
Unix, Mainframes, Minis, Embedded and many other places.
It is currently used as the backbone in hundreds of central systems, in
hospitals, courts, private, industries, offshore industry, finance,
telecom, governements, schools, laboratories, rentals, culture
institutions, FDA approved medical devices, military and more. 4.84.00 September 6 2015 Important notes (changes that may break existing code)
======================================================
* Removed kbmMWMurmurHash3 from kbmMWGlobal.pas. New stuff
=========
- Added support for RAD Studio 10 Seattle and Delphi 10 Seattle.
- Added LZ4 compression support.
- Added JPEG compression support via TurboJPEG via the new
units kbmMWJPEG and kbmMWJPEGDefs.
Installer includes optimized precompiled Win32, Win64 and
Android libJpeg DLL/.so libraries.
- Added support for DirectX11 for Remote Desktop Server.
- Added multimonitor support (max 8 monitors) in Remote Desktop.
- Added clipboard sharing in Remote Desktop.
- Added 4 bit and 8 bit grayscale view modes to Remote Desktop.
- Added auto detect compression modes in Remote Desktop.
Some of them are called "xxxFullScreen" and will attempt non
tiled compression, which may be preferable if running for
example video in full screen for best non tearing
appearance.
- Performance optimized Remote Desktop including tile based
texture detection compression, better thread handling and
more.
- Added FireMonkey Remote Desktop client component and limited
demo app which runs on NextGen.
- Added PassedTimeDiffUS to TkbmMWTiming. Works as PassedTimeUS
except it returns passed time in uS.
- Added kbmMWHashMurmur3.pas, kbmMWHashFNV1A.pas and
kbmMWHashXX.pas units for 3 different high performance
hash algorithms.
- Enabled ZIPPED stream support for NextGen.
- Added mwmqoPurgeOnCongestion to TkbmMWMessageQueueOption
which will clear messages below a certain priority from the
messagequeue when congestion is detected.
- Added mwmqoPurgeAllPrioritiesOnCongestion to
TkbmMWMessageQueueOption which will clear messages of all
priorities from the messagequeue when congestion is detected.
- Added Purge method to TkbmMWCustomMessageQueue and all
descendants (memory and file). Removes messages from the
queue optionally based on priority leaving only N messages. Changes/minor additions
=======================
- Dropped PNG compression mode in Remote Desktop.
- Dropped Huffman compression mode in Remote Desktop.
- Removed kbmMWMurmurHash3 from kbmMWGlobal.pas.
- Deprecated kbmMWHashString32 and kbmMWHashString64. Instead
use kbmMWHashFMV1A32 or kbmMWHashFMV1A64.
- Added Options:TUniDataSetOptions to UniDAC adapter.
- Modified UniDAC adapter to convert field types:
ftOraBlob->ftBlob, ftOraclob->ftWideMemo, ftDateTime->ftDate.
- Improved performance in HTTPGetContents in
TkbmMWHTTPTransportStreamHelper.
- Dropped DirectX9 screen capture support in Remote Desktop.
- Updated .Net kbmMWSpider with user suggestions. Fixes
=====
- Fixed compilation/runtime issues for IOS64.
- Fixed kbmMWString2Variant to return local time in variant if
a datetime value was given, instead of UTC time.
- Fixed potential TkbmMWMemoryStream issues in mobile and 64
bit code.
- Fixed Unicode memo issues in UniDAC adapter.
- Fixed Android compilation issues.
- Fixed issue when dynamically modifying path in OnFileAccess
in file service.
- Fixed object marshalling for NextGen.
- Fixed resetting timezone when setting
TkbmMWDateTime.ISO8601DateTime given only a date.
- Fixed initializing timezone offset to 0 when creating empty
TkbmMWDateTime.
- Fixed FIB adapter when moving blob/memo data.
KBMMW 4.84.00 发布的更多相关文章
- kbmmw 5.05.00 发布
新年前最后几天,kbmmw 发布了新版本,增加一大波功能.we are happy to announce v5.05.50 of our popular middleware for Delphi ...
- KbmMW 4.30.00 发布
今天早上,KbmMW发布了4.30.00 版,这个版本开始支持XE4 的WIN/WIN64/OSX. 暂时不支持ios开发,同时加强了通过JSON 的对象序列化.还有就是解决了我提交的几个有关 汉字处 ...
- KBMMW 4.92.00 发布
We are happy to announce the release of kbmMW Professional and Enterprise Edition. Yet again kbmMW c ...
- KBMMW 4.90.00 发布
kbmMW is a portable, highly scalable, high end application server andenterprise architecture integra ...
- KBMMW 4.83.00 发布
新版本又来了,端午节都不让大家过好:) 这次终于支持ios 64了,不用我再手工改了. Components4Developers is a company established in 1999 w ...
- KBMMW 4.82.00 发布
作者最近加紧了更新进度,赞一个. 时间都去哪儿了? 还没好好看4.81, 新版就来了. 这个版本主要是增强日志管理,已经强大到替换delphi 本身的异常处理了. We are happy to an ...
- KBMMW 4.80.00 发布
一大波更新来了. 4.80.00 March 30 2015 Important notes (changes that may break existing code) ======= ...
- KBMMW 4.70.00 发布
We are happy to announce the release of kbmMW v. 4.70.00 Professional and Enterprise Edition. kbmMW ...
- kbmmw 5.10.00 发布
We are happy to announce v5.10.00 of the most complete development add on for Delphi and C++Builder ...
随机推荐
- 一个范围的两个数进行数位的累加,实现对两个数num1和num2的数位和相加
对一个范围的两个数进行数位的累加,例如有两个数 15,19则 他们的数位和应该为: 1+5+1+6+1+7+1+8+1+9,结果为40. 测试说明 样例1 输入:1519 输出: 40 以下是不同方法 ...
- 188. Best Time to Buy and Sell Stock IV (Array; DP)
Say you have an array for which the ith element is the price of a given stock on day i. Design an al ...
- fragment 与activity通信 Bundle 序列化数据 Serializable
1.fragment简单套用(静态调用): 新建一个fragment,其xml文件如下: <LinearLayout xmlns:android="http://schemas.and ...
- queue模拟
BlockingQueue:顾名思义,首先它是一个队列,并且支持阻塞的机制,阻塞的放入和得到数据.我们要实现LinkedBlockingQueue下面两个简单的方法put和take. put(anOb ...
- Maven学习笔记(十二)-maven打包之resource配置
版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.csdn.net/u011781521/article/details/79052725 一.简介 构建Maven项目的 ...
- 设置TextFiled输入长度限制
#pragma mark - 显示超过11位不让输入 - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange: ...
- docker搭建lnmp(一)
因为安装过程中涉及到一些修改配置文件的步骤,由于刚尝试不太会,所以这里都是通过安装好后,进入容器修改配置,最后退出重启容器. 目录结构 docker ├── mysql │ └── dockerf ...
- go语言path包和filepath包的学习与使用
path包的使用 package main; import ( "fmt" "path" ) //go语言path包的学习 func main() { //返回 ...
- Three.js 对模型多个动画切换展示(fbx)
来源 :https://blog.csdn.net/qq_30100043/article/details/80087471 简介 上一节本想直接了结动画这一章.最后一想,没有做过模型动画切换的案例. ...
- 当时钟事件声明为过程变量 让system.threading.timer时钟失效
这个项目的小模块就是画label 控件到tablepayoutpanel表单 之中, 中间用到了时钟,事件(带返回值的),哈希表 .由于时钟定义在 form1的启动构造函数中导致了form1,启动完毕 ...