Compare commits

...

10 Commits

@ -1,25 +1,3 @@
# CyberWOW # CyberWOW Mobile Node
A dumb android pruned full node for Wownero. archived
[<img src="https://f-droid.org/badge/get-it-on.png"
alt="Get it on F-Droid"
height="80">](https://f-droid.org/en/packages/org.wownero.cyberwow/)
<a href='https://play.google.com/store/apps/details?id=org.wownero.cyberwow'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png' height='80'/></a>
## How to build
An example build script that works on an F-droid build server, which is based on debian stable, is here:
<https://gitlab.com/fdroid/fdroiddata/-/raw/master/metadata/org.wownero.cyberwow.yml>
## How to use custom start up arguments
Sending the arguments to an unopened CyberWOW app will cause `wownerod` to use them on start up, for example:
`--add-exclusive-node 192.168.1.3`
## F-droid build status
<https://f-droid.org/wiki/page/org.wownero.cyberwow/lastbuild>

@ -41,8 +41,8 @@ android {
applicationId "org.wownero.cyberwow" applicationId "org.wownero.cyberwow"
minSdkVersion 26 minSdkVersion 26
targetSdkVersion 29 targetSdkVersion 29
versionCode 26 versionCode 28
versionName "0.8.0.0" versionName "0.9.3.3"
} }
if(project.hasProperty("RELEASE_STORE_FILE")) { if(project.hasProperty("RELEASE_STORE_FILE")) {

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

@ -84,7 +84,7 @@ final config = CryptoConfig
( (
'libwownerod.so', 'libwownerod.so',
'wownerod', 'wownerod',
'Follow the white rabbit.', 'You ever danced with the devil in the pale moonlight?',
70, 70,
_theme, _theme,
34568, 34568,

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

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

@ -22,6 +22,7 @@ let
qrcode qrcode
requests requests
ruamel_yaml ruamel_yaml
libvirt
] ]
; python-with-fdroid-packages = pkgs.python3.withPackages fdroid-python-packages ; python-with-fdroid-packages = pkgs.python3.withPackages fdroid-python-packages

@ -35,6 +35,6 @@ source etc/scripts/build-external-libs/env.sh
build_root=$BUILD_PATH build_root=$BUILD_PATH
chmod u+w -R $build_root chmod u+w -f -R $build_root || true
rm -rf $build_root rm -rf $build_root
mkdir -p $build_root mkdir -p $build_root

@ -37,7 +37,7 @@ build_root=$BUILD_ROOT
src_root=$BUILD_ROOT_SRC src_root=$BUILD_ROOT_SRC
name=openssl name=openssl
version=1.1.1g version=1.1.1k
cd $src_root/${name}-${version} cd $src_root/${name}-${version}

@ -36,8 +36,8 @@ source etc/scripts/build-external-libs/env.sh
cd $BUILD_ROOT_SRC cd $BUILD_ROOT_SRC
name=openssl name=openssl
version=1.1.1g version=1.1.1k
hash=ddb04774f1e32f0c49751e21b67216ac87852ceb056b75209af2443400636d46 hash=892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5
url=https://www.openssl.org/source/openssl-${version}.tar.gz url=https://www.openssl.org/source/openssl-${version}.tar.gz
out=openssl-${version}.tar.gz out=openssl-${version}.tar.gz

@ -36,9 +36,8 @@ source etc/scripts/build-external-libs/env.sh
cd $BUILD_ROOT_SRC cd $BUILD_ROOT_SRC
name=wownero name=wownero
version=v0.8.0.0 version=v0.9.3.3
# version=dev-v0.8 githash=e2d2b9a447502e22467af9df20e0732b3dd4ac4c
githash=1271a7e3a97c0d81816b401627aefb6c6697d0b3
out=wownero out=wownero
chmod u+w -f -R $out || true chmod u+w -f -R $out || true
@ -51,7 +50,7 @@ if [ ! -z $SRC_WOWNERO_DIR ]; then
chmod u+w -R $out/external chmod u+w -R $out/external
cd $name cd $name
else else
git clone --depth 1 https://github.com/wownero/wownero.git -b $version git clone --depth 1 https://git.wownero.com/wownero/wownero.git -b $version
cd $name cd $name
test `git rev-parse HEAD` = $githash || exit 1 test `git rev-parse HEAD` = $githash || exit 1
fi fi

@ -0,0 +1 @@
* Base on Wownero v0.9 Illiterate Illuminati

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 29 KiB