File tree Expand file tree Collapse file tree 9 files changed +30496
-9965
lines changed Expand file tree Collapse file tree 9 files changed +30496
-9965
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ import Simulator from "./pages/Simulator";
2121import FullSimulator from "./pages/simulator/FullSimulator" ;
2222import "./sass/omega.library.sass" ;
2323import TiPlanetConnector from "./TiPlanetConnector" ;
24+ import epsilon from "./pages/epsilon" ;
2425
2526
2627
@@ -80,6 +81,7 @@ function App() {
8081 < Route path = "/policy" component = { Policy } exact />
8182 < Route path = "/archiving" component = { Archiving } exact />
8283 < Route path = "/ide/" component = { IDEMain } exact />
84+ < Route path = "/epsilon" component = { epsilon } exact />
8385 < Route
8486 path = "/ide/editor"
8587 component = { ( ) => (
Original file line number Diff line number Diff line change 1+ import { Releases } from "./firmwares" ;
2+
3+ export const epsilon : Releases = {
4+ latest : "E15" ,
5+ firmwares : [
6+ {
7+ name : "E15" ,
8+ commit : "2883f0c599e525ac70af2994abfd426bc3d60e49" ,
9+ changelog : [
10+ ] ,
11+ compatibility : {
12+ N0110 : true ,
13+ N0100 : true ,
14+ web : false ,
15+ android : false ,
16+ "3ds" : false ,
17+ } ,
18+ available : true ,
19+ setname : false ,
20+ } ,
21+ ] ,
22+ } ;
Original file line number Diff line number Diff line change 9090 "toolbar.myscripts" : " Meine Skripte" ,
9191 "toolbar.omega" : " Omega" ,
9292 "toolbar.releases" : " Veröffentlichungen" ,
93- "toolbar.simulator" : " Simulator"
93+ "toolbar.simulator" : " Simulator" ,
94+ "e15" : " Epsilon 15 installieren"
9495}
Original file line number Diff line number Diff line change 109109 "toolbar.omega" : " Omega" ,
110110 "toolbar.releases" : " Releases" ,
111111 "toolbar.simulator" : " Simulator" ,
112- "toolbar.wiki" : " Wiki"
112+ "toolbar.wiki" : " Wiki" ,
113+ "e15" : " Install Epsilon 15"
113114}
Original file line number Diff line number Diff line change 109109 "toolbar.omega" : " Omega" ,
110110 "toolbar.releases" : " Versions" ,
111111 "toolbar.simulator" : " Simulateur" ,
112- "toolbar.wiki" : " Wiki"
112+ "toolbar.wiki" : " Wiki" ,
113+ "e15" : " Installer Epsilon 15"
113114}
Original file line number Diff line number Diff line change 9090 "toolbar.myscripts" : " I miei scripts" ,
9191 "toolbar.omega" : " Omega" ,
9292 "toolbar.releases" : " Versioni" ,
93- "toolbar.simulator" : " Simulatore"
93+ "toolbar.simulator" : " Simulatore" ,
94+ "e15" :" installare epsilon 15"
9495}
Original file line number Diff line number Diff line change 551551 "id" : " soon" ,
552552 "defaultMessage" : " Will be avaliable soon! 😄" ,
553553 "filepath" : " src/pages/Soon.js"
554+ },
555+ {
556+ "id" : " e15" ,
557+ "defaultMessage" : " Install Epsilon 15" ,
558+ "filepath" : " src/pages/e15.js"
554559 }
555560]
Original file line number Diff line number Diff line change 1+ import React , { Component } from "react" ;
2+ import ReleaseCard from "../components/releasecard/ReleaseCard" ;
3+ import { FormattedMessage } from "react-intl" ;
4+ import { epsilon } from "../firmware/epsilon" ;
5+
6+ import styles from "./sass/Releases.module.sass" ;
7+
8+ export default class Beta extends Component < { } > {
9+ render ( ) {
10+ return (
11+ < div className = "content" >
12+ < div className = { styles . banner } >
13+ < div className = { styles . title } > Epsilon 15</ div >
14+ < div className = { styles . description } >
15+ < FormattedMessage
16+ defaultMessage = "Install epsilon 15."
17+ id = "epsilon15"
18+ />
19+ </ div >
20+ </ div >
21+ < div style = { { height : "16px" } } > </ div >
22+ < div className = { styles . cards } >
23+ < ReleaseCard
24+ version = { epsilon . firmwares [ 0 ] }
25+ name = "Epsilon 15"
26+ />
27+ </ div >
28+ < div style = { { height : "16px" } } > </ div >
29+ </ div >
30+ ) ;
31+ }
32+ }
You can’t perform that action at this time.
0 commit comments