Skip to content

Commit

Permalink
sync latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Official-Husko committed Jun 25, 2024
1 parent 4751695 commit 7845bd3
Show file tree
Hide file tree
Showing 97 changed files with 7,198 additions and 7,478 deletions.
75 changes: 37 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,37 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: Official-Husko

---

**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.
---
name: Bug report
about: Create a report to help me improve Mul-Tor
title: '[BUG] '
labels: bug
assignees: Official-Husko

---

**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.

**Setup (please complete the following information):**
- OS: [e.g. Windows 11]
- Tool Version: [e.g. 1.5.2]
- Filename/s: [e.g. Vacation Images.7z, Birthday Images.7z]
- File Size/s: [e.g. 2.5 MB, 2 GB]
- Selected Hosts: [e.g. Pixeldrain, Gofile]

**Additional info**\
Add any other info about the problem here.

> [!CAUTION]
> Please always attach the runtime.log file.
40 changes: 20 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
---
name: Feature request
about: Suggest an idea for this project
title: '[REQ] '
labels: enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**\
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**\
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**\
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**\
Add any other context or screenshots about the feature request here.
20 changes: 10 additions & 10 deletions .github/ISSUE_TEMPLATE/site-information.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
name: Site information
about: 'This is used to show known website issues '
title: "[INFO]"
labels: info
assignees: Official-Husko

---


---
name: Site information
about: 'This is used to show known website issues'
title: "[INFO] "
labels: info
assignees: Official-Husko

---


44 changes: 22 additions & 22 deletions .github/ISSUE_TEMPLATE/site-support-request.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
---
name: Site Support Request
about: Suggest a new site to be supported
title: "[SITE REQ]"
labels: enhancement, site request
assignees: Official-Husko

---

**Please give me the links that apply below**
Main Website: https://example.com
API URL: https://api.example.com

**Please fill out the information below:**

- [ ] This site has an API
- [ ] This site requires an account
- [ ] This site is requires a subscription
- [ ] I would be willing to give a premium account to add the site

**Is there anything else you would like to add that might help me?**
This can be anything you want.
---
name: Site Support Request
about: Suggest a new site to be supported
title: "[SITE REQ] "
labels: enhancement, site request
assignees: Official-Husko

---

**Please give me the links that apply below**\
Main Website: https://example.com
API URL: https://api.example.com

**Please fill out the information below:**\

- [ ] This site has an API
- [ ] This site requires an account
- [ ] This site is requires a subscription
- [ ] I would be willing to give a premium account to add the site

**Is there anything else you would like to add that might help me?**\
This can be anything you want.
43 changes: 43 additions & 0 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build Windows Executable

on:
push:
branches:
- development # Adjust branch name as needed

jobs:
build:
runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12.4 # Specify the Python version you need

- name: Create virtual environment and build
shell: bash
run: |
python -m venv .env
source .env/Scripts/activate
python -m pip install --upgrade pip
pip install pyinstaller
pip install -r requirements.txt # Replace with your requirements file if exists
pyinstaller --paths .env/Lib/site-packages \
--hidden-import plyer.platforms.win.filechooser \
--add-data=".env/Lib/site-packages/grapheme/data/*;grapheme/data/" \
--onefile \
--icon "icon.ico" \
--console \
--name "Mul-Tor" \
main.py
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: mul-tor-windows
path: dist/Mul-Tor.exe # Adjust the path to your executable relative to the root of the repository
Loading

0 comments on commit 7845bd3

Please sign in to comment.