Changeset 120

Show
Ignore:
Timestamp:
Tue Jul 3 06:55:39 2007
Author:
mbutscher
Message:

branches/stable-1.8:

* Bug fixed: Setting Scintilla codepage fails on non-Unicode

wxPython (does not affect Windows binary)

Files:

Legend:

Unmodified
Added
Removed
Modified
  • branches/stable-1.8/WikidPadStarter.py

    r118 r120  
    4 4 os.stat_float_times(True)  
    5 5  
    6   VERSION_STRING = "wikidPad 1.8rc5"  
      6 VERSION_STRING = "wikidPad 1.8rc6"  
    6 6  
    7 7 if not hasattr(sys, 'frozen'):  
  • branches/stable-1.8/wikidpad_unicode.iss

    r118 r120  
    39 39 SolidCompression=true  
    40 40 AppName=WikidPad  
    41   AppVerName=WikidPad 1.8rc5  
      41 AppVerName=WikidPad 1.8rc6  
    41 41 DefaultDirName={pf}\WikidPad  
    42 42 DefaultGroupName=WikidPad  
    43 43 AppID={{22A83C29-58A8-4CAB-8EDC-918D74F8429E}  
    44 44 VersionInfoVersion=1.8  
    45   VersionInfoTextVersion=WikidPad 1.8rc5  
      45 VersionInfoTextVersion=WikidPad 1.8rc6  
    45 45 LicenseFile=C:\DATEN\Projekte\Wikidpad\Current\license.txt  
    46 46 AllowNoIcons=true  
    47 47 ShowLanguageDialog=yes  
    48 48 Compression=lzma/ultra  
    49   OutputBaseFilename=WikidPad-1.8rc5  
      49 OutputBaseFilename=WikidPad-1.8rc6  
    49 49 InternalCompressLevel=ultra  
    50 50 AppCopyright=© 2005-2007 Jason Horman, Michael Butscher, Gerhard Reitmayr  
  • branches/stable-1.8/lib/pwiki/WikiTxtCtrl.py

    r113 r120  
    522 522         default values by some operations  
    523 523         """  
    524           self.SetCodePage(wxSTC_CP_UTF8)  
      524         if isUnicode():  
      525             self.SetCodePage(wxSTC_CP_UTF8)  
    525 526         self.SetIndent(4)  
    526 527         self.SetTabIndents(True)