Fix somes Upsilon name in somes files (#61)

This commit is contained in:
Yaya-Cout
2021-10-28 22:23:10 +02:00
committed by GitHub
parent 473b0bbfcb
commit 41b2b64d80
12 changed files with 17 additions and 17 deletions

View File

@@ -24,4 +24,4 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- Omega Version: [go to settings > about > Omega Version and type the version here]
- Upsilon Version: [go to settings > about > Upsilon Version and type the version here]

View File

@@ -1,6 +1,6 @@
---
name: Feature request
about: Suggest an idea for Omega
about: Suggest an idea for Upsilon
title: ''
labels: 'Status: Triage, Type: Feature'
assignees: ''

View File

@@ -1,6 +1,6 @@
---
name: OMEGA BETA ONLY - Bug report
about: Omega 1.21 is not working like it should? Let us know!
name: UPSILON BETA ONLY - Bug report
about: Upsilon 1.21 is not working like it should? Let us know!
title: "[BETA-1.21] …"
labels: 'Status: Triage, Type: Bug'
assignees: ''
@@ -24,5 +24,5 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- Omega Version: [go to settings > about > Omega Version and type the version here]
- Upsilon Version: [go to settings > about > Upsilon Version and type the version here]
- Discord username: ..........#....

View File

@@ -1,6 +1,6 @@
---
name: Problems during installation
about: Need help to install Omega?
about: Need help to install Upsilon?
title: ''
labels: 'Status: Triage, Type: Installation issue'
assignees: ''
@@ -16,4 +16,4 @@ Copy/paste the logs here (If you have some)
```
**Environment**
- Omega Version: {go to settings > about > Omega Version and type the version here}
- Upsilon Version: {go to settings > about > Upsilon Version and type the version here}

View File

@@ -126,7 +126,7 @@ Vous aurez besoin de devkitPro et de devkitARM disponible dans votre `$PATH` (in
```bash
git clone --recursive https://github.com/Lauryy06/Upsilon.git
cd Upsilon
git checkout --recursive omega-dev
git checkout --recursive upsilon-dev
make PLATFORM=simulator TARGET=3ds -j
```

View File

@@ -240,7 +240,7 @@ You need devkitPro and devkitARM installed and in your path (instructions [here]
```bash
git clone --recursive https://github.com/Lauryy06/Upsilon.git
cd Upsilon
git checkout --recursive omega-dev
git checkout --recursive upsilon-dev
make PLATFORM=simulator TARGET=3ds -j
```
You can then put epsilon.3dsx on a SD card to run it from the HBC or use 3dslink to launch it over the network:

View File

@@ -1,7 +1,7 @@
BasicInfo:
Title : Omega
Title : Upsilon
CompanyCode : "00"
ProductCode : CTR-E-OMEGA
ProductCode : CTR-E-Upsilon
Logo : Homebrew # Nintendo / Licensed / Distributed / iQue / iQueForSystem
RomFs:

View File

@@ -7,7 +7,7 @@
<key>CFBundleExecutable</key>
<string>Epsilon</string>
<key>CFBundleIdentifier</key>
<string>io.github.omega.simulator</string>
<string>io.github.upsilon.simulator</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>

View File

@@ -16,7 +16,7 @@ static char* pref_path = nullptr;
static char* file_buffer = nullptr;
void loadPython(Args * arguments) {
pref_path = SDL_GetPrefPath("io.github.omega", "omega-simulator");
pref_path = SDL_GetPrefPath("io.github.upsilon", "upsilon-simulator");
std::string path(pref_path);
printf("Loading from %s\n", (path + "python.dat").c_str());

View File

@@ -36,7 +36,7 @@ void init(bool screen_only, bool fullscreen, bool unresizable) {
if (screen_only) {
sScreenOnly = true;
sWindow = SDL_CreateWindow(
"Omega",
"Upsilon",
SDL_WINDOWPOS_CENTERED,
SDL_WINDOWPOS_CENTERED,
Ion::Display::Width, Ion::Display::Height,
@@ -48,7 +48,7 @@ void init(bool screen_only, bool fullscreen, bool unresizable) {
);
} else {
sWindow = SDL_CreateWindow(
"Omega",
"Upsilon",
SDL_WINDOWPOS_CENTERED,
SDL_WINDOWPOS_CENTERED,
458, 888,

View File

@@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Omega</title>
<title>Upsilon</title>
<style>
#include "calculator.css"
#include "simulator.css"

View File

@@ -10,7 +10,7 @@ MP_DEFINE_CONST_FUN_OBJ_1(modos_remove_obj, modos_remove);
MP_DEFINE_CONST_FUN_OBJ_2(modos_rename_obj, modos_rename);
MP_DEFINE_CONST_FUN_OBJ_0(modos_listdir_obj, modos_listdir);
STATIC const MP_DEFINE_STR_OBJ(modos_sysname_obj, "Omega");
STATIC const MP_DEFINE_STR_OBJ(modos_sysname_obj, "Upsilon");
STATIC const mp_rom_map_elem_t modos_module_globals_table[] = {
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_os) },