mirror of
https://git.suyu.dev/suyu/citra-qt-installer.git
synced 2026-01-07 23:17:54 +01:00
Renamed base folders.
This commit is contained in:
parent
947615d3dc
commit
aa36fdb7ba
19 changed files with 0 additions and 0 deletions
29
repository/scripts/linux-bleeding.qs
Normal file
29
repository/scripts/linux-bleeding.qs
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
function Component() {
|
||||
if (systemInfo.kernelType === "linux") {
|
||||
component.setValue("Virtual", "false");
|
||||
component.setValue("Default", "false"); // Bleeding
|
||||
} else {
|
||||
component.setValue("Virtual", "true");
|
||||
component.setValue("Enabled", "false");
|
||||
}
|
||||
}
|
||||
|
||||
Component.prototype.createOperations = function()
|
||||
{
|
||||
component.createOperations();
|
||||
|
||||
component.addOperation("CreateDesktopEntry", "citra-bleeding-edge.desktop",
|
||||
"Version=1.0" +
|
||||
"Type=Application" +
|
||||
"Name=Citra Bleeding Edge" +
|
||||
"GenericName=3DS Emulator" +
|
||||
"GenericName[fr]=Émulateur 3DS" +
|
||||
"Comment=Nintendo 3DS video game console emulator" +
|
||||
"Comment[fr]=Émulateur de console de jeu Nintendo 3DS" +
|
||||
"Icon=citra" +
|
||||
"TryExec=@TargetDir@/bleeding/citra-qt" +
|
||||
"Exec=@TargetDir@/bleeding/citra-qt %f" +
|
||||
"Categories=Game;Emulator;Qt;" +
|
||||
"MimeType=application/x-ctr-3dsx;application/x-ctr-cci;application/x-ctr-cia;application/x-ctr-cxi;" +
|
||||
"Keywords=3DS;Nintendo;");
|
||||
}
|
||||
29
repository/scripts/linux-nightly.qs
Normal file
29
repository/scripts/linux-nightly.qs
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
function Component() {
|
||||
if (systemInfo.kernelType === "linux") {
|
||||
component.setValue("Virtual", "false");
|
||||
component.setValue("Default", "true");
|
||||
} else {
|
||||
component.setValue("Virtual", "true");
|
||||
component.setValue("Enabled", "false");
|
||||
}
|
||||
}
|
||||
|
||||
Component.prototype.createOperations = function()
|
||||
{
|
||||
component.createOperations();
|
||||
|
||||
component.addOperation("CreateDesktopEntry", "citra.desktop",
|
||||
"Version=1.0" +
|
||||
"Type=Application" +
|
||||
"Name=Citra" +
|
||||
"GenericName=3DS Emulator" +
|
||||
"GenericName[fr]=Émulateur 3DS" +
|
||||
"Comment=Nintendo 3DS video game console emulator" +
|
||||
"Comment[fr]=Émulateur de console de jeu Nintendo 3DS" +
|
||||
"Icon=citra" +
|
||||
"TryExec=@TargetDir@/nightly/citra-qt" +
|
||||
"Exec=@TargetDir@/nightly/citra-qt %f" +
|
||||
"Categories=Game;Emulator;Qt;" +
|
||||
"MimeType=application/x-ctr-3dsx;application/x-ctr-cci;application/x-ctr-cia;application/x-ctr-cxi;" +
|
||||
"Keywords=3DS;Nintendo;");
|
||||
}
|
||||
17
repository/scripts/msvc-bleeding.qs
Normal file
17
repository/scripts/msvc-bleeding.qs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
function Component() {
|
||||
if (systemInfo.kernelType === "winnt") {
|
||||
component.setValue("Virtual", "false");
|
||||
component.setValue("Default", "false"); // bleeding
|
||||
} else {
|
||||
component.setValue("Virtual", "true");
|
||||
component.setValue("Enabled", "false");
|
||||
}
|
||||
}
|
||||
|
||||
Component.prototype.createOperations = function()
|
||||
{
|
||||
component.createOperations();
|
||||
|
||||
component.addOperation("CreateShortcut", "@TargetDir@/bleeding/citra-qt.exe", "@StartMenuDir@/Citra-Bleeding.lnk",
|
||||
"workingDirectory=@TargetDir@/bleeding");
|
||||
}
|
||||
17
repository/scripts/msvc-nightly.qs
Normal file
17
repository/scripts/msvc-nightly.qs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
function Component() {
|
||||
if (systemInfo.kernelType === "winnt") {
|
||||
component.setValue("Virtual", "false");
|
||||
component.setValue("Default", "true");
|
||||
} else {
|
||||
component.setValue("Virtual", "true");
|
||||
component.setValue("Enabled", "false");
|
||||
}
|
||||
}
|
||||
|
||||
Component.prototype.createOperations = function()
|
||||
{
|
||||
component.createOperations();
|
||||
|
||||
component.addOperation("CreateShortcut", "@TargetDir@/nightly/citra-qt.exe", "@StartMenuDir@/Citra.lnk",
|
||||
"workingDirectory=@TargetDir@/nightly");
|
||||
}
|
||||
14
repository/scripts/osx-bleeding.qs
Normal file
14
repository/scripts/osx-bleeding.qs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
function Component() {
|
||||
if (systemInfo.kernelType === "darwin") {
|
||||
component.setValue("Virtual", "false");
|
||||
component.setValue("Default", "false"); // bleeding
|
||||
} else {
|
||||
component.setValue("Virtual", "true");
|
||||
component.setValue("Enabled", "false");
|
||||
}
|
||||
}
|
||||
|
||||
Component.prototype.createOperations = function()
|
||||
{
|
||||
component.createOperations();
|
||||
}
|
||||
14
repository/scripts/osx-nightly.qs
Normal file
14
repository/scripts/osx-nightly.qs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
function Component() {
|
||||
if (systemInfo.kernelType === "darwin") {
|
||||
component.setValue("Virtual", "false");
|
||||
component.setValue("Default", "true");
|
||||
} else {
|
||||
component.setValue("Virtual", "true");
|
||||
component.setValue("Enabled", "false");
|
||||
}
|
||||
}
|
||||
|
||||
Component.prototype.createOperations = function()
|
||||
{
|
||||
component.createOperations();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue