Skip to content
This repository has been archived by the owner on Jun 28, 2020. It is now read-only.

Commit

Permalink
Merge pull request #2 from fuwa0529/fastlane
Browse files Browse the repository at this point in the history
Fastlane
  • Loading branch information
fuwa authored Dec 1, 2019
2 parents c5e54ea + 2669667 commit e864c55
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 5 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ build:
cd cyberwow && \
flutter build apk --target-platform android-arm64

install: build
cd cyberwow && \
flutter install

# build wownero android binary

Expand Down Expand Up @@ -109,3 +112,9 @@ collect-wownero: wownero
collect-wownero-fake:
$(script)/collect-fake.sh


# etc

remove-exif:
exiftool -all= `find fastlane/ -name '*.jp*g' -o -name '*.png'`

4 changes: 2 additions & 2 deletions cyberwow/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ android {
applicationId "org.wownero.cyberwow"
minSdkVersion 23
targetSdkVersion 28
versionCode 21
versionName "0.7.0.0-h"
versionCode 22
versionName "0.7.0.0-i"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

Expand Down
1 change: 0 additions & 1 deletion cyberwow/lib/controller/process/run.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ Stream<String> runBinary
];
const List<String> releaseArgs =
[
"--restricted-rpc"
];

const extraArgs = kReleaseMode ? releaseArgs : debugArgs;
Expand Down
2 changes: 1 addition & 1 deletion cyberwow/lib/controller/rpc/rpc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Future<dynamic> rpc(final String method, {final String field}) async {
return null;
} else {
final _body = await compute(jsonDecode, response.body);
final _result = _body['result'];
final _result = _body['result'] ?? const {};
final _field = field == null ? _result : _result[field];

return _field;
Expand Down
2 changes: 1 addition & 1 deletion cyberwow/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description: A new Flutter project.
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 0.7.0+21
version: 0.7.0+22

environment:
sdk: ">=2.1.0 <3.0.0"
Expand Down
3 changes: 3 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/22.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* Fix an RPC error caused by null result
* Add fastlane metadata
* Enable UI in release mode
8 changes: 8 additions & 0 deletions fastlane/metadata/android/en-US/full_description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
CyberWOW is a pruned full node for Wownero.

Wownero is a privacy-centric memecoin that was fairly launched on April 1, 2018
with no pre-mine, stealth-mine or ICO. Wownero has a maximum supply of around
184 million WOW with a slow and steady emission over 50 years. It is a fork of
Monero, but with its own genesis block, so there is no degradation of privacy
due to ring signatures using different participants for the same tx outputs on
opposing forks.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/short_description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A Wownero mobile daemon
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/title.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CyberWOW

0 comments on commit e864c55

Please sign in to comment.