Skip to content

Commit

Permalink
Revert "v0.0.9"
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeusLN authored and kaloudis committed Apr 9, 2019
1 parent c3736b3 commit 12b6cfd
Show file tree
Hide file tree
Showing 37 changed files with 672 additions and 932 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# Zeus
A mobile Bitcoin app for Lightning Network Daemon (lnd) node operators ⚡️

<p align="center"><img src="https://user-images.githubusercontent.com/47701173/55417522-d7e5b680-553e-11e9-9488-a322d6c1d021.png"></p>
<p align="center"><img src="https://user-images.githubusercontent.com/47701173/53062398-b8af3000-348e-11e9-8630-2e07c1b28bf5.png"></p>

Zeus is built on TypeScript and React Native. It runs on both iOS and Android.


Zeus is built on TypeScript and React-Native. It runs on both iOS and Android.

*Disclaimer*: Zeus and Lightning in general are software projects in their early development stages. Please be wary when using Lightning and do not fund your node with more money than you are willing to lose.

### App Store links
* [F-Droid](https://staging.f-droid.org/en/packages/com.zeusln.zeus/)
* [Google Play](https://play.google.com/store/apps/details?id=com.zeusln.zeus)
* [Apple TestFlight](https://testflight.apple.com/join/gpVFzEHN)

Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ android {
applicationId "com.zeusln.zeus"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 9
versionName "0.0.9"
versionCode 8
versionName "0.0.8"
}
signingConfigs {
release {
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">#000000</item>
<item name="colorPrimaryDark">@color/black</item>
<item name="colorAccent">@color/orange</item>
Expand Down
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

buildscript {
ext {
buildToolsVersion = "28.0.3"
buildToolsVersion = "28.0.2"
minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 27
Expand All @@ -13,7 +13,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'com.android.tools.build:gradle:3.2.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -34,6 +34,6 @@ allprojects {


wrapper {
gradleVersion = '4.10.1'
gradleVersion = '4.7'
distributionUrl = distributionUrl.replace("bin", "all")
}
2 changes: 1 addition & 1 deletion android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-all.zip
53 changes: 0 additions & 53 deletions components/BalanceSlider.tsx

This file was deleted.

86 changes: 0 additions & 86 deletions components/CollapsedQR.tsx

This file was deleted.

13 changes: 3 additions & 10 deletions components/CopyButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,10 @@ export default class CopyButton extends React.Component<CopyButtonProps, CopyBut
size: 25,
color: copied ? "black" : "white"
}}
containerStyle={{
marginBottom: 20
}}
buttonStyle={{
backgroundColor: copied ? "white" : "black",
borderRadius: 30
}}
titleStyle={{
color: copied ? "black" : "white"
}}
backgroundColor={copied ? "white" : "black"}
color={copied ? "black" : "white"}
onPress={() => this.copyToClipboard()}
borderRadius={30}
/>
);
}
Expand Down
Binary file removed images/lightning-green-black.png
Binary file not shown.
Binary file removed images/lightning-green-pending-black.png
Binary file not shown.
Binary file removed images/lightning-red-black.png
Binary file not shown.
Binary file removed images/lightning-red-pending-black.png
Binary file not shown.
Binary file removed images/onchain-green-black.png
Binary file not shown.
Binary file removed images/onchain-green-pending-black.png
Binary file not shown.
Binary file removed images/onchain-red-black.png
Binary file not shown.
Binary file removed images/onchain-red-pending-black.png
Binary file not shown.
2 changes: 1 addition & 1 deletion ios/zeus/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.0.9</string>
<string>0.0.8</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
Loading

0 comments on commit 12b6cfd

Please sign in to comment.