Add files via upload

This commit is contained in:
Nayla 2023-04-21 16:44:42 -04:00 committed by GitHub
commit 1b808748e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 97 additions and 0 deletions

BIN
Data/Updater/7z.dll Normal file

Binary file not shown.

BIN
Data/Updater/7z.exe Normal file

Binary file not shown.

BIN
Data/Updater/Downloader.exe Normal file

Binary file not shown.

View file

@ -0,0 +1,43 @@
@echo off
title Mario Party Netplay Updater Updater
:choice
set /P c=Are you sure you want to continue[Y/N]?
if /I "%c%" EQU "Y" goto :Start
if /I "%c%" EQU "N" goto :Exit
goto :Exit
:Start
TASKKILL /IM "Dolphin-MPN.exe" /F
"Updater/wget.exe" https://github.com/MarioPartyNetplay/Dolphin-Mpn/archive/refs/heads/win32.zip
"Updater/7z.exe" x win32.zip
cd User\
move Config ..\
move GameSettings ..\
move GC ..\
move GBA ..\
move Load ..\
move Wii ..\
cd ..\
rmdir QtPlugins /s /q
rmdir Sys /s /q
rmdir User /s /q
cd Dolphin-MPN
move QtPlugins ..\
move Sys ..\
move User ..\
move "Dolphin-MPN.exe" ..\
move "DolphinTool.exe" ..\
move "DSPTool.exe" ..\
cd ..\
rmdir Dolphin-MPN-win32 /s /q
DEL win32.zip
rmdir User\Load /s /q
move Config User\
move GameSettings User\
move GC User\
move GBA User\
move Load User\
move Wii User\
start Dolphin-MPN
:Exit
EXIT

BIN
Data/Updater/Updater.exe Normal file

Binary file not shown.

54
Data/Updater/Updater.ini Normal file
View file

@ -0,0 +1,54 @@
[General]
AppName=Dolphin MPN
AppVersion=1
GUID=
MainExe=Dolphin-MPN.exe
ReadMethod=2
UpdateURL=http://cdn.marioparty.online/update-dolphin.txt
AllUsers=0
Admin=0
x64=0
ActualUpdater=1
CheckUpdaterTitle=1
AllowChangeUpdate=1
CheckUseDownloader=1
ReplaceMainExecutable=0
AutoCheckUpdate=0
UpdateFrequency=1
AutoSilentUpdate=0
CheckSmartNotification=1
UpdateSmartMethod=0
UpdaterParameters=
CheckUpdaterParam=
[Updater]
0=Product Details
1=Name:
2=Installed Version:
3=Check for Updates
4=Close
5=Incorrect update information.
6=Unable to connect to the update site.
7=New version of Project 64 MPN is available - %s%n%nWould you like to install this version?
8=No updates available.
9=Currently you have v%s
10=Options
11=Check for Updates on %s Launch
12=Unable to save settings. Access denied.%n%nTry to run the program as administrator.
13=This action requires administrator privileges.%n%nWould you like to launch this file as administrator?
14=Automatically Check for Updates:
15=on Windows Startup
16=Every Day
17=Every Week
18=Every Month
19=Done
20=Do you want to turn off the update notification for this version - %s?
21=Note: You can change the update frequency or turn off the automatic update feature in the Updater Options dialog.%n%nWould you like to open it?
22=Note: You can change the update frequency or turn off the automatic update feature in the Updater Options dialog.%n%nTo open this dialog, click YES.%n%nOr you can turn off the update notification for this version only (%s).%n%nTo make it, click NO.%n%nTo exit, click Cancel.
23=Project 64 MPN has been successfully updated!
24=Install Updates Silently
25=This program can automatically check for updates (daily, weekly or monthly).%n%nWould you like to use it?
26=Yes
27=No
28=What's New:

BIN
Data/Updater/wget.exe Normal file

Binary file not shown.