Skip to content

Commit

Permalink
version 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
surrim committed Apr 26, 2023
1 parent 7e148c0 commit 8938513
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# moos 2.2.1
* fixed autologin
* default server is now moos.insideearth.info, port 12100

# moos 2.2
* rewritten login code
* default "server" setting for moos.ini, server default ports
* default "server" setting for moos.ini, server custom port
* default server is now netserver2150.insideearth.info, port 17171
* added CMake files, thanks to Vollkornwurst
* build targets fixed
Expand Down
4 changes: 2 additions & 2 deletions src/helpmenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ void MainFrame::OnMailBugs(wxCommandEvent& WXUNUSED(event)) {
}

void MainFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) {
InfoDialog(this, langIni, font.GetChosenFont(), langIni->Read(wxT("translations/menus/help/about"), wxT("About Moos 2.2...")),
InfoDialog(this, langIni, font.GetChosenFont(), langIni->Read(wxT("translations/menus/help/about"), wxT("About Moos...")),
wxT(R"raw(
MoonNet Omnipresent Observation System 2.2
MoonNet Omnipresent Observation System 2.2.1
moos is an Inside Earth Operations application (www.insideearth.de)
written by mensi (mensi@insideearth.de), modified by surrim.
Expand Down
2 changes: 1 addition & 1 deletion src/settingsmenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ void MainFrame::OnSelectLanguage(wxCommandEvent& WXUNUSED(event)) {
settingsMenu->SetLabel(ID_MAINWIN_SELECT_LANGUAGE, langIni->Read(wxT("translations/menus/settings/selectlanguage"), wxT("Select Language...")));
helpMenu->SetLabel(ID_MAINWIN_ONLINEREADME, langIni->Read(wxT("translations/menus/help/onlinereadme"), wxT("Online Readme")));
helpMenu->SetLabel(ID_MAINWIN_MAILBUGS, langIni->Read(wxT("translations/menus/help/mailbugs"), wxT("Mail Bugs")));
helpMenu->SetLabel(ID_MAINWIN_ABOUT, langIni->Read(wxT("translations/menus/help/about"), wxT("About Moos 2.2...")));
helpMenu->SetLabel(ID_MAINWIN_ABOUT, langIni->Read(wxT("translations/menus/help/about"), wxT("About Moos...")));
menuBar->SetMenuLabel(0, langIni->Read(wxT("translations/menus/moos"), wxT("Moos")));
menuBar->SetMenuLabel(1, langIni->Read(wxT("translations/menus/user"), wxT("User")));
menuBar->SetMenuLabel(2, langIni->Read(wxT("translations/menus/view"), wxT("View")));
Expand Down

0 comments on commit 8938513

Please sign in to comment.