From cfbc3d4317be58fb350cc76ed5d052dab6d91cd1 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Mon, 16 Mar 2020 02:49:18 -0400 Subject: [PATCH] (Docs) Use HTTPS URL for libretro.com link (#10274) Fixes #10272 --- README.md | 4 ++-- pkg/debian/control | 8 ++++---- pkg/sailfishos/retroarch-sailfishos.spec | 2 +- ui/drivers/qt/ui_qt_window.cpp | 14 +++++++------- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index e97dc9c8d0..ccf1bdafe1 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/pkg/debian/control b/pkg/debian/control index 775036e6eb..f615715a16 100644 --- a/pkg/debian/control +++ b/pkg/debian/control @@ -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. diff --git a/pkg/sailfishos/retroarch-sailfishos.spec b/pkg/sailfishos/retroarch-sailfishos.spec index 295d8164b1..2e3028602d 100644 --- a/pkg/sailfishos/retroarch-sailfishos.spec +++ b/pkg/sailfishos/retroarch-sailfishos.spec @@ -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 diff --git a/ui/drivers/qt/ui_qt_window.cpp b/ui/drivers/qt/ui_qt_window.cpp index 40b08fd6cd..124ea19d0c 100644 --- a/ui/drivers/qt/ui_qt_window.cpp +++ b/ui/drivers/qt/ui_qt_window.cpp @@ -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 dialog(new QDialog()); QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok); QString text = QString("RetroArch ") + PACKAGE_VERSION + - "

" + "www.libretro.com" - "

" + "www.retroarch.com" + "

" + "www.libretro.com" + "

" + "www.retroarch.com" #ifdef HAVE_GIT_VERSION "

" + msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION) + ": " + retroarch_git_version + #endif