parent
72364fd1a4
commit
8b8be7d4a8
|
@ -35,11 +35,11 @@ Chat](https://web.libera.chat/).
|
|||
|
||||
Game Boy and Game Boy Advance Emulator
|
||||
|
||||
The forums are [here](https://board.visualboyadvance-m-emu.org/).
|
||||
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.visualboyadvance-m-emu.org/](https://nightly.visualboyadvance-m-emu.org/).
|
||||
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**
|
||||
|
|
|
@ -247,7 +247,7 @@ function(get_binary_packages vcpkg_exe)
|
|||
|
||||
foreach(triplet ${triplets})
|
||||
file(
|
||||
DOWNLOAD "https://nightly.visualboyadvance-m-emu.org/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)
|
||||
|
@ -305,10 +305,10 @@ function(get_binary_packages vcpkg_exe)
|
|||
foreach(pkg ${to_install})
|
||||
string(REGEX REPLACE "^[^_]+_[^_]+_([^.]+)[.]zip\$" "\\1" pkg_triplet ${pkg})
|
||||
|
||||
message(STATUS "Downloading https://nightly.visualboyadvance-m-emu.org/vcpkg/${pkg_triplet}/${pkg} ...")
|
||||
message(STATUS "Downloading https://nightly.visualboyadvance-m.org/vcpkg/${pkg_triplet}/${pkg} ...")
|
||||
|
||||
file(
|
||||
DOWNLOAD "https://nightly.visualboyadvance-m-emu.org/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)
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
VisualBoyAdvance-M
|
||||
Nintendo Game Boy & Game Boy Advance Emulator
|
||||
Project Homepage: http://visualboyadvance-m-emu.org
|
||||
Project Homepage: http://visualboyadvance-m.org
|
||||
|
||||
This program is distributed under the GNU General Public License
|
||||
http://www.gnu.org/licenses/gpl.html
|
||||
|
|
|
@ -21,7 +21,7 @@ Build-Depends: debhelper (>= 9),
|
|||
zip,
|
||||
zlib1g-dev
|
||||
Standards-Version: 3.9.5
|
||||
Homepage: http://visualboyadvance-m-emu.org
|
||||
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
|
||||
|
||||
|
|
|
@ -715,7 +715,7 @@ if(APPLE AND ENABLE_ONLINEUPDATES)
|
|||
PRIVATE ${SPARKLE_INCLUDE_DIR}
|
||||
)
|
||||
|
||||
set(APPCAST_URL "https://data.visualboyadvance-m-emu.org/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
|
||||
|
|
|
@ -6,7 +6,7 @@ SparkleWrapper autoupdater;
|
|||
|
||||
void initAutoupdater()
|
||||
{
|
||||
autoupdater.addAppcastURL("https://data.visualboyadvance-m-emu.org/appcast.xml");
|
||||
autoupdater.addAppcastURL("https://data.visualboyadvance-m.org/appcast.xml");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -9,9 +9,9 @@ void initAutoupdater()
|
|||
// even if we are a nightly, only check latest stable version
|
||||
const wxString version(kVbamMainVersion);
|
||||
#ifndef NO_HTTPS
|
||||
win_sparkle_set_appcast_url("https://data.visualboyadvance-m-emu.org/appcast.xml");
|
||||
win_sparkle_set_appcast_url("https://data.visualboyadvance-m.org/appcast.xml");
|
||||
#else
|
||||
win_sparkle_set_appcast_url("http://data.visualboyadvance-m-emu.org/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();
|
||||
|
|
|
@ -2231,7 +2231,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://visualboyadvance-m-emu.org/"));
|
||||
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"));
|
||||
|
|
|
@ -17,16 +17,16 @@
|
|||
</p>
|
||||
</description>
|
||||
<screenshots>
|
||||
<screenshot type="default"><image type="source">https://visualboyadvance-m-emu.org/screenshots/1.png</image></screenshot>
|
||||
<screenshot><image type="source">https://visualboyadvance-m-emu.org/screenshots/2.png</image></screenshot>
|
||||
<screenshot><image type="source">https://visualboyadvance-m-emu.org/screenshots/3.png</image></screenshot>
|
||||
<screenshot><image type="source">https://visualboyadvance-m-emu.org/screenshots/4.png</image></screenshot>
|
||||
<screenshot type="default"><image type="source">https://visualboyadvance-m.org/screenshots/1.png</image></screenshot>
|
||||
<screenshot><image type="source">https://visualboyadvance-m.org/screenshots/2.png</image></screenshot>
|
||||
<screenshot><image type="source">https://visualboyadvance-m.org/screenshots/3.png</image></screenshot>
|
||||
<screenshot><image type="source">https://visualboyadvance-m.org/screenshots/4.png</image></screenshot>
|
||||
</screenshots>
|
||||
<launchable type="desktop-id">visualboyadvance-m.desktop</launchable>
|
||||
<releases>
|
||||
<release version="2.1.9" date="2024-02-03"/>
|
||||
</releases>
|
||||
<url type="homepage">https://visualboyadvance-m-emu.org</url>
|
||||
<url type="homepage">https://visualboyadvance-m.org</url>
|
||||
<url type="bugtracker">https://github.com/visualboyadvance-m/visualboyadvance-m/issues</url>
|
||||
<update_contact>zachbacon@visualboyadvance-m-emu.org</update_contact>
|
||||
<update_contact>zachbacon@visualboyadvance-m.org</update_contact>
|
||||
</component>
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
<key>UTTypeIdentifier</key>
|
||||
<string>public.gbarom</string>
|
||||
<key>UTTypeReferenceURL</key>
|
||||
<string>http://visualboyadvance-m-emu.org/</string>
|
||||
<string>http://visualboyadvance-m.org/</string>
|
||||
<key>UTTypeDescription</key>
|
||||
<string>GameBoy Advance ROM</string>
|
||||
<key>UTTypeIconFile</key>
|
||||
|
@ -79,7 +79,7 @@
|
|||
<key>UTTypeIdentifier</key>
|
||||
<string>public.gbrom</string>
|
||||
<key>UTTypeReferenceURL</key>
|
||||
<string>http://visualboyadvance-m-emu.org/</string>
|
||||
<string>http://visualboyadvance-m.org/</string>
|
||||
<key>UTTypeDescription</key>
|
||||
<string>GameBoy ROM</string>
|
||||
<key>UTTypeIconFile</key>
|
||||
|
|
|
@ -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://visualboyadvance-m-emu.org/"
|
||||
VALUE "CompanyName", "http://visualboyadvance-m.org/"
|
||||
VALUE "FileDescription", "VisualBoyAdvance-M"
|
||||
VALUE "FileVersion", VER_FILEVERSION_STR
|
||||
VALUE "InternalName", "wxvbam"
|
||||
|
|
Loading…
Reference in New Issue