Skip to content

Commit

Permalink
Prepare for release 1.0.35
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Stigsen committed Jun 2, 2009
1 parent 9d0bf89 commit 76670fd
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 7 deletions.
30 changes: 30 additions & 0 deletions docs/release_notes.txt
@@ -1,3 +1,33 @@
2-june-2009 - 1.0.35
o Use selection as initial pattern for 'Find in Project'

o Clicking a match in 'Find in Project' now selects the
matching text.

o Antialiasing mode can now be set in theme editor.

o Fixed tabbing out of search field.

o Enable buttons when initiating search from selection.

o Mousewheel over search field now scrolls editor.

o Added support for native DragCommands #4 [adamv]

o Fixed updating all tabs on SaveAll #136 [adamv]

o Added 'Close other Tabs' to filemenu #289 [adamv]

o Allow full name filespec matches #193 [adamv]

o Add horizontal scrolling on mousewheel #322 [adamv]

o Remember 'Filter through command' entries #198 [adamv]

o Save scroll state when reloading files #22 [adamv]

o Make 'Show Bundle Editor' checked menu item #310 [adamv]

21-may-2009 - 1.0.34b
o Fixed plain search in 'Find in Files'.

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

[Setup]
AppName=e
AppVerName=e - v1.0.34b
AppVerName=e - v1.0.35
AppMutex=eApp
OutputBaseFilename=e_setup
AppPublisherURL=http://www.e-texteditor.com/
Expand Down Expand Up @@ -49,9 +49,9 @@ Source: "Release\e.exe"; DestDir: "{app}"
Source: "..\docs\release_notes.txt"; DestDir: "{app}"
Source: "XCrashReport.exe"; DestDir: "{app}"
Source: "installer\dbghelp.dll"; DestDir: "{app}"
Source: "Debug\Bundles\*.*"; DestDir: "{app}\Bundles"; Excludes: "\local"; Flags: recursesubdirs createallsubdirs
Source: "Debug\Support\*.*"; DestDir: "{app}\Support"; Excludes: "\bin\CocoaDialog.app"; Flags: recursesubdirs createallsubdirs
Source: "Debug\Themes\*.*"; DestDir: "{app}\Themes"; Excludes: "\local"; Flags: recursesubdirs createallsubdirs
Source: "e-exe\Debug\Bundles\*.*"; DestDir: "{app}\Bundles"; Excludes: "\local"; Flags: recursesubdirs createallsubdirs
Source: "e-exe\Debug\Support\*.*"; DestDir: "{app}\Support"; Excludes: "\bin\CocoaDialog.app"; Flags: recursesubdirs createallsubdirs
Source: "e-exe\Debug\Themes\*.*"; DestDir: "{app}\Themes"; Excludes: "\local"; Flags: recursesubdirs createallsubdirs

; Install emate command
Source: "cmd\e.exe"; DestDir: "{app}\cmd"
Expand All @@ -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.34b (197)"
Root: HKCU; Subkey: "Software\e"; ValueType: string; ValueName: "version"; ValueData: "1.0.35 (198)"
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 @@ -86,8 +86,8 @@ bool eApp::OnInit() {

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

// Option vars
m_lineNum = 0;
Expand Down

0 comments on commit 76670fd

Please sign in to comment.