mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2024-08-14 23:57:27 +00:00 
			
		
		
		
	Add github and btc address.
This commit is contained in:
		
							parent
							
								
									be78b037d4
								
							
						
					
					
						commit
						ad35531388
					
				
					 5 changed files with 31 additions and 1 deletions
				
			
		| 
						 | 
					@ -47,6 +47,12 @@ The documentation can be found at https://piped-docs.kavin.rocks (accessible via
 | 
				
			||||||

 | 
					
 | 
				
			||||||

 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Donations
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Donations can be made at 13MoHioctZkC7LDSZSb4m32TDT8xNmei1p (BTC)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Contributions in any other form are also welcomed.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Development Setup
 | 
					## Development Setup
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9,6 +9,7 @@
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "dependencies": {
 | 
					    "dependencies": {
 | 
				
			||||||
        "@fortawesome/fontawesome-svg-core": "^1.2.35",
 | 
					        "@fortawesome/fontawesome-svg-core": "^1.2.35",
 | 
				
			||||||
 | 
					        "@fortawesome/free-brands-svg-icons": "^5.15.3",
 | 
				
			||||||
        "@fortawesome/free-solid-svg-icons": "^5.15.3",
 | 
					        "@fortawesome/free-solid-svg-icons": "^5.15.3",
 | 
				
			||||||
        "@fortawesome/vue-fontawesome": "^3.0.0-2",
 | 
					        "@fortawesome/vue-fontawesome": "^3.0.0-2",
 | 
				
			||||||
        "core-js": "^3.9.1",
 | 
					        "core-js": "^3.9.1",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										15
									
								
								src/App.vue
									
										
									
									
									
								
							
							
						
						
									
										15
									
								
								src/App.vue
									
										
									
									
									
								
							| 
						 | 
					@ -42,6 +42,21 @@
 | 
				
			||||||
        </nav>
 | 
					        </nav>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <router-view />
 | 
					        <router-view />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <div style="text-align: center">
 | 
				
			||||||
 | 
					            <a href="https://github.com/TeamPiped/Piped">
 | 
				
			||||||
 | 
					                <font-awesome-icon
 | 
				
			||||||
 | 
					                    :icon="['fab', 'github']"
 | 
				
			||||||
 | 
					                ></font-awesome-icon>
 | 
				
			||||||
 | 
					            </a>
 | 
				
			||||||
 | 
					             
 | 
				
			||||||
 | 
					            <a href="bitcoin://13MoHioctZkC7LDSZSb4m32TDT8xNmei1p">
 | 
				
			||||||
 | 
					                <font-awesome-icon
 | 
				
			||||||
 | 
					                    :icon="['fab', 'bitcoin']"
 | 
				
			||||||
 | 
					                ></font-awesome-icon>
 | 
				
			||||||
 | 
					                13MoHioctZkC7LDSZSb4m32TDT8xNmei1p
 | 
				
			||||||
 | 
					            </a>
 | 
				
			||||||
 | 
					        </div>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,8 +1,9 @@
 | 
				
			||||||
import { createApp } from 'vue'
 | 
					import { createApp } from 'vue'
 | 
				
			||||||
import { library } from '@fortawesome/fontawesome-svg-core'
 | 
					import { library } from '@fortawesome/fontawesome-svg-core'
 | 
				
			||||||
import { faThumbsUp, faThumbsDown, faEye } from '@fortawesome/free-solid-svg-icons'
 | 
					import { faThumbsUp, faThumbsDown, faEye } from '@fortawesome/free-solid-svg-icons'
 | 
				
			||||||
 | 
					import { faGithub, faBitcoin } from '@fortawesome/free-brands-svg-icons'
 | 
				
			||||||
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
 | 
					import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
 | 
				
			||||||
library.add(faThumbsUp, faThumbsDown, faEye)
 | 
					library.add(faThumbsUp, faThumbsDown, faEye, faGithub, faBitcoin)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import("uikit/src/less/uikit.less")
 | 
					import("uikit/src/less/uikit.less")
 | 
				
			||||||
import("uikit/dist/js/uikit.min.js")
 | 
					import("uikit/dist/js/uikit.min.js")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -891,6 +891,13 @@
 | 
				
			||||||
  dependencies:
 | 
					  dependencies:
 | 
				
			||||||
    "@fortawesome/fontawesome-common-types" "^0.2.35"
 | 
					    "@fortawesome/fontawesome-common-types" "^0.2.35"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@fortawesome/free-brands-svg-icons@^5.15.3":
 | 
				
			||||||
 | 
					  version "5.15.3"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-5.15.3.tgz#bec2821d23b9c667be1d192a6c5bfb2667e588eb"
 | 
				
			||||||
 | 
					  integrity sha512-1hirPcbjj72ZJtFvdnXGPbAbpn3Ox6mH3g5STbANFp3vGSiE5u5ingAKV06mK6ZVqNYxUPlh4DlTnaIvLtF2kw==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    "@fortawesome/fontawesome-common-types" "^0.2.35"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
"@fortawesome/free-solid-svg-icons@^5.15.3":
 | 
					"@fortawesome/free-solid-svg-icons@^5.15.3":
 | 
				
			||||||
  version "5.15.3"
 | 
					  version "5.15.3"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.15.3.tgz#52eebe354f60dc77e0bde934ffc5c75ffd04f9d8"
 | 
					  resolved "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.15.3.tgz#52eebe354f60dc77e0bde934ffc5c75ffd04f9d8"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue