cc by-nc-sa 4.0 Issues
Discord

> Vous ne comprenez pas l'anglais ? vous ĂȘtes francophone ? Regardez le [*LISEZ-MOI* français](./README.fr.md) ! ## About Omega is a fork of Numworks' Epsilon, the OS that runs on their calculator, which brings many features to it. Omega is for the people who want to add features to the calculator, but cannot because they have been rejected by Numworks (for reasons that are 100% understandable!). [Try it online](https://getomega.web.app/simulator). ### Some new features - Adding symbolic calculation back into the calculator - An app for RPN - Exernal apps - A theme engine - New python features (os module, open method...) - A periodic table app + all of the molar masses for the elements in the toolbox - *And much more to discover...* [Complete changelog](https://github.com/Omega-Numworks/Omega/wiki/Changelog) | [Main new features + screenshots](https://github.com/Omega-Numworks/Omega/wiki/Main-features). ## Installation ### Automatic You can install Omega automatically on our website [here](https://getomega.web.app/) in the "install" page.

Omega Banner Discord

### Manual First of all, follow **step 1** [here](https://www.numworks.com/resources/engineering/software/build/). Then:
Model n0100 (note: you can change the `EPSILON_I18N=en` flag to `fr`, `nl`, `pt`, `it`, `de`, `es` or `hu`). ```bash git clone --recursive https://github.com/Omega-Numworks/Omega.git cd Omega git checkout omega-master make MODEL=n0100 clean make MODEL=n0100 EPSILON_I18N=en OMEGA_USERNAME="{Your name, max 15 characters}" -j4 make MODEL=n0100 epsilon_flash ``` Important: Don't forget the `--recursive` tag, because Omega relies on submodules. Also, you can change the number of processes that run in parallel during the build by changing the value of the `-j` flag.
Model n0110 ```bash git clone --recursive https://github.com/Omega-Numworks/Omega.git cd Omega git checkout omega-master make clean make OMEGA_USERNAME="{Your name, max 15 characters}" -j4 make epsilon_flash ``` Important: Don't forget the `--recursive` tag, because Omega relies on submodules. Also, you can change the number of processes that run in parallel during the build by changing the value of the `-j` flag.
Bin files These can be used to distribute Omega (so that it can be flashed by anyone with [Webdfu_Numworks](https://ti-planet.github.io/webdfu_numworks/)). ```bash git clone --recursive https://github.com/Omega-Numworks/Omega.git cd Omega git checkout omega-master make clean make MODEL=n0100 OMEGA_USERNAME="" -j8 make MODEL=n0100 OMEGA_USERNAME="" binpack -j8 make OMEGA_USERNAME="" -j8 make OMEGA_USERNAME="" binpack -j8 ``` Important: Don't forget the `--recursive` tag, because Omega relies on submodules. Also, you can change the number of processes that run in parallel during the build by changing the value of the `-j` flag.
Web simulator First, install emsdk : ```bash git clone https://github.com/emscripten-core/emsdk.git cd emsdk ./emsdk install latest-fastcomp ./emsdk activate latest-fastcomp source emsdk_env.sh ``` Then, compile Omega : ```bash git clone --recursive https://github.com/Omega-Numworks/Omega.git cd Omega git checkout omega-master make clean make PLATFORM=simulator TARGET=web OMEGA_USERNAME="{Your name, max 15 characters}" -j4 ``` The simulator is now in `output/release/simulator/web/simulator.zip` Important: Don't forget the `--recursive` tag, because Omega relies on submodules. Also, you can change the number of processes that run in parallel during the build by changing the value of the `-j` flag.
3DS Simulator You need devkitPro and devkitARM installed and in your path (instructions [here](https://devkitpro.org/wiki/Getting_Started)) ```bash git clone --recursive https://github.com/Omega-Numworks/Omega.git cd Omega git checkout --recursive omega-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: ```bash 3dslink output/release/simulator/3ds/epsilon.3dsx -a <3DS' IP ADDRESS> ```
If you need help, you can join our Discord server here : https://discord.gg/X2TWhh9

Omega Banner Discord

--- ## Contributing To contribute, please refer to the [Wiki](https://github.com/Omega-Numworks/Omega/wiki/Contributing) ## Related repositories * [Omega Themes](https://github.com/Omega-Numworks/Omega-Themes) * [Omega Website](https://github.com/Omega-Numworks/Omega-Website) * [Omega RPN `APP`](https://github.com/Omega-Numworks/Omega-RPN) * [Omega Atom `APP`](https://github.com/Omega-Numworks/Omega-Atom) * [Omega Design](https://github.com/Omega-Numworks/Omega-Design) * [Omega Discord Bot](https://github.com/Omega-Numworks/Omega-Discord-Bot) * [Omega App Template `BETA`](https://github.com/Omega-Numworks/Omega-App-Template) * [External Apps](https://github.com/Omega-Numworks/External-Apps) ## About Epsilon Omega is a fork of Epsilon, a high-performance graphing calculator operating system. It includes eight apps that cover the high school mathematics curriculum. You can try Epsilon straight from your browser in the [online simulator](https://www.numworks.com/simulator/). ## License NumWorks is a registered trademark of NumWorks SAS, 24 Rue Godot de Mauroy, 75009 Paris, France. Nintendo and Nintendo 3DS are registered trademarks of Nintendo of America Inc, 4600 150th Ave NE, Redmond, WA 98052, USA. NumWorks SAS and Nintendo of America Inc aren't associated in any shape or form with this project. * NumWorks Epsilon is released under a [CC BY-NC-SA License](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode). * Omega is released under a [CC BY-NC-SA License](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode).