Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Prepare for release 1.0.34b
  • Loading branch information
Alexander Stigsen committed May 21, 2009
1 parent d221cf4 commit 8533663
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions docs/release_notes.txt
@@ -1,3 +1,11 @@
21-may-2009 - 1.0.34b
o Fixed plain search in 'Find in Files'.

o Removed old 'Find in Files' bundle command
(it had conflicting shortcut).

o Fixed adding slash to drive in cygwin path [adamv].

20-may-2009 - 1.0.34a
o Fixed problem when re-opening remote file.

Expand Down
4 changes: 2 additions & 2 deletions src/e.iss
Expand Up @@ -9,7 +9,7 @@

[Setup]
AppName=e
AppVerName=e - v1.0.34a
AppVerName=e - v1.0.34b
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.34a (196)"
Root: HKCU; Subkey: "Software\e"; ValueType: string; ValueName: "version"; ValueData: "1.0.34b (197)"
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
Expand Up @@ -104,8 +104,8 @@ bool eApp::OnInit() {

// App info
const wxString appId = wxString::Format(wxT("eApp-%s"), wxGetUserId().c_str());
m_version_id = 196; // <-------------- INTERNAL VERSION NUMBER
m_version_name = wxT("1.0.34a"); // <-- VERSION NAME
m_version_id = 197; // <-------------- INTERNAL VERSION NUMBER
m_version_name = wxT("1.0.34b"); // <-- VERSION NAME

// Option vars
m_lineNum = 0;
Expand Down

0 comments on commit 8533663

Please sign in to comment.