Skip to content

Commit 7a01cc0

Browse files
committed
3.32
1 parent af572b4 commit 7a01cc0

4 files changed

Lines changed: 12 additions & 11 deletions

File tree

ReaperScript.exe

12.6 KB
Binary file not shown.

ReaperScript.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def on_fix_check_click(master: tkinter.Tk, BUTTONS: List):
158158
master = tkinter.Tk(className='REAPERSCRIPT.main')
159159
master.geometry(set_geometry(master))
160160
master.resizable(False, False)
161-
master.title('REAPERSCRIPT v3.31')
161+
master.title('REAPERSCRIPT v3.32')
162162
master.iconbitmap(default=resource_path('ico.ico'))
163163
master.protocol('WM_DELETE_WINDOW', on_closing)
164164
style = ttk.Style()
@@ -197,12 +197,12 @@ def on_fix_check_click(master: tkinter.Tk, BUTTONS: List):
197197
master,
198198
text=option,
199199
variable=var,
200-
padding=6,
201200
)
202201
checkbox.grid(
203202
row=i + 1,
204203
column=0,
205-
sticky=tkinter.W
204+
sticky=tkinter.W,
205+
pady=3,
206206
)
207207
ToolTip(checkbox, HELP_DICT[option], 1)
208208
checkboxes[option] = var
@@ -220,7 +220,7 @@ def on_fix_check_click(master: tkinter.Tk, BUTTONS: List):
220220
name='start',
221221
command=lambda: on_start_click(checkboxes, master, BUTTONS)
222222
)
223-
start_bttn.place(relx=0.5, rely=1.0, anchor="s", y=-9)
223+
start_bttn.place(relx=0.5, rely=1.0, anchor="s", y=-6)
224224
ToolTip(start_bttn, HELP_DICT['start'], 1)
225225
template_btn = ttk.Button(
226226
master,
@@ -256,26 +256,26 @@ def on_fix_check_click(master: tkinter.Tk, BUTTONS: List):
256256
name='rfx',
257257
command=lambda: path_choice('fx_chains_folder')
258258
)
259-
rfxchains_btn.place(relx=0.5, rely=1.0, anchor="s", x=140, y=-40)
259+
rfxchains_btn.place(relx=0.5, rely=1.0, anchor="s", x=140, y=-37)
260260
ToolTip(rfxchains_btn, HELP_DICT['rfx'], 1)
261261
fix_check_btn = ttk.Button(
262262
master,
263263
text='FIX CHECK',
264264
name='fixcheck_standalone',
265265
command=lambda: on_fix_check_click(master, BUTTONS)
266266
)
267-
fix_check_btn.place(relx=0.5, rely=1.0, anchor="s", x=140, y=-9)
267+
fix_check_btn.place(relx=0.5, rely=1.0, anchor="s", x=140, y=-6)
268268
ToolTip(fix_check_btn, HELP_DICT['fixcheck_standalone'], 1)
269269
help_btn = ttk.Button(
270270
master,
271271
text='HELP',
272272
name='help',
273273
command=lambda: show_help_window(master),
274274
)
275-
help_btn.place(relx=0.5, rely=1.0, anchor="s", x=140, y=-448)
275+
help_btn.place(relx=0.5, rely=1.0, anchor="s", x=140, y=-422)
276276
ToolTip(help_btn, HELP_DICT['help'], 1)
277277
subs_extract = ttk.Label(master, text='Select subtitles to extract:')
278-
subs_extract.grid(row=0, column=0, sticky=tkinter.W, padx=6, pady=6)
278+
subs_extract.grid(row=0, column=0, sticky=tkinter.W, padx=6, pady=9)
279279
SUBS_LANGS_LIST = [
280280
'Russia',
281281
'US',
@@ -297,7 +297,7 @@ def on_fix_check_click(master: tkinter.Tk, BUTTONS: List):
297297
menu.set(config['SUBS']['subs_lang'])
298298
except KeyError:
299299
menu.set(SUBS_LANGS_LIST[0])
300-
menu.place(relx=0.5, rely=1.0, anchor="s", x=9, y=-450)
300+
menu.place(relx=0.5, rely=1.0, anchor="s", x=9, y=-424)
301301
ToolTip(menu, HELP_DICT['subs_lang'], 1)
302302

303303
if __name__ == '__main__':

help_texts.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@
8282
'Подробности об отдельных функциях можно узнать во всплывающем тексте.'
8383
)
8484
NOIZE_REDUCTION = ('Очищает дороги дабберов от шума. '
85-
'Для корректной работы нужно выбрать шаблон в "NR TEMP".')
85+
'Для корректной работы '
86+
'нужно выбрать шаблон в "NR TEMPLATE"')
8687
SPLIT = 'Использует последний пресет Dynamic split items'
8788
NORM_D = ('Использует SWS/BR: Normalize loudness of selected items to -23 '
8889
'LUFS для айтемов дабберов')

window_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def show_help_window(master: tkinter.Tk):
8484

8585
def set_geometry(master: tkinter.Tk):
8686
width = 380
87-
height = 476
87+
height = 453
8888
s_width = master.winfo_screenwidth()
8989
s_height = master.winfo_screenheight()
9090
upper = s_height // 8

0 commit comments

Comments
 (0)