Changeset 103


Ignore:
Timestamp:
Sep 23, 2016, 10:59:16 PM (8 years ago)
Author:
chronos
Message:
  • Fixed: Build under Linux.
  • Modified: Improved deb package.
Location:
trunk
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Install/deb/build-deb-amd64.sh

    r79 r103  
    66
    77cat >AcronymDecoder/DEBIAN/control << EOF
    8 Package: AcronymDecoder
    9 Version: 1.2.0
     8Package: acronym-decoder
     9Version: 1.3.0
    1010Section: custom
    1111Priority: optional
     
    1414Maintainer: Chronos <robie@centrum.cz>
    1515Description: A tool for quick searching of acronym or abbreviaton meaning
     16 Also allows to edit custom acronym or import acronyms from defined sources.
    1617HomePage: http://svn.zdechov.net/trac/AcronymDecoder
    1718EOF
     
    2728mkdir -p AcronymDecoder/usr/share/pixmaps
    2829cp ../../Images/Acronym\ Decoder.png AcronymDecoder/usr/share/pixmaps/AcronymDecoder.png
    29 dpkg-deb --build AcronymDecoder
     30mkdir -p AcronymDecoder/usr/share/doc/acronym-decoder
     31cp AcronymDecoder/debian/changelog AcronymDecoder/usr/share/doc/acronym-decoder/changelog
     32gzip -f --best AcronymDecoder/usr/share/doc/acronym-decoder/changelog
     33cp AcronymDecoder/debian/copyright AcronymDecoder/usr/share/doc/acronym-decoder/copyright
     34fakeroot dpkg-deb --build AcronymDecoder
  • trunk/Install/deb/build-deb-i386.sh

    r79 r103  
    66
    77cat >AcronymDecoder/DEBIAN/control << EOF
    8 Package: AcronymDecoder
    9 Version: 1.2.0
     8Package: acronym-decoder
     9Version: 1.3.0
    1010Section: custom
    1111Priority: optional
     
    1313Essential: no
    1414Maintainer: Chronos <robie@centrum.cz>
    15 Description: A tool for quick searching of acronym meaning
     15Description: A tool for quick searching of acronym or abbreviaton meaning
     16 Also allows to edit custom acronym or import acronyms from defined sources.
    1617HomePage: http://svn.zdechov.net/trac/AcronymDecoder
    1718EOF
     
    2728mkdir -p AcronymDecoder/usr/share/pixmaps
    2829cp ../../Images/Acronym\ Decoder.png AcronymDecoder/usr/share/pixmaps/AcronymDecoder.png
    29 dpkg-deb --build AcronymDecoder
     30mkdir -p AcronymDecoder/usr/share/doc/acronym-decoder
     31cp AcronymDecoder/debian/changelog AcronymDecoder/usr/share/doc/acronym-decoder/changelog
     32gzip -f --best AcronymDecoder/usr/share/doc/acronym-decoder/changelog
     33cp AcronymDecoder/debian/copyright AcronymDecoder/usr/share/doc/acronym-decoder/copyright
     34fakeroot dpkg-deb --build AcronymDecoder
     35
  • trunk/Packages/Common/UListViewSort.pas

    r100 r103  
    99uses
    1010  {$IFDEF Windows}Windows, CommCtrl, {$ENDIF}Classes, Graphics, ComCtrls, SysUtils,
    11   Controls, DateUtils, Dialogs, SpecializedList, Forms, Grids, StdCtrls, ExtCtrls;
     11  Controls, DateUtils, Dialogs, SpecializedList, Forms, Grids, StdCtrls, ExtCtrls,
     12  LclIntf, LMessages, LclType, LResources;
    1213
    1314type
     
    4748    procedure SetColumn(const Value: Integer);
    4849    procedure SetOrder(const Value: TSortOrder);
     50    {$IFDEF WINDOWS}
    4951    procedure NewListViewWindowProc(var AMsg: TMessage);
     52    {$ENDIF}
    5053  public
    5154    List: TListObject;
     
    180183{ TListViewSort }
    181184
     185{$IFDEF WINDOWS}
    182186procedure TListViewSort.NewListViewWindowProc(var AMsg: TMessage);
    183187var
    184188  vColWidth: Integer;
    185   vMsgNotify: TWMNotify absolute AMsg;
     189  vMsgNotify: TLMNotify absolute AMsg;
    186190  Code: Integer;
    187191begin
     
    213217  end;
    214218end;
     219{$ENDIF}
    215220
    216221procedure TListViewSort.DoColumnBeginResize(const AColIndex: Integer);
     
    261266  FListView.OnClick := ListViewClick;
    262267  FOldListViewWindowProc := FListView.WindowProc;
     268  {$IFDEF WINDOWS}
    263269  FListView.WindowProc := NewListViewWindowProc;
     270  {$ENDIF}
    264271end;
    265272
Note: See TracChangeset for help on using the changeset viewer.