Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# edge-react-gui

## Unreleased (develop)

- added: Debug settings scene (Developer Mode only) with nodes/servers inspection, engine `dataDump` viewer, and log viewer

## 4.45.0 (staging)

- fixed: Fixed Zano token minting transaction detection issues.
Expand Down
9 changes: 9 additions & 0 deletions src/components/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ import { CreateWalletImportScene as CreateWalletImportSceneComponent } from './s
import { CreateWalletSelectCryptoScene as CreateWalletSelectCryptoSceneComponent } from './scenes/CreateWalletSelectCryptoScene'
import { CurrencyNotificationScene as CurrencyNotificationSceneComponent } from './scenes/CurrencyNotificationScene'
import { CurrencySettingsScene as CurrencySettingsSceneComponent } from './scenes/CurrencySettingsScene'
import { DebugScene as DebugSceneComponent } from './scenes/DebugScene'
import { DefaultFiatSettingScene as DefaultFiatSettingSceneComponent } from './scenes/DefaultFiatSettingScene'
import { DevTestScene } from './scenes/DevTestScene'
import { DuressModeHowToScene as DuressModeHowToSceneComponent } from './scenes/DuressModeHowToScene'
Expand Down Expand Up @@ -209,6 +210,7 @@ const CreateWalletSelectFiatScene = ifLoggedIn(
)
const CurrencyNotificationScene = ifLoggedIn(CurrencyNotificationSceneComponent)
const CurrencySettingsScene = ifLoggedIn(CurrencySettingsSceneComponent)
const DebugScene = ifLoggedIn(DebugSceneComponent)
const DefaultFiatSettingScene = ifLoggedIn(DefaultFiatSettingSceneComponent)
const EarnScene = ifLoggedIn(EarnSceneComponent)
const EdgeLoginScene = ifLoggedIn(EdgeLoginSceneComponent)
Expand Down Expand Up @@ -1105,6 +1107,13 @@ const EdgeAppStack: React.FC = () => {
options={{ headerShown: false }}
/>
<AppStack.Screen name="send2" component={SendScene2} />
<AppStack.Screen
name="debugSettings"
component={DebugScene}
options={{
title: lstrings.settings_debug_title
}}
/>
<AppStack.Screen
name="settingsOverview"
component={SettingsScene}
Expand Down
Loading
Loading