Replies: 3 comments 4 replies
-
Omg, Thats great. Thanks for the good work, keep ballin! |
Beta Was this translation helpful? Give feedback.
-
Thanks, @Grillekkj. How we can learn from each other, expand our coding skills and collaborate online is wonderful. Remember, you don't need to build an executable to run the tool. Just install packages with Poetry and run main_gui.py. I can make a tutorial if needed. |
Beta Was this translation helpful? Give feedback.
-
Hello borther, amazing post, thanks a lot, was wondering if by any chance i can contact u regarding some help, hopefully there is a way cause it won't be a waste of ur time, Thanks a lot! |
Beta Was this translation helpful? Give feedback.
-
Tutorial: Creating Forks and Building Customized .exe Files for this Project
This tutorial will guide you through the process of forking this project making your desired modifications, and updating the necessary files to build your customized
.exe
file for Windows using GitHub Actions.Step 1: Forking the Project
Fork
button located at the top right corner of the page.Step 2: Making Modifications
Clone the forked repository to your local machine using the following command:
Make the desired modifications to the project code using your preferred code editor.
Step 3: Updating the build.yml File
Navigate to the
.github/workflows
directory in the project.Open the
build.yml
file in your code editor.Locate line 3, which should currently be:
on: [pull_request]
Edit line 3 to the following:
This modification will allow the
Run workflow
button to appear on the GitHub Actions page.Save the changes to the build.yml file.
Step 4: Building the .exe File
Commit and push the changes you made to the forked repository
Go to the GitHub repository page for your forked project.
Click on the
Actions
tab.You will see the updated workflow listed. Click on the
Run workflow
button.Select the desired branch to run the workflow.
GitHub Actions will now build the customized .exe file for Windows.
Once the workflow is completed, you can find the generated .exe file under the
Artifacts
section on the GitHub Actions page.Conclusion
Congratulations! You have successfully created a fork of this project, made your modifications, and built your customized
.exe
file using GitHub Actions. Now you can use the generated.exe
file for Windows according to your needs.It is important to acknowledge that all credits go to @jlplenio for the original project. This tutorial is created solely for study purposes, modifications, and to allow the community to test bugs and different functionalities. It took me some time to figure out how to do this, and I hope this tutorial proves helpful for you and other developers.
Please remember to respect the licenses and copyrights of the original project when making your modifications.
Please note that this tutorial assumes basic knowledge of Git and GitHub.
Beta Was this translation helpful? Give feedback.
All reactions