Skip to content

Commit

Permalink
2.0.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
istvan-v committed Jan 16, 2017
1 parent ed5e8b0 commit 5229daa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ep128emu 2.0.11 beta
====================
ep128emu 2.0.11
===============

ep128emu is an open source, portable emulator of the Enterprise 128,
ZX Spectrum 48/128, Amstrad CPC 464/664/6128 and Videoton TVC computers,
Expand Down
2 changes: 1 addition & 1 deletion gui/about.fl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Ep128EmuGUI_AboutWindow {open
}
}
code {{
buf->append(" ep128emu version 2.0.11 beta\\n");
buf->append(" ep128emu version 2.0.11\\n");
buf->append("\\n");
buf->append("Portable Enterprise 128 emulator\\n");
buf->append("Copyright \\302\\251 2003-2017 Istvan Varga <[email protected]>\\n");
Expand Down
4 changes: 2 additions & 2 deletions gui/gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@ void Ep128EmuGUI::init_()
void Ep128EmuGUI::updateDisplay_windowTitle()
{
if (oldPauseFlag) {
std::sprintf(&(windowTitleBuf[0]), "ep128emu 2.0.11 beta (paused)");
std::sprintf(&(windowTitleBuf[0]), "ep128emu 2.0.11 (paused)");
}
else {
std::sprintf(&(windowTitleBuf[0]), "ep128emu 2.0.11 beta (%d%%)",
std::sprintf(&(windowTitleBuf[0]), "ep128emu 2.0.11 (%d%%)",
int(oldSpeedPercentage));
}
mainWindow->label(&(windowTitleBuf[0]));
Expand Down
4 changes: 2 additions & 2 deletions installer/ep128emu.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
!ifndef WIN64
;Name and file
Name "ep128emu"
OutFile "ep128emu-2.0.11_beta-x86.exe"
OutFile "ep128emu-2.0.11-x86.exe"
;Default installation folder
InstallDir "$PROGRAMFILES\ep128emu2"
!else
Name "ep128emu (x64)"
OutFile "ep128emu-2.0.11_beta-x64.exe"
OutFile "ep128emu-2.0.11-x64.exe"
InstallDir "$PROGRAMFILES64\ep128emu2"
!endif

Expand Down

0 comments on commit 5229daa

Please sign in to comment.