-
i'd like to contribute, but without combing through the code for hours i don't feel like i would get a good understanding of how each piece fits together. can someone explain the program flow? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Maybe you can pick one specific function you want to study/update so we can point you to code locations? |
Beta Was this translation helpful? Give feedback.
-
Hi @ceeb9 are there any features you would like to implement or bugs you want to fix? We'll happily point you in the right direction. FreeTube uses the Vue 2 framework, which is designed around views (pages) and components. Each view can contain HTML and various components and each component can contain just HTML or other components as well. In FreeTube the views are in Examples of views are the subscriptions page or the watch page |
Beta Was this translation helpful? Give feedback.
-
@ceeb9 do you think that your questions have been answered? |
Beta Was this translation helpful? Give feedback.
Hi @ceeb9 are there any features you would like to implement or bugs you want to fix? We'll happily point you in the right direction.
FreeTube uses the Vue 2 framework, which is designed around views (pages) and components. Each view can contain HTML and various components and each component can contain just HTML or other components as well. In FreeTube the views are in
src/renderer/views
and the components insrc/renderer/components
.Examples of views are the subscriptions page or the watch page
Examples of components are the video player, the video description, the comments, etc