mirror of
https://github.com/yuzu-emu/citra-qt-installer.git
synced 2024-11-27 21:14:14 +01:00
Removed the installer folder from the qt-installer repo.
This commit is contained in:
parent
2d5ddbe923
commit
d7e290cc70
@ -1,3 +0,0 @@
|
|||||||
rem Placeholder!
|
|
||||||
rem You are going to want to adapt this
|
|
||||||
T:\Applications\Qt\Tools\QtInstallerFramework\2.0\bin\binarycreator.exe -c config\config.xml -p empty -n CitraInstaller.exe -v -v -v
|
|
@ -1,27 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<Installer>
|
|
||||||
<Name>Citra</Name>
|
|
||||||
<Version>1.0.0</Version>
|
|
||||||
<Title>Citra Updater</Title>
|
|
||||||
<Publisher>Citra team</Publisher>
|
|
||||||
<StartMenuDir>Citra</StartMenuDir>
|
|
||||||
<TargetDir>@HomeDir@/Citra</TargetDir>
|
|
||||||
<RunProgram>@TargetDir@/nightly/citra-qt.exe</RunProgram>
|
|
||||||
<InstallerApplicationIcon>icon</InstallerApplicationIcon>
|
|
||||||
<InstallerWindowIcon>icon.png</InstallerWindowIcon>
|
|
||||||
<RunProgramDescription>Start Citra</RunProgramDescription>
|
|
||||||
<!-- TODO: Move to packages
|
|
||||||
<ControlScript>installscript.qs</ControlScript>-->
|
|
||||||
<RemoteRepositories>
|
|
||||||
<Repository>
|
|
||||||
<Url>https://citra-emu.org/repository</Url>
|
|
||||||
<Enabled>1</Enabled>
|
|
||||||
<DisplayName>Official Citra Repository</DisplayName>
|
|
||||||
</Repository>
|
|
||||||
<!--<Repository>
|
|
||||||
<Url>https://citra.jselby.net/repository</Url>
|
|
||||||
<Enabled>1</Enabled>
|
|
||||||
<DisplayName>Selby's Testing Repo</DisplayName>
|
|
||||||
</Repository>-->
|
|
||||||
</RemoteRepositories>
|
|
||||||
</Installer>
|
|
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 39 KiB |
Binary file not shown.
Before Width: | Height: | Size: 18 KiB |
@ -1,35 +0,0 @@
|
|||||||
function Controller()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
Controller.prototype.ComponentSelectionPageCallback = function()
|
|
||||||
{
|
|
||||||
/*console.log("Kernel type: " + systemInfo.kernelType);
|
|
||||||
|
|
||||||
var platform;
|
|
||||||
|
|
||||||
if (systemInfo.kernelType === "winnt") { // Windows
|
|
||||||
platform = "windows";
|
|
||||||
} else if (systemInfo.kernelType === "darwin") { // Mac
|
|
||||||
platform = "osx";
|
|
||||||
} else if (systemInfo.kernelType === "linux") { // Linux
|
|
||||||
platform = "linux";
|
|
||||||
} else { // else, no installable components will appear
|
|
||||||
platform = "unknown";
|
|
||||||
}
|
|
||||||
|
|
||||||
var components = installer.components();
|
|
||||||
for (var i = 0; i < components.length; i++) {
|
|
||||||
var component = components[i];
|
|
||||||
var name = component.name
|
|
||||||
.replace("msvc", "windows")
|
|
||||||
.replace("mingw", "windows");
|
|
||||||
if (name.indexOf(platform) === -1) {
|
|
||||||
component.setValue("Virtual", "true");
|
|
||||||
component.setValue("Default", "false");
|
|
||||||
} else {
|
|
||||||
component.setValue("Default", "true"); // This only applies to "script" tagged components
|
|
||||||
component.setValue("Enabled", "true");
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
}
|
|
64
repository/.gitignore
vendored
64
repository/.gitignore
vendored
@ -1,64 +0,0 @@
|
|||||||
# Output directory
|
|
||||||
dist/
|
|
||||||
|
|
||||||
# Temporary directory
|
|
||||||
temp/
|
|
||||||
|
|
||||||
# Logs
|
|
||||||
logs
|
|
||||||
*.log
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
|
|
||||||
# Runtime data
|
|
||||||
pids
|
|
||||||
*.pid
|
|
||||||
*.seed
|
|
||||||
*.pid.lock
|
|
||||||
|
|
||||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
||||||
lib-cov
|
|
||||||
|
|
||||||
# Coverage directory used by tools like istanbul
|
|
||||||
coverage
|
|
||||||
|
|
||||||
# nyc test coverage
|
|
||||||
.nyc_output
|
|
||||||
|
|
||||||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
|
||||||
.grunt
|
|
||||||
|
|
||||||
# Bower dependency directory (https://bower.io/)
|
|
||||||
bower_components
|
|
||||||
|
|
||||||
# node-waf configuration
|
|
||||||
.lock-wscript
|
|
||||||
|
|
||||||
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
|
||||||
build/Release
|
|
||||||
|
|
||||||
# Dependency directories
|
|
||||||
node_modules/
|
|
||||||
jspm_packages/
|
|
||||||
|
|
||||||
# Typescript v1 declaration files
|
|
||||||
typings/
|
|
||||||
|
|
||||||
# Optional npm cache directory
|
|
||||||
.npm
|
|
||||||
|
|
||||||
# Optional eslint cache
|
|
||||||
.eslintcache
|
|
||||||
|
|
||||||
# Optional REPL history
|
|
||||||
.node_repl_history
|
|
||||||
|
|
||||||
# Output of 'npm pack'
|
|
||||||
*.tgz
|
|
||||||
|
|
||||||
# Yarn Integrity file
|
|
||||||
.yarn-integrity
|
|
||||||
|
|
||||||
# dotenv environment variables file
|
|
||||||
.env
|
|
Loading…
Reference in New Issue
Block a user