Skip to content

Commit c94d5bf

Browse files
committed
Source
1 parent 7a0af16 commit c94d5bf

File tree

476 files changed

+38264
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

476 files changed

+38264
-2
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Thumbs.db
2+
lib
3+
bin
4+
*.res
5+
*.lps
6+
backup

LICENSE

+674
Large diffs are not rendered by default.

README.md

+30-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
11
# WinDS PRO
2-
WinDS PRO es un conjunto de emuladores para Windows que te permite jugar títulos de las consolas Sega, Nintendo, PlayStation, X-Box y muchas más.
2+
An open source frontend for launching emulators.
33

4-
[Descargar WinDS PRO](https://windsprocentral.blogspot.com) en el sitio oficial WinDS PRO Central.
4+
# Sources
5+
The folder windspro contains:
6+
* electron: sources of the Electron based project
7+
* project-ams: sources of the AutoPlay Media Studio based project
8+
* project: sources of the Lazarus based project
9+
* setup: the Inno Setup script to generate an installer
10+
11+
The folder windsproapps contains:
12+
* electron: sources of the Electron based project
13+
* project: sources of the Lazarus based project
14+
* setup: the Inno Setup script to generate an installer
15+
16+
The folder windsprozero contains:
17+
* WinDS PRO Zero: Visual Studio C# based project
18+
19+
The folder linuxdspro contains:
20+
* An installer script for Ubuntu emulators
21+
22+
# Each project
23+
* WinDS PRO contains only emulators for Nintendo handheld devices. The installer handles file-associations for each type.
24+
* WinDS PRO Apps contains all kind of emulators. The projects are very similar or identical to WinDS PRO.
25+
* WinDS PRO Zero contains all kind of emulators, is a web based frontend, working as a web explorer that manages downloaded and installed apps.
26+
* LinuxDS PRO contains all kind of emulators, is a script that downloads and installs emulators from official and third party sources.
27+
28+
# License
29+
GPL v3, you can modify the source code and distribute resulting binaries, but you need to keep it open source. Electron, Lazarus, AutoPlay Media Studio, Inno Setup and Visual Studio are just the tools we use, you need to follow any licenses that are related to these products individually.
30+
31+
# About all emulators that comes with WinDS PRO
32+
We choose only free emulators available freely on internet, no paid emulators are included in our bundles. We use official builds or clean svn/git builds. If you want your emulator removed please contact us filling a bug report.

linuxdspro/desinstalar.sh

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/sh
2+
sudo apt-get remove -y -f dosbox fs-uae fs-uae-arcade fs-uae-launcher hatari higan mednafen nestopia pcsxr stella virtualjaguar visualboyadvance yabause yabause-common yabause-qt fceux desmume mupen64plus-qt dolphin-emu vbaexpress zsnes-dbg:i386 pcsx2:i386 mgba-qt
3+
sudo apt autoremove -y -f
4+
sudo rm -r /usr/games/linuxdspro/
5+
sudo rm /usr/bin/linuxdspro
6+
sudo rm /usr/share/applications/linuxdspro.desktop
7+
sudo rm /usr/share/pixmaps/linuxdspro.png
8+
echo --------------------------------------------------------------------------------
9+
echo Gracias por usar LinuxDS PRO. Todos los emuladores han sido desinstalados.

linuxdspro/instalar.sh

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/sh
2+
sudo apt install -y --allow-unauthenticated -f dosbox fs-uae fs-uae-arcade fs-uae-launcher hatari higan mednafen nestopia pcsxr stella virtualjaguar visualboyadvance yabause yabause-common yabause-qt fceux desmume mupen64plus-qt dolphin-emu vbaexpress zsnes-dbg:i386 pcsx2:i386 mgba-qt
3+
4+
sudo rm -r /usr/games/linuxdspro/
5+
sudo cp -a bin/ /usr/games/linuxdspro/
6+
7+
sudo rm /usr/bin/linuxdspro
8+
sudo ln -s /usr/games/linuxdspro/linuxdspro /usr/bin/linuxdspro
9+
10+
sudo rm /usr/share/pixmaps/linuxdspro.png
11+
sudo cp bin/linuxdspro.png /usr/share/pixmaps/linuxdspro.png
12+
13+
sudo rm /usr/share/applications/linuxdspro.desktop
14+
sudo cp bin/linuxdspro.desktop /usr/share/applications
15+
16+
echo --------------------------------------------------------------------------------
17+
echo La instalación de LinuxDS PRO ha finalizado.
18+
linuxdspro

linuxdspro/leeme.txt

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
-----------
2+
LinuxDS PRO
3+
-----------
4+
5+
Descripción: Pack de emuladores para Ubuntu.
6+
Versión: 2019.10.30 Ubuntu 19.10.
7+
8+
--------------
9+
Instalación
10+
--------------
11+
12+
Abre un terminal en esta carpeta y escribe:
13+
sh instalar.sh
14+
15+
Ingresa tu password de superusuario y comenzará la instalación.
16+
17+
-----------------
18+
Desinstalación
19+
-----------------
20+
21+
Abre un terminal en esta carpeta y escribe:
22+
sh desinstalar.sh
23+
24+
Ingresa tu password de superusuario y comenzará la desinstalación.
25+
26+
----------------------
27+
Historial de versiones
28+
----------------------
29+
2019.10.30
30+
- Sacados emuladores que no estan en Ubuntu 19.10
31+
32+
2017.05.29
33+
- Agregado: Gens GS, PCSX2, PPSSPP, PokeMini, Snes9x, VBA Express, VBA-M, ZSNES, mGBA
34+
35+
2017.05.22
36+
- Primera versión para Ubuntu 16.04
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true
5+
},
6+
"extends": "eslint:recommended",
7+
"parserOptions": {
8+
"sourceType": "module"
9+
},
10+
"rules": {
11+
"indent": [
12+
"error",
13+
4
14+
],
15+
"linebreak-style": [
16+
"error",
17+
"windows"
18+
],
19+
"quotes": [
20+
"error",
21+
"single"
22+
],
23+
"semi": [
24+
"error",
25+
"always"
26+
],
27+
"no-unused-vars": 0,
28+
"no-undef": 0,
29+
"no-console": 0
30+
}
31+
}

0 commit comments

Comments
 (0)