diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d8fe02c..cc4e6ed3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [2.1.9] - 2024-03-02 +## [2.1.9] - 2024-02-03 ======================= * 84b0a3e3 - Remove SDL sound driver [rkitover] * 2ad7dd1a - Fix wav audio recording [40356555+Aikku93] diff --git a/README.md b/README.md index a02b155f..4c3a8c9a 100644 --- a/README.md +++ b/README.md @@ -37,11 +37,11 @@ Chat](https://web.libera.chat/). Game Boy and Game Boy Advance Emulator -The forums are [here](https://board.vba-m.com/). +The forums are [here](https://board.visualboyadvance-m.org/). Windows and Mac builds are in the [releases tab](https://github.com/visualboyadvance-m/visualboyadvance-m/releases). -Nightly builds for Windows and macOS are at [https://nightly.vba-m.com/](https://nightly.vba-m.com/). +Nightly builds for Windows and macOS are at [https://nightly.visualboyadvance-m.org/](https://nightly.visualboyadvance-m.org/). **PLEASE TEST THE NIGHTLY OR MASTER WITH A FACTORY RESET BEFORE REPORTING ISSUES** diff --git a/cmake/Set-Toolchain-vcpkg.cmake b/cmake/Set-Toolchain-vcpkg.cmake index 054b4f3f..df79c3e8 100644 --- a/cmake/Set-Toolchain-vcpkg.cmake +++ b/cmake/Set-Toolchain-vcpkg.cmake @@ -242,7 +242,7 @@ function(get_binary_packages vcpkg_exe) foreach(triplet ${triplets}) file( - DOWNLOAD "https://nightly.vba-m.com/vcpkg/${triplet}/" "${CMAKE_BINARY_DIR}/binary_package_list_${triplet}.html" + DOWNLOAD "https://nightly.visualboyadvance-m.org/vcpkg/${triplet}/" "${CMAKE_BINARY_DIR}/binary_package_list_${triplet}.html" STATUS pkg_list_status ) list(GET pkg_list_status 1 pkg_list_error) @@ -306,10 +306,10 @@ function(get_binary_packages vcpkg_exe) foreach(pkg ${to_install}) string(REGEX REPLACE "^[^_]+_[^_]+_([^.]+)[.]zip\$" "\\1" pkg_triplet ${pkg}) - message(STATUS "Downloading https://nightly.vba-m.com/vcpkg/${pkg_triplet}/${pkg} ...") + message(STATUS "Downloading https://nightly.visualboyadvance-m.org/vcpkg/${pkg_triplet}/${pkg} ...") file( - DOWNLOAD "https://nightly.vba-m.com/vcpkg/${pkg_triplet}/${pkg}" "${bin_pkgs_dir}/${pkg}" + DOWNLOAD "https://nightly.visualboyadvance-m.org/vcpkg/${pkg_triplet}/${pkg}" "${bin_pkgs_dir}/${pkg}" STATUS pkg_download_status ) list(GET pkg_download_status 1 pkg_download_error) diff --git a/doc/ReadMe.MFC.txt b/doc/ReadMe.MFC.txt index 2e0116ba..84336307 100644 --- a/doc/ReadMe.MFC.txt +++ b/doc/ReadMe.MFC.txt @@ -9,7 +9,7 @@ VisualBoyAdvance-M Nintendo Game Boy & Game Boy Advance Emulator -Project Homepage: http://vba-m.com +Project Homepage: http://visualboyadvance-m.org This program is distributed under the GNU General Public License http://www.gnu.org/licenses/gpl.html diff --git a/src/debian/control b/src/debian/control index 7bf17786..2f950c34 100755 --- a/src/debian/control +++ b/src/debian/control @@ -21,7 +21,7 @@ Build-Depends: debhelper (>= 9), zip, zlib1g-dev Standards-Version: 3.9.5 -Homepage: http://vba-m.com +Homepage: http://visualboyadvance-m.org Vcs-Svn: svn://svn.code.sf.net/p/vbam/code/trunk Vcs-Browser: http://svn.code.sf.net/p/vbam/code/trunk diff --git a/src/wx/CMakeLists.txt b/src/wx/CMakeLists.txt index 664ca457..6ec139b2 100644 --- a/src/wx/CMakeLists.txt +++ b/src/wx/CMakeLists.txt @@ -982,7 +982,7 @@ if(NOT TRANSLATIONS_ONLY) PRIVATE ${SPARKLE_INCLUDE_DIR} ) - set(APPCAST_URL "https://data.vba-m.com/appcast.xml") + set(APPCAST_URL "https://data.visualboyadvance-m.org/appcast.xml") set(CCS1 rm -rf ${CMAKE_BINARY_DIR}/visualboyadvance-m.app/Contents/Frameworks/Sparkle.framework) set(CCS2 mkdir -p ${CMAKE_BINARY_DIR}/visualboyadvance-m.app/Contents/Frameworks) # The following commands *should* be run to make sure Sparkle is not going diff --git a/src/wx/autoupdater/macos/autoupdater.cpp b/src/wx/autoupdater/macos/autoupdater.cpp index 0f3a3667..d2455d80 100644 --- a/src/wx/autoupdater/macos/autoupdater.cpp +++ b/src/wx/autoupdater/macos/autoupdater.cpp @@ -7,7 +7,7 @@ SparkleWrapper autoupdater; void initAutoupdater() { - autoupdater.addAppcastURL("https://data.vba-m.com/appcast.xml"); + autoupdater.addAppcastURL("https://data.visualboyadvance-m.org/appcast.xml"); } diff --git a/src/wx/autoupdater/wxmsw/autoupdater.cpp b/src/wx/autoupdater/wxmsw/autoupdater.cpp index ca6ec78e..0af0d824 100644 --- a/src/wx/autoupdater/wxmsw/autoupdater.cpp +++ b/src/wx/autoupdater/wxmsw/autoupdater.cpp @@ -9,9 +9,9 @@ void initAutoupdater() // even if we are a nightly, only check latest stable version wxString version = strutils::split(vbam_version, '-')[0]; #ifndef NO_HTTPS - win_sparkle_set_appcast_url("https://data.vba-m.com/appcast.xml"); + win_sparkle_set_appcast_url("https://data.visualboyadvance-m.org/appcast.xml"); #else - win_sparkle_set_appcast_url("http://data.vba-m.com/appcast.xml"); + win_sparkle_set_appcast_url("http://data.visualboyadvance-m.org/appcast.xml"); #endif // NO_HTTPS win_sparkle_set_app_details(L"visualboyadvance-m", L"VisualBoyAdvance-M", version.wc_str()); win_sparkle_init(); diff --git a/src/wx/cmdevents.cpp b/src/wx/cmdevents.cpp index 70157cba..a7713bcc 100644 --- a/src/wx/cmdevents.cpp +++ b/src/wx/cmdevents.cpp @@ -2315,7 +2315,7 @@ EVT_HANDLER(wxID_ABOUT, "About...") ai.SetVersion(version); // setting website, icon, license uses custom aboutbox on win32 & macosx // but at least win32 standard about is nothing special - ai.SetWebSite(wxT("http://www.vba-m.com/")); + ai.SetWebSite(wxT("http://visualboyadvance-m.org/")); ai.SetIcon(GetIcons().GetIcon(wxSize(32, 32), wxIconBundle::FALLBACK_NEAREST_LARGER)); ai.SetDescription(_("Nintendo Game Boy / Color / Advance emulator.")); ai.SetCopyright(_("Copyright (C) 1999-2003 Forgotten\nCopyright (C) 2004-2006 VBA development team\nCopyright (C) 2007-2020 VBA-M development team")); diff --git a/src/wx/visualboyadvance-m.metainfo.xml b/src/wx/visualboyadvance-m.metainfo.xml index 87c43f25..547acfa6 100644 --- a/src/wx/visualboyadvance-m.metainfo.xml +++ b/src/wx/visualboyadvance-m.metainfo.xml @@ -1,7 +1,7 @@ visualboyadvance-m.desktop - + VisualBoyAdvance-M CC-BY-SA-3.0 @@ -20,15 +20,15 @@

- https://vba-m.com/screenshots/1.png - https://vba-m.com/screenshots/2.png - https://vba-m.com/screenshots/3.png - https://vba-m.com/screenshots/4.png + https://visualboyadvance-m.org/screenshots/1.png + https://visualboyadvance-m.org/screenshots/2.png + https://visualboyadvance-m.org/screenshots/3.png + https://visualboyadvance-m.org/screenshots/4.png - + - http://vba-m.com/ + http://visualboyadvance-m.org/ https://github.com/visualboyadvance-m/visualboyadvance-m/issues - zachbacon@vba-m.com + zachbacon@visualboyadvance-m.org
diff --git a/src/wx/wxplist.in b/src/wx/wxplist.in index e1f1ad99..ee3a866d 100644 --- a/src/wx/wxplist.in +++ b/src/wx/wxplist.in @@ -44,7 +44,7 @@ UTTypeIdentifier public.gbarom UTTypeReferenceURL - http://www.vba-m.com/ + http://visualboyadvance-m.org/ UTTypeDescription GameBoy Advance ROM UTTypeIconFile @@ -79,7 +79,7 @@ UTTypeIdentifier public.gbrom UTTypeReferenceURL - http://www.vba-m.com/ + http://visualboyadvance-m.org/ UTTypeDescription GameBoy ROM UTTypeIconFile diff --git a/src/wx/wxvbam.rc b/src/wx/wxvbam.rc index 9af08767..ca7e5210 100644 --- a/src/wx/wxvbam.rc +++ b/src/wx/wxvbam.rc @@ -44,7 +44,7 @@ BEGIN BLOCK "040904b0" BEGIN VALUE "Comments", "VisualBoyAdvance-M comes with NO WARRANTY. Use it at your own risk." - VALUE "CompanyName", "http://vba-m.com/" + VALUE "CompanyName", "http://visualboyadvance-m.org/" VALUE "FileDescription", "VisualBoyAdvance-M" VALUE "FileVersion", VER_FILEVERSION_STR VALUE "InternalName", "wxvbam"