lol: rebrand: gui

lolnode
fuwa 4 years ago
parent 5a6173d7f3
commit fcd72d1fa9

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 MiB

@ -38,7 +38,7 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "org.wownero.cyberwow"
applicationId "org.lolnero.node"
minSdkVersion 26
targetSdkVersion 29
versionCode 27

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.wownero.cyberwow">
package="org.lolnero.node">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->

@ -1,9 +1,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.wownero.cyberwow">
package="org.lolnero.node">
<application
android:name="io.flutter.app.FlutterApplication"
android:label="CyberWOW"
android:label="L node"
android:icon="@drawable/icon">
<activity
android:name=".MainActivity"

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.wownero.cyberwow">
package="org.lolnero.node">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

@ -20,7 +20,7 @@ along with CyberWOW. If not, see <https://www.gnu.org/licenses/>.
*/
import 'config/prototype.dart';
import 'config/cyberwow.dart' as cryptoConfig;
import 'config/lolnode.dart' as cryptoConfig;
final c = cryptoConfig.config;
@ -28,7 +28,7 @@ enum Arch { arm64, x86_64 }
const arch = Arch.arm64;
// const arch = 'x86_64';
const minimumHeight = 118361;
const minimumHeight = 60;
const isEmu = identical(arch, Arch.x86_64);
const emuHost = '192.168.10.100';

@ -23,7 +23,8 @@ import 'package:flutter/material.dart';
import 'prototype.dart';
const crtGreen = Color.fromRGBO(0, 255, 102, 1);
// const crtGreen = Color.fromRGBO(0, 255, 102, 1);
const crtGreen = Color.fromRGBO(51, 255, 51, 0.9);
final _theme = ThemeData
(
@ -82,24 +83,19 @@ final _theme = ThemeData
final config = CryptoConfig
(
'libwownerod.so',
'liblolnerod.so',
'wownerod',
'Follow the white rabbit.',
'Is this a test, sir?',
70,
_theme,
34568,
45679,
[
'--prune-blockchain',
'--max-concurrency=1',
'--fast-block-sync=1',
'--block-sync-size=5',
'--no-igd',
'--check-updates=disabled',
'--disable-dns-checkpoints',
'--log-file=/dev/null',
'--max-log-file-size=0',
'--p2p-use-ipv6',
'--hide-my-port',
'--add-exclusive-node=192.168.10.100',
],
'[1337@cyberwow]: ',
'[1337@lol]: ',
6,
);

@ -0,0 +1,99 @@
/*
Copyright 2019 fuwa
This file is part of LOLnode.
LOLnode is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
LOLnode is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with LOLnode. If not, see <https://www.gnu.org/licenses/>.
*/
import 'package:flutter/material.dart';
import 'prototype.dart';
// const crtGreen = Color.fromRGBO(0, 255, 102, 1);
const crtGreen = Color.fromRGBO(51, 255, 51, 0.9);
final _theme = ThemeData
(
brightness: Brightness.dark,
primaryColor: crtGreen,
hintColor: Colors.yellow,
accentColor: crtGreen,
cursorColor: crtGreen,
backgroundColor: Colors.black,
scaffoldBackgroundColor: Colors.black,
textTheme: TextTheme
(
display1: TextStyle
(
fontFamily: 'RobotoMono',
fontSize: 35,
fontWeight: FontWeight.bold,
),
display2: TextStyle
(
fontFamily: 'RobotoMono',
fontSize: 22,
),
title: TextStyle
(
fontFamily: 'VT323',
fontSize: 22,
),
subhead: TextStyle
(
fontFamily: 'RobotoMono',
fontSize: 17,
fontWeight: FontWeight.bold,
),
body1: TextStyle
(
fontFamily: 'VT323',
fontSize: 17,
height: 1,
),
body2: TextStyle
(
fontFamily: 'RobotoMono',
fontSize: 12.5,
),
).apply
(
bodyColor: crtGreen,
displayColor: crtGreen,
),
);
final config = CryptoConfig
(
'liblolnerod.so',
'lolnerod',
'Is this a test, sir?',
70,
_theme,
45679,
[
'--log-file=/dev/null',
'--max-log-file-size=0',
'--p2p-use-ipv6',
],
'[1337@lol]: ',
6,
);

@ -54,7 +54,7 @@ Widget summary(BuildContext context, SyncedState state) {
flex: 17,
),
Image.asset
('assets/wownero_symbol.png',
('assets/lolnode_icon.png',
height: 220,
),
Spacer

@ -1,7 +1,7 @@
name: cyberwow
description: A new Flutter project.
name: lolnode
description: A lolnode mobile node
version: 0.8.0+1
version: 0.5.0+1
environment:
sdk: ">=2.1.0 <3.0.0"
@ -25,7 +25,7 @@ flutter:
uses-material-design: true
assets:
- assets/wownero_symbol.png
- assets/lolnode_icon.png
fonts:
- family: RobotoMono

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB