-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1380 from Giveth/develop
Release 2.2.0
- Loading branch information
Showing
249 changed files
with
9,524 additions
and
4,497 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
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,38 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: BUG | ||
labels: bug | ||
assignees: MoeNick | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,22 @@ | ||
--- | ||
name: User Story | ||
about: 'Smallest unit of work. It''s an end goal, expressed from the software user''s | ||
perspective. ' | ||
title: User Story | ||
labels: User Story | ||
assignees: '' | ||
|
||
--- | ||
|
||
**As a [_persona_], I [_want to_], [_so that_].** | ||
|
||
Breaking this down: | ||
|
||
"As a [persona]": Who are we building this for? We’re not just after a job title, we’re after the persona of the person. Max. Our team should have a shared understanding of who Max is. We’ve hopefully interviewed plenty of Max’s. We understand how that person works, how they think and what they feel. We have empathy for Max. | ||
“Wants to”: Here we’re describing their intent — not the features they use. What is it they’re actually trying to achieve? This statement should be implementation free — if you’re describing any part of the UI and not what the user goal is you're missing the point. | ||
“So that”: how does their immediate desire to do something this fit into their bigger picture? What’s the overall benefit they’re trying to achieve? What is the big problem that needs solving? | ||
|
||
For example, user stories might look like: | ||
As Max, I want to invite my friends, so we can enjoy this service together. | ||
As Sascha, I want to organize my work, so I can feel more in control. | ||
As a manager, I want to be able to understand my colleagues progress, so I can better report our sucess and failures. |
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
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,15 @@ | ||
import React, { useEffect } from 'react'; | ||
|
||
import { setShowFooter } from '@/features/general/general.slice'; | ||
import EmailVerificationIndex from '@/components/views/verification/EmailVerificationIndex'; | ||
import { useAppDispatch } from '@/features/hooks'; | ||
|
||
export default function Token() { | ||
const dispatch = useAppDispatch(); | ||
|
||
useEffect(() => { | ||
dispatch(setShowFooter(false)); | ||
}, []); | ||
|
||
return <EmailVerificationIndex />; | ||
} |
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,25 @@ | ||
import Head from 'next/head'; | ||
import { useEffect } from 'react'; | ||
import VerificationIndex from '@/components/views/verification/VerificationIndex'; | ||
import { setShowFooter } from '@/features/general/general.slice'; | ||
import { VerificationProvider } from '@/context/verification.context'; | ||
import { useAppDispatch } from '@/features/hooks'; | ||
|
||
const VerificationRoute = () => { | ||
const dispatch = useAppDispatch(); | ||
|
||
useEffect(() => { | ||
dispatch(setShowFooter(false)); | ||
}, []); | ||
|
||
return ( | ||
<VerificationProvider> | ||
<Head> | ||
<title>Verify a Project | Giveth</title> | ||
</Head> | ||
<VerificationIndex /> | ||
</VerificationProvider> | ||
); | ||
}; | ||
|
||
export default VerificationRoute; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
910f714
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
giveth-dapps-v2 – ./
www.giveth.io
giveth-dapps-v2-git-main-givethio.vercel.app
giveth-dapps-v2-givethio.vercel.app
giveth.io