Skip to content

Commit

Permalink
Minor changes in pkg and about dialog + new version
Browse files Browse the repository at this point in the history
  • Loading branch information
artem78 committed Jun 6, 2020
1 parent 904e96c commit e53e452
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions data/S60Maps.rls
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@

#define qtn_about_dialog_title "About"

#define qtn_about_dialog_text "S60Maps Version 0.1.0\n\nBuild: " __DATE__ " " __TIME__ "\n\nAuthor: artem78\n\nSupport: [email protected]\n\n(c) "
#define qtn_about_dialog_text "S60Maps Version 0.9.0-beta\nBuild: " __DATE__ " " __TIME__ "\nAuthor: artem78 ([email protected])\nWeb: https://github.com/artem78/s60-maps"

//#ifdef _DEBUG
#define qtn_about_dialog_git_text "\n\nGit: commit %S (branch %S)\n\n"
#define qtn_about_dialog_git_text "\nGit: %S %S"
//#endif

#define qtn_confirm_exit_dialog_title "Confirm exit"
Expand Down
6 changes: 3 additions & 3 deletions sis/S60Maps.pkg
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
&EN

; standard SIS file header
#{"S60Maps"},(0xED689B88),0,1,0
#{"S60Maps"},(0xED689B88),0,9,0

;Localised Vendor name
%{"Vendor-EN"}
%{"artem78"}

;Unique Vendor name
:"Vendor"
:"artem78"

;Supports Series 60 v 3.0
[0x101F7961], 0, 0, 0, {"Series60ProductID"}
Expand Down
2 changes: 1 addition & 1 deletion src/S60MapsAppUi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ void CS60MapsAppUi::HandleCommandL(TInt aCommand)
buff.CleanupClosePushL();
buff.Zero();
buff.Append(*msg);
buff.AppendFormat(*gitMsg, &KGITCommit, &KGITBranch);
buff.AppendFormat(*gitMsg, &KGITBranch, &KGITCommit);
dlg->SetMessageTextL(buff);
CleanupStack::PopAndDestroy(3, msg);
dlg->RunLD();
Expand Down

0 comments on commit e53e452

Please sign in to comment.