Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ Build status

![Build on macOS](https://github.com/mapmapteam/mapmap/workflows/Build%20on%20macOS/badge.svg) ![Build on Ubuntu](https://github.com/mapmapteam/mapmap/workflows/Build%20on%20Ubuntu/badge.svg) ![Build on Windows](https://github.com/mapmapteam/mapmap/workflows/Build%20on%20Windows/badge.svg)

Ackowledgements
---------------
Acknowledgements
----------------
This project is sponsored by Art Plus Code.
https://www.artpluscode.com/

This project was made possible by the support of the International
Organization of La Francophonie.
http://www.francophonie.org/
Expand All @@ -32,6 +35,10 @@ Ce projet a été rendu possible grâce au support de l'Organisation
internationale de la Francophonie.
http://www.francophonie.org/

This project also received the support of Perte de Signal.
https://perte-de-signal.org/


Build and installation
----------------------
To build and install it, see the INSTALL file provided with the source code.
Expand All @@ -42,9 +49,9 @@ or else the menu will not show.

Authors
-------
* Sofian Audry: lead developer, user interface designer, project manager.
* Alexandre Quessy: lead developer, release manager, technical writer, project manager.
* Sofian Audry: original lead developer, user interface designer, project manager.
* Dame Diongue: developer.
* Alexandre Quessy: release manager, developer, technical writer, project manager.
* Mike Latona: user interface designer.
* Vasilis Liaskovitis: developer.

Expand Down
4 changes: 2 additions & 2 deletions docs/informations/CONTRIBUTORS.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<h1>Authors</h1>

<ul>
<li>Sofian Audry: lead developer, user interface designer, project manager.</li>
<li>Alexandre Quessy: lead developer, release manager, technical writer, project manager.</li>
<li>Sofian Audry: original lead developer, user interface designer, project manager.</li>
<li>Dame Diongue: developer.</li>
<li>Alexandre Quessy: release manager, developer, technical writer, project manager.</li>
<li>Mike Latona: user interface designer.</li>
<li>Vasilis Liaskovitis: developer.</li>
</ul>
Expand Down
8 changes: 4 additions & 4 deletions docs/informations/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## Authors

- Sofian Audry: lead developer, user interface designer, project
manager.
- Dame Diongue: developer.
- Alexandre Quessy: release manager, developer, technical writer,
- Alexandre Quessy: lead developer, release manager, technical writer,
project manager.
- Sofian Audry: original lead developer, user interface designer,
project manager.
- Dame Diongue: developer.
- Mike Latona: user interface designer.
- Vasilis Liaskovitis: developer.

Expand Down
Binary file modified resources/images/logo/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/core/MM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace mmp {

const QString MM::APPLICATION_NAME = "MapMap";
const QString MM::VERSION = "0.6.3";
const QString MM::COPYRIGHT_OWNERS = "Sofian Audry, Dame Diongue, Alexandre Quessy, Mike Latona, Vasilis Liaskovitis";
const QString MM::COPYRIGHT_OWNERS = "Alexandre Quessy, Sofian Audry, Dame Diongue, Mike Latona, Vasilis Liaskovitis";
const QString MM::ORGANIZATION_NAME = "MapMap";
const QString MM::ORGANIZATION_DOMAIN = "mapmap.info";
const QString MM::FILE_EXTENSION = "mmp";
Expand Down
14 changes: 13 additions & 1 deletion src/gui/AboutDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,17 @@ AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent)

void AboutDialog::createAboutTab()
{
QWidget *aboutWidget = new QWidget;
QVBoxLayout *aboutLayout = new QVBoxLayout(aboutWidget);

// Add splash image at the top.
QLabel *splashLabel = new QLabel;
QPixmap splashPixmap(":/mapmap-splash");
int targetWidth = qMin(splashPixmap.width(), ABOUT_WINDOW_WIDTH - 40);
splashLabel->setPixmap(splashPixmap.scaledToWidth(targetWidth, Qt::SmoothTransformation));
splashLabel->setAlignment(Qt::AlignCenter);
aboutLayout->addWidget(splashLabel);

QTextBrowser *aboutTextBrowser = new QTextBrowser;
aboutTextBrowser->setOpenExternalLinks(true);

Expand Down Expand Up @@ -104,8 +115,9 @@ void AboutDialog::createAboutTab()

// Set about text
aboutTextBrowser->setText(aboutText);
aboutLayout->addWidget(aboutTextBrowser);

_tabWidget->addTab(aboutTextBrowser, tr("About"));
_tabWidget->addTab(aboutWidget, tr("About"));
}

void AboutDialog::createChangelogTab()
Expand Down
Loading