(Docs) Use HTTPS URL for libretro.com link (#10274)

Fixes #10272
This commit is contained in:
Rob Loach 2020-03-16 02:49:18 -04:00 committed by GitHub
parent 7e6fc5ab4d
commit cfbc3d4317
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 14 deletions

View file

@ -18,7 +18,7 @@ These programs are instantiated as dynamic libraries. We refer to these as "libr
## libretro
[libretro](http://libretro.com) is an API that exposes generic audio/video/input callbacks.
[libretro](https://www.libretro.com) is an API that exposes generic audio/video/input callbacks.
A frontend for libretro (such as RetroArch) handles video output, audio output, input and application lifecycle.
A libretro core written in portable C or C++ can run seamlessly on many platforms with very little to no porting effort.
@ -33,7 +33,7 @@ Latest binaries are currently hosted on the [buildbot](http://buildbot.libretro.
## Support
To reach developers, either make an issue here on GitHub, make a thread on the [forum](http://www.libretro.com/forums/), chat on [discord](https://discord.gg/C4amCeV), or visit our IRC channel: #retroarch @ irc.freenode.org. You could create a post in [Reddit](https://www.reddit.com/r/RetroArch/) with *Technical Support* flair.
To reach developers, either make an issue here on GitHub, make a thread on the [forum](https://www.libretro.com/forums/), chat on [discord](https://discord.gg/C4amCeV), or visit our IRC channel: #retroarch @ irc.freenode.org. You could create a post in [Reddit](https://www.reddit.com/r/RetroArch/) with *Technical Support* flair.
## Documentation

View file

@ -34,7 +34,7 @@ Build-Depends: debhelper (>= 9),
libass-dev,
nvidia-cg-dev [!armhf]
Standards-Version: 3.9.5
Homepage: http://www.libretro.com/
Homepage: https://www.libretro.com/
Vcs-Git: git://github.com/libretro/RetroArch.git
Vcs-Browser: https://github.com/libretro/RetroArch
@ -49,7 +49,7 @@ Depends: ${shlibs:Depends},
Replaces: ssnes
Suggests: retroarch-joypad-autoconfig, libretro-common-shaders, libretro-common-overlays, retroarch-assets
Description: Simple frontend for the libretro library
RetroArch is an open source, multi-platform frontend for the libretro API.
It can be used as a modular multi emulator system, game engine, media player
and 3D technical demonstration. These features are available through
RetroArch is an open source, multi-platform frontend for the libretro API.
It can be used as a modular multi emulator system, game engine, media player
and 3D technical demonstration. These features are available through
libretro cores.

View file

@ -5,7 +5,7 @@ Summary: Official reference frontend for libretro
Group: Applications/Emulators
License: GPLv3+
URL: http://www.libretro.com/
URL: https://www.libretro.com/
BuildRequires: mesa-llvmpipe-libwayland-egl-devel
BuildRequires: pulseaudio-devel

View file

@ -2029,7 +2029,7 @@ bool MainWindow::isContentLessCore()
bool MainWindow::isCoreLoaded()
{
if ( m_currentCore.isEmpty() ||
if ( m_currentCore.isEmpty() ||
m_currentCore == msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_CORE))
return false;
@ -2430,7 +2430,7 @@ void MainWindow::renamePlaylistItem(QListWidgetItem *item, QString newName)
playlistInfo = playlistPath;
oldName = playlistInfo.completeBaseName();
/* Don't just compare strings in case there are
/* Don't just compare strings in case there are
* case differences on Windows that should be ignored. */
if (QDir(playlistInfo.absoluteDir()) != QDir(playlistDir))
{
@ -2440,14 +2440,14 @@ void MainWindow::renamePlaylistItem(QListWidgetItem *item, QString newName)
if (specialPlaylist)
{
/* special playlists shouldn't be editable already,
* but just in case, set the old name back and
/* special playlists shouldn't be editable already,
* but just in case, set the old name back and
* early return if they rename it */
item->setText(oldName);
return;
}
/* block this signal because setData() would trigger
/* block this signal because setData() would trigger
* an infinite loop here */
disconnect(m_listWidget, SIGNAL(itemChanged(QListWidgetItem*)), this, SLOT(onCurrentListItemDataChanged(QListWidgetItem*)));
@ -2997,8 +2997,8 @@ void MainWindow::showAbout()
QScopedPointer<QDialog> dialog(new QDialog());
QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok);
QString text = QString("RetroArch ") + PACKAGE_VERSION +
"<br><br>" + "<a href=\"http://www.libretro.com/\">www.libretro.com</a>"
"<br><br>" + "<a href=\"http://www.retroarch.com/\">www.retroarch.com</a>"
"<br><br>" + "<a href=\"https://www.libretro.com/\">www.libretro.com</a>"
"<br><br>" + "<a href=\"https://www.retroarch.com/\">www.retroarch.com</a>"
#ifdef HAVE_GIT_VERSION
"<br><br>" + msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION) + ": " + retroarch_git_version +
#endif