Lazarus中文社区

 找回密码
 立即注册(注册审核可向QQ群索取)

QQ登录

只需一步,快速开始

Lazarus IDE and 组件 下载地址版权申明
查看: 7684|回复: 3

Lazarus 1.0.10 发布啦

[复制链接]

该用户从未签到

发表于 2013-6-13 16:49:50 | 显示全部楼层 |阅读模式
本帖最后由 qqqqq 于 2013-6-13 16:52 编辑

This is a bug fix release, built with the fpc 2.6.2.
The previous release 1.0.8 was built with 2.6.2 too, while release 1.0.6 was built with 2.6.0.

Here is the list of changes for Lazarus and Free Pascal:
http://wiki.lazarus.freepascal.o ... ch#Fixes_for_1.0.10
http://wiki.lazarus.freepascal.org/User_Changes_2.6.2

The release is available for download at SourceForge:
http://sourceforge.net/projects/lazarus/files/

Choose your CPU, OS, distro and then the "Lazarus 1.0.10" directory.

回复

使用道具 举报

  • TA的每日心情

    2021-8-18 08:54
  • 签到天数: 1421 天

    [LV.10]以坛为家III

    发表于 2013-6-14 22:54:51 | 显示全部楼层
    这个和那个1.1版本的有啥区别?
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2013-6-16 10:09:12 | 显示全部楼层
    先翻译一个2.6.2的修改说明,机器翻译加人工 哈~~
    ==================================
    User Changes 2.6.2
    用户的变化2.6.2

    Contents [hide]
    目录[隐藏]

    1 About this page
    关于这一页

    2 All systems
    2所有系统

    2.1 Language changes
    2.1语言的变化

    2.1.1 Anonymous inherited calls
    2.1.1匿名继承调用

    2.1.2 Overload modifier must be present in the interface
    2.1.2重载修饰符在接口中必须存在

    2.2 Unit changes
    2.2单元的变化

    2.2.1 Several methods of TDataset changes signature (TRecordBuffer)
    2.2.1 TDataSet的更改签名的几种方法(TRecordBuffer)

    2.2.2 DLLParam changed from Longint into PtrInt
    2.2.2 DLLParam从LongInt的改变成PtrInt

    2.2.3 Some symbols in unit Unix and Unixutils have been deprecated
    2.2.3在Unix单元和Unixutils的一些符号已被弃用

    2.2.4 TStrings.DelimitedText behavior changed (unit Classes)
    2.2.4 TStrings.DelimitedText行为改变(单元classes)

    2.2.5 fcl-image TTiffIDF renamed to TTiffIFD
    2.2.5 FCL-image 单元的TTiffIDF改名到TTiffIFD

    2.2.6 unit libc issues a deprecated warning
    2.2.6单元的libc发出一个过时的警告

    3 Other
    3其他

    3.1 UPX support has been removed
    3.1 UPX支持已被删除

    4 See also
    4参见
    -----------
    About this page
    关于这一页
    Below you can find a list of intentional changes since the previous release that can change the behaviour of previously working code, along with why these changes were performed and how you can adapt your code if you are affected by them. The list of new features can be found here.
    下面你可以找到人为改变,因为以前的版本中,可以改变以前的工作代码的行为,随着执行这些更改了为什么以及如何可以适应你的代码,如果你受他们的列表。的新功能列表可以在这里找到。
    -------------
    All systems
    所有系统
    -----------------
    Language changes
    语言的变化
    -------------
    Anonymous inherited calls
    匿名继承调用

    Old behaviour: An anonymous inherited call could call through to any method in a parent class that accepted arguments compatible to the parameters of the current method.
    原先的行为:一个匿名继承调用可以通过调用父类中的任何方法接受参数兼容当前方法的参数。

    New behaviour: An anonymous inherited call is guaranteed to always call through to the method in a parent class that was overridden by the current one.
    新行为:一个匿名继承呼叫保证总是调用覆盖当前的父类中的方法。

    Example: See http://svn.freepascal.org/svn/fpc/trunk/tests/tbs/tb0577.pp. In previous FPC versions, the inherited call in tc3.test would call through to tc2.test(b: byte; l: longint = 1234);. Now it calls through to tc.test.
    例如:见http://svn.freepascal.org/svn/fpc/trunk/tests/tbs/tb0577.pp。继承呼叫tc3.test以前FPC版本,将通过调用到tc2.test(b: byte; l: longint = 1234);. ;现在,它调用到tc.test的。

    Reason: Conform to the FPC documentation, Delphi-compatibility.
    原因:顺应到FPC的文档,Delphi的兼容性。

    Remedy: If you wish the compiler to decide which method to call based on the specified parameters, use a fully specified inherited call expression such as inherited test(b).
    补救措施:如果你希望编译器根据指定的参数决定调用哪个方法,使用指定完整的继承调用表达式,如继承测试(B)。
    ---------------------
    Overload modifier must be present in the interface
    重载修饰符必须存在于接口

    Old behaviour: It was possible to declare a function/procedure/method as overload only in the implementation.
    旧行为:这是可能的声明一个函数/过程/方法,只有在执行重载。

    New behaviour: If an overload directive is used, it must also appear in the interface.
    新行为:如果过载指令时,也必须出现在接口上。

    Reason: The old mechanism could cause hard to find problems (depending on whether or not the implementation was already parsed, the compiler would treat the routine as if it were declared with/without overload), it could cause unwanted unit recompilations due to interface crc changes, and Delphi compatibility.
    原因:旧机制的问题(取决于是否已经被解析执行,编译器会处理例程,如果它被宣布为有/无重载)可能会导致很难找到,可能会导致不必要的单元重新编译由于接口CRC变化,和Delphi的兼容性。

    Remedy: Make sure that the overload modifier is present both in the interface and in the implementation if you use it.
    补救措施:确保重载修饰符是目前无论是在Interface和实现,如果你使用它。

    Unit changes
    单元变化
    ----------------------
    Several methods of TDataset changes signature (TRecordBuffer)
    TDataSet的更改签名(TRecordBuffer)的几种方法

    Old behaviour: Several (virtual) methods of TDataset have parameters of type "pchar", which are often called "buffer".
    旧行为:TDataSet中有几个(虚拟)的方法参数类型为“PCHAR”,这通常被称为“缓冲”。

    New behaviour: The pchar type has been changed to TRecordBuffer. Currently this type is still an alias for p(ansi)char, but in time it will be changed to pbyte for the 2.7.1/2.8.0 branch, which is D2009+ compatible.
    新行为:PCHAR类型已更改为TRecordBuffer的。目前这种类型的仍是P(ANSI)字符的别名,但假以时日,它将会改变PBYTE 2.7.1/2.8.0分支,这是D2009 +兼容。

    Reason: Preparation for Delphi 2009+ compatibility and improving of general typing. In Delphi 2009+ (and fully compatible FPC modes in the future) pchar is not pointer to byte anymore. This change will be merged back to 2.6(.2), but with TRecordBuffer=pchar.
    原因:Delphi2009+兼容性以及改善模版类型。在Delphi 2009 +(FPC模式在未来完全兼容)PCHAR是不是字节指针了。这种变化将合并为2.6(0.2),但现在TRecordBuffer = PCHAR。

    Remedy: Change the relevant virtual methods to use TRecordBuffer for buffer parameters. Define TRecordBuffer=pansichar to keep older Delphis and FPCs working. In places where a buffer is typecasted, don't use pchar but the symbol TRecordbuffer.
    补救措施:更改相关的虚方法,使用TRecordBuffer缓冲参数。定义TRecordBuffer = pansichar,保持老DELPHIS和FPC。在一个缓冲区typecasted地方,不要使用PChar类型但??符号TRecordbuffer的。
    -------------------------------
    DLLParam changed from Longint into PtrInt
    DLLParam从LongInt的改变到PtrInt

    Old behaviour: DLLParam was of type Longint even on Win64.
    旧行为:DLLParam即使在Win64类型的Longint。

    New behaviour: DLLParam is now of type PtrInt so also on 64 Bit systems.
    新的行为:DLLParam是现在的类型PtrInt在64位系统上也是如此。

    Reason: Prevent data loss, match the declaration in the Windows headers.
    原因:防止数据丢失,符合Windows头文件中的声明。

    Remedy: Change the declaration of the procedures used as dll hook to take a PtrInt parameter instead of Longint.
    补救措施:变更的申报程序作为DLL挂钩采取PtrInt的参数,而不是Longint型。

    Some symbols in unit Unix and Unixutils have been deprecated
    一些在单位Unix和Unixutils的符号已经被废弃

    Old behaviour: No deprecated warning for unixutils.getfs (several variants), unix.fpsystem(shortstring version only), Unix.MS_ constants and unix.tpipe. unix.statfs
    旧的行为:没有过时的警告的unixutils.getfs(几个变种),unix.fpsystem(ShortString短版本),Unix.MS_常数和unix.tpipe的。 unix.statfs

    New behaviour: The compiler will emit a deprecated warning for these symbols. In future versions these may be removed.
    新行为:编译器将发出警告这些符号过时。在未来的版本中,这些可以被去除。

    Reason: getfs has been replaced by a wholly cross-platform function sysutils.getfilehandle long ago. fpsystem(shortstring) was a leftover of the 1.0.x->2.0.x migration (the ansistring version remains supported), the MS_ constants are for an msync call that is not supported by FPC, and thus have been unused and unchecked for over a decade and might date to kernel 1.x times, tpipe was the 1.0.x alias of baseunix.TFildes, the unit where the (fp)pipe was moved to in during 2.0 series. Unix.statfs is an overloaded version that wasn't properly renamed to fp* prefix when the others were renamed in 2.4.0
    原因:已取代getfs不久前由跨平台的全功能sysutils.getfilehandle。 fpsystem(ShortString)老的1.0.x版> 2.0.x的迁移(AnsiString类型版本仍然支持),MS_常数MSYNC调用不支持FPC,因此一直未使用和unchecked超过十年,可能迄今为止内核1.x的时间,TPIPE的1.0.x的别名,所在单元(FP)pipe被转移到在2.0系列baseunix.TFildes。 Unix.statfs是一个重载的版本不正确时更名FP *前缀改名2.4.0

    Remedy: Use the new variants(sysutils.getfilehandle,fpsystem(ansistring),baseunix.tfildes). In the case of the MS_ constants, obtain current values for the constants from the same place where you got the code that uses them.
    补救措施:使用新的的的变种(sysutils.getfilehandle,fpsystem(AnsiString类型),baseunix.tfildes)。 MS_常数的情况下,获得来自同一个地方,在那里你得到了使用它们的代码常数的电流值。

    TStrings.DelimitedText behavior changed (unit Classes)
    TStrings.DelimitedText行为改变(单位类)

    Old behaviour: If StrictDelim is true, TStrings.DelimitedText did not completely follow the SDF format specification (which is defined in Delphi help) at least in case of spaces (and presumably other low ASCII characters) in front and at the end of fields as well as quotes and line endings. Worse, if StrictDelimiter is true, and in the cases mentioned above, saving a TString .DelimitedText and loading that text in another TString lead to differences between the two. Note: StrictDelimiter is false by default.
    旧行为:如果StrictDelim是真实的,TStrings.DelimitedText没有完全遵循的SDF格式规范(Delphi帮助中所定义的)至少在前面,并在年底领域的空间(也可能是其他低ASCII字符)的情况下,报价和行尾。更糟糕的是,如果StrictDelimiter是真实的,在上述情况下,节省了TString DelimitedText加载该文本在另一个TString的领先优势扩大到两者之间的差异。注:StrictDelimiter默认为false。

    New behaviour: FPC follows Delphi behaviour.
    新行为:FPC如下德尔福行为。

    Reason: Consistency (writing out and reading in DelimitedText should result in the same strings), Delphi compatibility (following the SDF specification).
    原因:一致性(写作和阅读在DelimitedText应该导致相同的字符串),德尔福兼容性(自卫队规范)。

    Remedy: Review your existing code that reads or write DelimitedText; if necessary convert data or write converter code. See tests\webtbs\tw19610.pp for a detailed test.
    补救措施:检讨现有的代码读取或写DelimitedText;如果必要的数据转换,或写转换器的代码。进行了详细的测试,测试\ webtbs \ tw19610.pp。

    fcl-image TTiffIDF renamed to TTiffIFD
    FCL-Image TTiffIDF改名到TTiffIFD

    Old behaviour: The tiff helper class for the "image file directory" was misspelled TiffIDF (tiffcmn unit)
    旧行为:TIFF辅助类的“图像文件目录”被拼错TiffIDF的(tiffcmn单元)

    New behaviour: Now renamed to TTiffIFD
    新行为:现在更名为TTiffIFD

    Reason: Consistency, low usage
    原因:一致性,低使用率

    Remedy: Rename identifier as appropriate.
    补救措施:重新命名标识符(如适用)。

    unit libc issues a deprecated warning
    单元的libc发出弃用警告

    Old behaviour: While deprecated for years the libc unit didn't issue a deprecated warning
    旧行为:虽然废弃多年的libc单位没有发出一个过时的警告

    New behaviour: A deprecated warning is shown when unit libc is used, urging your to update.
    新行为:已弃用的警告时,会显示使用单位的libc,要求您更新。

    Reason: unit libc is a Kylix legacy unit, with limited portability
    原因:单位的libc的Kylix的遗留单元,有限的可移植性

    Remedy: Use proper FPC units as described in libc unit
    补救措施:使用适当的FPC单元中所描述的libc单位

    Other
    其他


    UPX support has been removed
    UPX支持已被删除

    Old behaviour: There was some leftover UPX (an executable packer) support in the FPC Makefiles, and DOS and Windows FPC releases included an UPX binary.
    旧的行为:有一些过时的UPX(可执行文件打包)在FPC的Makefile的支持,和DOS和Windows FPC版本的包括UPX二进制的。

    New behaviour: All removed.
    新行为:全部删除。

    Reason: Release binaries haven't been UPX'ed for a while. The size of the FPC executables is generally insignificant these days compared to the total installation size, and using UPX occasionally causes some minor annoyances (false positives from virus scanners, worse paging behaviour by the OS, incompatibilities with certain executable sections, ...)
    原因:发行二进制文件尚未UPX'ed的一段时间。 FPC可执行文件的大小一般是微不足道的,这些天总安装大小相比,使用UPX偶尔会造成一些轻微的烦恼(误报病毒扫描,更糟糕的操作系统分页行为,具有一定的可执行部分不兼容,...)

    Remedy: Download and install UPX yourself from its homepage and in general reevaluate the need for it.
    补救措施:从它的主页下载并安装UPX自己和一般需要重新评估。

    See also
    参见

    FPC New Features 2.6.2
    FPC新特点2.6.2


















    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2013-6-16 10:36:59 | 显示全部楼层
    下面发布一个 1.0.12 的修复 说明,部分人工润色版本 ,e文不好的童鞋可以看看
    ===========================================================

    Fixes for 1.0.12
    1.0.12修复
    ===================

    Merge requests
    合并请求
    ----------------
    Submitted by developer / committer
    开发者/提交者提交
    ---------
    Conflicts
    冲突
    -------------
    r41407, r41408, r41409 lcl: initialize PageControl.PageIndex in handle creation instead of loaded. Fix issue when setting TabVisible after control is loaded
    r41407,r41408,r41409 LCL:初始化PageControl.PageIndex的句柄在创建(create)事件,而不是loaded事件。修复的问题当设置TabVisible的控件在事件loaded里。

    r41414 lcl: properly initialize keys for sorted lookup controls. Issue 23619
    r41414 LCL:正确初始化排序查找控件的keys。第23619问题

    Submitted by others
    其他人提交的

    Merged revisions for 1.0.12
    1.0.12合并修订

    r41291 Qt: fixed LCLIntf.Frame3D. When FillBrush isn't filled then draw shaded box without brush (applies painter brush).issue #24445
    r41291 QT: 修复LCLIntf.Frame3D。然后绘制不填FillBrush时不用画刷(适用画家刷)。阴影框问题#24445

    r41475 Qt: fixed problem with TCustomPanel.Color, when panel is painted via Frame3d.Problem raised with r41291 while fixing #24445
    r41291 r41475 Qt: 修复的问题与TCustomPanel.Color,当面板通过Frame3d.Problem画时提出,而 修复#24445

    37377,r37351 SynEdit: Mouse Selection and scroll-by-wheel. Issue Issue 0022072, 0022090
    37377 r37351 SynEdit:鼠标选定和滚动轮。问题0022072,0022090

    r41717 SourceSynEdit: fix scrolling with top-info hint. Issue 0024505
    r41717 SourceSynEdit:修复顶部滚动信息提示。 0024505期

    r41502, r41510, r41572: lcl: reset hintwindow region after color change
    r41502,r41510,r41572:LCL:复位hintwindow地区的后颜色变化

    =============================================
    Fixes for 1.0.10 (Merged)
    修正1.0.10(合并)

    r40581        codetools        fpc source scores: unit fileinfo on target non wince, bug [24070]
    r40581  编码工具编码工具FPC源分数:单元FileInfo 不支持wince,错误[24070]

    r41481        codetools        removed old fpc 1.0 defines, biting 2.7.1 sources
    r41481  编码工具删除老FPC 1.0定义,从2.7.1源码合并过来。

    r40543        DBGrids        fix crash in PrepareCellHints when DataLink is not Active (issue [0024028]).
    r40543 DBGrids修复DataLink的崩溃PrepareCellHints时没有被激活(发出[0024028])。

    r41240        Debugger        utf8 content for event-log (warnings/OutputDebugString). Issue [24353]
    r41240  调试器UTF8事件日志的内容(警告/ OutputDebugString的)。 [24353期]

    r41233,?r41260,?r41265,?r41266,?r41270,?r41273,?r41275,?r41279,?r41293        Debugger        Improved shortstring detection. strings with utf8 content in locals and some in watches
    r41233,r41260,r41265,r41266,r41270,r41273,r41275,r41279,r41293调试改进ShortString短检测。当本地化和一些观察器utf8的内容串

    r41298        Debugger        more utf8 for strings in watches
    r41298 调试更utf8的字符串观察

    r38231        IDE        itmEditUndo\itmEditRedo is almost always Enabled, even when it is impossible to Undo\Redo in source Editor, issue [22633]
    r38231 IDE itmEditUndo \ itmEditRedo几乎始终处于启用状态,甚至当它是不可能撤消\重做源编辑,发行[22633]

    r39405        IDE        Autocheck radiobutton when you enter a value in the HeightEdit / WidthEdit, issue [23398]
    r39405 IDE 自动检查单选按钮,当你输入一个值在HeightEdit / WidthEdit的问题[23398]

    r40577        IDE        test compiler settings: show message when busy
    r40577 IDE 测试编译器设置:忙时显示消息

    r40628        IDE        fixed showing broken dependencies
    r40628  IDE 修复显示坏掉的依赖关系

    r40640        IDE        help for fpc messages: fixed crash when no help found, search for message file in compiler directories
    r40640  IDE FPC的消息的帮助:修复崩溃时,发现没有帮助,搜索消息文件在编译器目录

    r40730        IDE        project resource file version: do not set modifie is the same and initialize it after read
    r40730 IDE项目资源文件版本:不设置的modifie是相同的,并把它初始化后读

    r40803        IDE:        package editor: extend unit/include path: shorten paths that are not sub directories, bug [24272]
    r40803 IDE:包编辑:扩展单元/ include路径:缩短路径并不是子目录,错误[24272]

    r41130        IDE        remove & from key map resourcestrings
    r41130  IDE 删除键映射使用资源字符串。

    r41165        IDE        fixed caption Free Pascal in highlighter
    r41165  IDE 修复   Free Pascal 的 Caption 高亮.

    r41319        IDE        add example projects to recent menu only once
    r41319 IDE 例子项目添加到最近的菜单,限制一次


    r40636        IDEIntf        register TBoolPropertyEditor for WordBool, LongBool and QWordBool, needed since fpc 2.6.0
    r40636 IDEIntf寄存器TBoolPropertyEditor的,为WordBool,LongBool这QWordBool,必要的,因为FPC 2.6.0

    r40728        IDEIntf:        TCollectionPropertyEditor: fixed unselecting if owner is freed
    r40728 IDEIntf:TCollectionPropertyEditor:修复取消选择,如果owner被释放

    r41049        Installer, Win        add French translation. Patch by ChrisF. Issue [24171]
    r41049  安装,windows ,添加法语翻译。补丁作者ChrisF。 [24171期]

    r41057        Installer, Win        cleaned up OldInOtherFolder1 string as per ChrisF's comment in bug [24171]
    r41057 安装,windows 清理OldInOtherFolder1字符串作为 ChrisF 的注释错误[24171]

    r40562        LCL        gtk, fix LazReport designer sometimes presented as a thin vertical or horizontal band that runs from center of screen under gtk2/64-bit, related to issue [21634]
    r40562 LCL GTK,修复 LzaReport 设计器 有时有一道薄薄的垂直或水平运行的条条出现 ,当在 gtk2/64-bit 使用屏幕居中样式的时候 [21634]


    r40778        LCL        navFocusableButtons doesn't work in TDBNavigator, modified patch from éderson Cássio, issue [24191]
    r40778 LCL TDBNavigator组件的navFocusableButtons的不工作,埃德森卡西奥,修改补丁问题[24191]

    r41501        LCL        use UTF8Length instead of Length on calc dbgrid column field width, from Rumen Gyurov, issue [24491]
    r41501 LCL 使用UTF8Length代替length计算dbgrid的列字段宽度,Rumen Gyurov修复  问题[24491]

    r40758        LCL        fixed conditionals for default LCLWidgetType
    r40758 LCL 修复条件中默认LCLWidgetType的

    r41373        LCL        TTreeView: clear cache when adding node
    r41373 LCL TTreeView 增加节点时,清除缓存。


    r41411        LCL        prevent change in dbcombobox when autoedit is false. Issue [24207]
    r41411 LCL  防止dbcombobox变化当autoedit是false。 [24207期]

    r41453        LCL        TFilterComboBox: freenotification for ShellListView, bug [24512]
    r41453 LCL TFilterComboBox的:freenotification的为ShellListView,错误[24512]

    r41477        LCL gtk2        fixed AskUser,QuestionDlg escape key result
    r41477 LCL gtk2的 修复AskUser,QuestionDlg ESC键返回值

    r40900        LCL        MaskEdit: respect AutoSelect if control is masked. Issue [0024311]
    r40900 LCL MaskEdit:AutoSelect如果控件是masked(mask状态,autoselect依然有效)。发行[0024311]


    r40513        Qt        do not trigger scroll events while calling SetScrollInfo, fix issue 23815
    r40513  Qt  不触发滚动事件调用SetScrollInfo的同时,解决问题23815

    r40563        Qt        fixed default text color of QTabBar. issue [23985]
    r40563 Qt  修复的默认文本颜色QTabBar的。 [23985期]

    r40956        Qt        fixed determination of string content (RightToLeft vs. LeftToRight). issue #24340
    r40956 Qt   字符串内容(定额测定从右至左与值为LeftToRight的的)。问题#24340

    r40621,40622, 40625        Qt        fixes for buggy xfwm4 window manager under X11
    r40621,40622,40625 Qt  修复安装xfwm4马车的窗口管理器下X11

    r40993        Qt        formatting
    r40993 Qt   格式化

    r40995        Qt        fixed visibility of THintWindow class when virtual desktop is switched or application minimized.issue #24363
    r40995的Qt  修复能见度的THintWindow类,虚拟桌面切换或应用minimized.issue的#24363

    r41339        Qt        fixed bad behaviour of popup windows under metacity window manager.
    r41339 Qt   修复不良行为Metacity窗口管理器下的弹出窗口。


    r41346        Qt        fixed problems with modal and popup windows over modal windows with Mint's Marco window manager (Mate desktop)
    r41346的Qt 修复问题模态模态窗口和弹出窗口超过薄荷的Marco窗口管理器(伴侣桌面)

    r41378        Qt        fixed bug with AltGr key handling under windows.We are using winapi directly as workaround for bug in Qt library. issue [23808]
    r41378 Qt 修复AltGr键处理下windows.We的错误使用WINAPI直接作为Qt库中的bug的解决方法。 [23808期]

    r40764        Qt        implemented getKeyState for caps lock and numlock under x11 and win32 targets
    r40764的Qt Caps Lock和numlock的X11和Win32目标下实现的函数GetKeyState

    r41347        Qt        rework fixes for metacity like wm's. Now marco and gnome shell are mapped as metacity.
    r41347 Qt的返工修复的metacity像WM的。 Marco和GNOME壳映射的metacity。

    r40954        Qt        use QPolygonH to draw poly regions in FillRgn()
    r40954 Qt的使用QPolygonH绘制聚地区FillRgn()

    r41144        Qt        workaround for Qt lib bug (QStyle) where disabled button doesn't have activated disabled colors palette. issue [24413]
    r41144 QT的解决方法Qt库的错误QStyle中禁用的按钮不激活残疾人色调色板。 [24413期]

    r40723        ShellCtrls        declare property ViewStyle of TShellListView as "default vsReport" (issue [0024226]).
    r40723 ShellCtrls财产申报ViewStyle的TShellListView“默认vsReport”(发行[0024226])。

    r41220,r41222,r41228        SynEdit        Trim spaces - position only: Do not mark buffer as modified, if pressing space at EOL. Follow up revision 40680
    r41220,r41222,r41228 SynEdit微调空间 - 位置:不要缓冲标记为已修改,如果按下空格键在EOL。后续修订版40680

    r40545        SynEdit        Fixed gutter resizing. Issue [0023990]
    r40545 SynEdit 修复排水沟大小。发行[0023990]

    r40680        SynEdit        fixed trim-space (mode "position only") would corrupt text on certain undo. Issue [24101]
    r40680  SynEdit 修复调整空间(模式“位置”)会破坏文本。 [24101期]

    r41046        SynEdit        Fixed folding in "library" code. Issue [0024370]
    r41046的SynEdit 修复折叠在“库”代码。发行[0024370]

    r37854        SynEdit        Pas Highlighter: recognize {$IFOPT}
    r37854 SynEdit PAS高亮:支持{$IFOPT }

    r41047 SynEdit        Pas Highlighter: Completed the list of Ifdef, ifopt, elseif directives
    r41047 SynEdit PAS高亮完成的列表IFDEF IFOPT的,elseif的指令

    r41129        SynEdit        Fixed folding in "label" code. Issue [0024417]
    r41129 SynEdit 修复在“标签”代码折叠。发行[0024417]

    r41340        Translations        reverted Arabic translation to r37531 by request of Mazen Neifer (current Arabic translation maintainer). Reason is poor quality/machine translation, which makes hard to use translated IDE.
    r37531 r41340 翻译恢复阿拉伯语翻译要求:马赞Neifer(当前的阿拉伯语翻译的维护者)。原因是质量差/机器翻译,这使得很难使用翻译IDE。
    回复 支持 反对

    使用道具 举报

    *滑块验证:

    本版积分规则

    QQ|手机版|小黑屋|Lazarus中国|Lazarus中文社区 ( 鄂ICP备16006501号-1 )

    GMT+8, 2025-5-2 21:34 , Processed in 0.036934 second(s), 11 queries , Redis On.

    Powered by Discuz! X3.4

    Copyright © 2001-2021, Tencent Cloud.

    快速回复 返回顶部 返回列表