Skip to content

Commit

Permalink
Prepare for release 1.0.40
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Stigsen committed Oct 16, 2009
1 parent dcce200 commit c3e77d3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions docs/release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
16-oct-2009 - 1.0.40
o Added Multi Window support.

o Fixed performance issue when working with documents
with long histories.

o Add 'open folder in explorer' context menu item to
BundlePane [adamv]

15-sep-2009 - 1.0.39
o Added folder compare.

Expand Down
4 changes: 2 additions & 2 deletions src/e.iss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

[Setup]
AppName=e
AppVerName=e - v1.0.39
AppVerName=e - v1.0.40
AppMutex=eApp
OutputBaseFilename=e_setup
AppPublisherURL=http://www.e-texteditor.com/
Expand Down Expand Up @@ -67,7 +67,7 @@ Name: "{userdesktop}\e - texteditor"; Filename: "{app}\e.exe"; Tasks: desktopico
Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\e - texteditor"; Filename: "{app}\e.exe"; Tasks: quicklaunchicon

[Registry]
Root: HKCU; Subkey: "Software\e"; ValueType: string; ValueName: "version"; ValueData: "1.0.39 (205)"
Root: HKCU; Subkey: "Software\e"; ValueType: string; ValueName: "version"; ValueData: "1.0.40 (206)"
Root: HKCU; Subkey: "Software\e"; ValueType: string; ValueName: "path"; ValueData: "{app}\e.exe"
Root: HKCR; Subkey: "txtfile\DefaultIcon"; ValueType: string; ValueName: ""; ValueData: "{app}\e.exe,1"; Tasks: associate
Root: HKCR; Subkey: "txtfile\shell\open\command"; ValueType: string; ValueName: ""; ValueData: """{app}\e.exe"" ""%1"""; Tasks: associate
Expand Down
4 changes: 2 additions & 2 deletions src/eApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ bool eApp::OnInit() {

// App info
const wxString appId = wxString::Format(wxT("eApp-%s"), wxGetUserId().c_str());
m_version_id = 205; // <-------------- INTERNAL VERSION NUMBER
m_version_name = wxT("1.0.39"); // <-- VERSION NAME
m_version_id = 206; // <-------------- INTERNAL VERSION NUMBER
m_version_name = wxT("1.0.40"); // <-- VERSION NAME

// Option vars
m_lineNum = 0;
Expand Down

0 comments on commit c3e77d3

Please sign in to comment.