Skip to content

Commit

Permalink
v0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Hidden-Warden committed Jul 2, 2022
1 parent db158c2 commit 37ef7bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions MyCards.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Version:
#0.7.0
#0.7.5
###
import os ### Librairie #4
import csv ### .py & Librairie #5
Expand Down Expand Up @@ -219,7 +219,7 @@ def ImageRelated():
ListScrennshot=[]
ImageNum=0
Activated=True #Was the function called?
path = "Screenshots/"
path = Screenshots_Folder_Path
dir_list = os.listdir(path)
##
for i in range(0,99):
Expand Down Expand Up @@ -274,7 +274,7 @@ def ImageNext():
global ImageNum
global Activated
if Activated==True:
path = "Screenshots/"
path = Screenshots_Folder_Path
dir_list = os.listdir(path)
if len(Final)>ImageNum+1:
print('ok Next')
Expand All @@ -292,7 +292,7 @@ def ImageBack():
global ImageNum
global Activated
if Activated==True:
path = "Screenshots/"
path = Screenshots_Folder_Path
dir_list = os.listdir(path)
if ImageNum>0:
print('ok Back')
Expand Down
2 changes: 1 addition & 1 deletion settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
s_delimiter=";" #Delimiter used in the CSV file (";" / ",")
screenshot_type=".png" #Type of screenshot (".png" / ".jpg")
adjust_screenshot_size=True #True(Adjust screenshot size) to the frame, False(Keep original size)

Screenshots_Folder_Path="Screenshots/" #Path to the Screenshots folder | "Screenshots/" default (if in the same folder as the program) | "C:/Folder1/Screenshots-MyCards/" don't forget the "/" at the end and replace all the "\" by "/" in the path

first_colonne=5 #The higher the value, the more to the left
scnd_colonne=2.2 #The higher the value, the more to the left
Expand Down

0 comments on commit 37ef7bf

Please sign in to comment.