Skip to content

Commit 38c6125

Browse files
committed
Website update to 0.9
Also fixed a typo in the Unicode demo
1 parent 1053089 commit 38c6125

File tree

4 files changed

+22
-8
lines changed

4 files changed

+22
-8
lines changed

docs/source/intro.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Introduction
1+
Introduction
22
============
33

44
.. highlight:: python
@@ -78,10 +78,10 @@ To put text back to Scintilla (so editor.something()), use .encode('utf8') from
7878
For example::
7979
8080
# define a unicode variable
81-
someUnicodeString = u'This häs fünny ünicode chäractêrs in it'
81+
someUnicodeString = u'This häs fünny ünicode chäractêrs in it'
8282
8383
# append the text to the current buffer - assuming the current buffer is set to utf8
84-
editor.addText(someUnicodeString.encode('utf8')
84+
editor.addText(someUnicodeString.encode('utf8'))
8585

8686
# grab the first line
8787
firstLine = editor.getLine(0)

www/changelog.shtml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
<!--#include virtual="header.inc" -->
22
<h3>Change log:</h3>
3+
4+
<br/>
5+
<b>0.9.0.0</b>
6+
<br/>
7+
<ul>
8+
<li>A massive amount of work on code cleanup, including many bug fixes and potential bug fixes, from Jocelyn Legault</li>
9+
<li>A Lint test now passes clean, thanks to Joce's code cleanup</li>
10+
<li>Python updated to 2.7.1, and patched to support loading modules from Unicode paths under Windows</li>
11+
<li>Unicode paths for scripts and lib now supported (with patched python27.dll)</li>
12+
<li>Many improvements to console Unicode support. The console is now UTF-8</li>
13+
<li>Python module bug fixes for the /MT compilation (bz2 module, for instance, didn't previously work properly)</li>
14+
<li>Python unit tests now pass cleanly for the patched version, with the exception of trying to load MSVCR90.dll directly, which will never work when compiled with /MT</li>
15+
<li>Bugfix in config dialog always displaying user scripts when first opened</li>
16+
</ul>
317
<br/>
418
<b>0.8.0.0</b>
519
<br/>

www/header.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<br/>
3131
<br/>
3232
<br/>
33-
Latest Version: 0.8.0.0
33+
Latest Version: 0.9.0.0
3434
<br/>
3535
<br/>
3636
<br/>

www/localdl.shtml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
<h3>Local Download</h3>
44
Here are the local server links if you can't get to <a href="http://sourceforge.net/projects/npppythonscript/files">the main one at sourceforge</a>.
5-
<br/><a href="http://www.brotherstone.co.uk/npp/ps/downloads/PythonScript_full_0.8.0.0.7z">Python Script 0.8.0.0 FULL 7zip version (3.4MB)</a>
6-
<br/><a href="http://www.brotherstone.co.uk/npp/ps/downloads/PythonScript_full_0.8.0.0.zip">Python Script 0.8.0.0 FULL zip version (5MB)</a>
7-
<br/><a href="http://www.brotherstone.co.uk/npp/ps/downloads/PythonScript_min_0.8.0.0.7z">Python Script 0.8.0.0 MINIMUM 7zip version (1.9MB)</a>
8-
<br/><a href="http://www.brotherstone.co.uk/npp/ps/downloads/PythonScript_full_0.8.0.0.7z">Python Script 0.8.0.0 MINIMUM zip version (2.8MB)</a>
5+
<br/><a href="http://www.brotherstone.co.uk/npp/ps/downloads/PythonScript_full_0.9.0.0.7z">Python Script 0.8.0.0 FULL 7zip version (5MB)</a>
6+
<br/><a href="http://www.brotherstone.co.uk/npp/ps/downloads/PythonScript_full_0.9.0.0.zip">Python Script 0.9.0.0 FULL zip version (7.8MB)</a>
7+
<br/><a href="http://www.brotherstone.co.uk/npp/ps/downloads/PythonScript_min_0.9.0.0.7z">Python Script 0.9.0.0 MINIMUM 7zip version (1.9MB)</a>
8+
<br/><a href="http://www.brotherstone.co.uk/npp/ps/downloads/PythonScript_full_0.9.0.0.7z">Python Script 0.9.0 MINIMUM zip version (2.8MB)</a>
99

1010

1111
<!--#include virtual="footer.inc" -->

0 commit comments

Comments
 (0)