4 Commits
3.1.1 ... 3.1.2

Author SHA1 Message Date
YourKalamity
2a7bfd934e Fix failing unlaunch link 2021-02-09 12:11:56 +00:00
YourKalamity
f09059791d Merge branch 'master' of https://github.com/YourKalamity/lazy-dsi-file-downloader 2021-01-07 21:00:21 +00:00
YourKalamity
9b42582d79 Fix small bug thanks NinjaCheetah 2021-01-07 20:59:42 +00:00
Kalam :p
604ba5afa0 Update issue templates 2020-12-21 12:19:17 +00:00
2 changed files with 36 additions and 4 deletions

32
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@@ -0,0 +1,32 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG] - "
labels: bug
assignees: ''
---
**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]
- Python version [if using Python]
**Additional context**
Add any other context about the problem here.

View File

@@ -43,7 +43,8 @@ def downloadFile(link, destination):
downloadLocation = destination + fileName
open(downloadLocation, 'wb').write(r.content)
return downloadLocation
except ConnectionError:
except ConnectionError as e:
print(e)
print("File not available, skipping...")
return None
@@ -243,14 +244,13 @@ def start():
if unlaunchNeeded == 1 :
#Download Unlaunch
url = "https://problemkaputt.de/unlaunch.zip"
url = "https://web.archive.org/web/20210207235625if_/https://problemkaputt.de/unlaunch.zip"
outputbox("Downloading Unlaunch\n")
unlaunchLocation = downloadFile(url, cwdtemp)
if unlaunchLocation != None:
print("Unlaunch Downloaded")
outputbox("Unlaunch Downloaded\n")
lineCounter = lineCounter + 1
#Extract Unlaunch
unzipper(unlaunchLocation,directory)
@@ -667,7 +667,7 @@ if __name__ == "__main__":
else: #Non Jeve Stobs worshippers
from tkmacosx import Button
from tkinter import Button
backgroundColour = "#252a34"
foregroundColour = "white"
buttonColour = "#7289DA"