This repository has been archived by the owner on Mar 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.7.3
- Loading branch information
Showing
29 changed files
with
369 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
name: Bug Report 🐞 | ||
about: Something isn't working as expected? Here is the right place to report. | ||
--- | ||
|
||
## Description | ||
|
||
Describe the issue that you're seeing. | ||
|
||
### Steps to reproduce | ||
|
||
Clear steps describing how to reproduce the issue. This makes your issue _much_ easier to diagnose (seriously). | ||
|
||
### Expected result | ||
|
||
What should happen? | ||
|
||
### Actual result | ||
|
||
What happened. | ||
|
||
### Environment | ||
|
||
- What version of Zepio are you using? | ||
- Which Operating System are you using (macOS/Linux/Windows)? What version? | ||
- Are you using an external `zcashd` daemon or the one built inside Zepio? | ||
|
||
### Logs | ||
|
||
- `%APPDATA%/zepio/main-process-logs.txt` on Windows | ||
- `$XDG_CONFIG_HOME/zepio/main-process-logs.txt` or `~/.config/zepio/main-process-logs.txt` on Linux | ||
- `~/Library/Application Support/zepio/main-process-logs.txt` on macOS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
name: Feature Request 💡 | ||
about: Suggest a new idea for the project. | ||
--- | ||
|
||
## Summary | ||
|
||
Brief explanation of the feature. | ||
|
||
### Basic example | ||
|
||
If the proposal involves a new or changed API, include a basic code example. Omit this section if it's not applicable. | ||
|
||
### Motivation | ||
|
||
Why are we doing this? What use cases does it support? What is the expected outcome? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Question 🤔 | ||
about: Usage question or discussion about Gatsby. | ||
--- | ||
|
||
## Summary | ||
|
||
## Relevant information | ||
|
||
### Environment (if relevant) | ||
|
||
- What version of Zepio are you using? | ||
- Which Operating System are you using (macOS/Linux/Windows)? What version? | ||
- Are you using an external `zcashd` daemon or the one built inside Zepio? | ||
|
||
### Logs (if relevant) | ||
|
||
- `%APPDATA%/zepio/main-process-logs.txt` on Windows | ||
- `$XDG_CONFIG_HOME/zepio/main-process-logs.txt` or `~/.config/zepio/main-process-logs.txt` on Linux | ||
- `~/Library/Application Support/zepio/main-process-logs.txt` on macOS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// @flow | ||
import React from 'react'; | ||
import styled from 'styled-components'; | ||
|
||
import { TextComponent } from './text'; | ||
|
||
const Wrapper = styled.div` | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
text-align: center; | ||
`; | ||
|
||
export const LoaderComponent = () => ( | ||
<Wrapper> | ||
<TextComponent value='Loading...' /> | ||
</Wrapper> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// @flow | ||
export const FETCH_STATE = { | ||
INITIALIZING: 'INITIALIZING', | ||
REFETCHING: 'REFETCHING', | ||
SUCCESS: 'SUCCESS', | ||
ERROR: 'ERROR', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.