Skip to content

Commit f5cdd0a

Browse files
committed
Release 1.0.5
* Added audio file preview template. * Updated styles. * Updated localization files.
2 parents 879773d + 5df95d6 commit f5cdd0a

31 files changed

+770
-267
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
* RECENT CHANGES
33
*******************************************************************************
44

5+
=== 1.0.5 ===
6+
* Added audio file preview template.
7+
* Updated styles.
8+
* Updated localization files.
9+
510
=== 1.0.4 ===
611
* Updated visual styles.
712
* Updated several text bundles.

include/lsp-plug.in/shared/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#define LSP_PLUGINS_SHARED_MAJOR 1
2626
#define LSP_PLUGINS_SHARED_MINOR 0
27-
#define LSP_PLUGINS_SHARED_MICRO 4
27+
#define LSP_PLUGINS_SHARED_MICRO 5
2828

2929
#ifdef LSP_LLTL_LIB_BUILTIN
3030
#define LSP_PLUGINS_SHARED_EXPORT

modules.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@
1919
#
2020

2121
# Variables that describe dependencies
22-
LSP_COMMON_LIB_VERSION := 1.0.16
22+
LSP_COMMON_LIB_VERSION := 1.0.23
2323
LSP_COMMON_LIB_NAME := lsp-common-lib
2424
LSP_COMMON_LIB_TYPE := src
2525
LSP_COMMON_LIB_URL_RO := https://github.com/lsp-plugins/$(LSP_COMMON_LIB_NAME).git
2626
LSP_COMMON_LIB_URL_RW := git@github.com:lsp-plugins/$(LSP_COMMON_LIB_NAME).git
2727

28-
LSP_TEST_FW_VERSION := 1.0.10
28+
LSP_TEST_FW_VERSION := 1.0.17
2929
LSP_TEST_FW_NAME := lsp-test-fw
3030
LSP_TEST_FW_TYPE := src
3131
LSP_TEST_FW_URL_RO := https://github.com/lsp-plugins/$(LSP_TEST_FW_NAME).git
3232
LSP_TEST_FW_URL_RW := git@github.com:lsp-plugins/$(LSP_TEST_FW_NAME).git
3333

34-
LSP_PLUGIN_FW_VERSION := 1.0.3
34+
LSP_PLUGIN_FW_VERSION := 1.0.7
3535
LSP_PLUGIN_FW_NAME := lsp-plugin-fw
3636
LSP_PLUGIN_FW_TYPE := src
3737
LSP_PLUGIN_FW_URL_RO := https://github.com/lsp-plugins/$(LSP_PLUGIN_FW_NAME).git

project.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ARTIFACT_ID = LSP_PLUGINS_SHARED
2323
ARTIFACT_NAME = lsp-plugins-shared
2424
ARTIFACT_DESC = Shared resources for LSP Plugins
2525
ARTIFACT_HEADERS = lsp-plug.in
26-
ARTIFACT_VERSION = 1.0.4
26+
ARTIFACT_VERSION = 1.0.5
2727
ARTIFACT_EXPORT_ALL = 1
2828

2929
# Weak property

res/main/i18n/de/lists.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,9 @@
209209
"internal": "Intern",
210210
"left": "Links",
211211
"lpf": "LPF",
212+
"max": "Max",
212213
"middle": "Mitte",
214+
"min": "Min",
213215
"peak": "Peak",
214216
"right": "Rechts",
215217
"rms": "RMS",

res/main/i18n/de/units.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
"mm": "mm",
3434
"ms": "ms",
3535

36+
"neper": "Np",
37+
3638
"oct": "Okt",
3739

3840
"pc": "%",

res/main/i18n/default/actions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
"export_settings_to_clipboard": "Export settings to clipboard",
3030
"export_settings_to_file": "Export settings to file...",
3131

32+
"file_preview": {
33+
"pause": "Pause",
34+
"play": "Play",
35+
"stop": "Stop"
36+
},
37+
3238
"font_scaling": {
3339
"select": "Font scaling",
3440
"value:pc": "{@value} %",

res/main/i18n/default/labels.json

Lines changed: 41 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,32 @@
218218
},
219219
"file_list": "File list",
220220
"file_name": "File name",
221+
"file_preview": {
222+
"": "File properties",
223+
"audio_channiels": "Audio channels:",
224+
"auto_play": "Autoplay",
225+
"duration": "Duration:",
226+
"n_a": "--",
227+
"sample_format":
228+
{
229+
"": "Sample format:",
230+
"f32": "32-bit float",
231+
"f64": "64-bit float",
232+
"s16": "16-bit sint",
233+
"s24": "24-bit sint",
234+
"s32": "32-bit sint",
235+
"s8": "8-bit sint",
236+
"u16": "16-bit uint",
237+
"u24": "24-bit uint",
238+
"u32": "32-bit uint",
239+
"u8": "8-bit uint",
240+
"unknown": "unknown"
241+
},
242+
"sample_rate": "Sample rate:",
243+
"time_hms": "{@hour}:{@min^0%2d}:{@sec^0%2d}.{@msec^0%3d} h",
244+
"time_ms": "{@min}:{@sec^0%2d}.{@msec^0%3d} m",
245+
"time_s": "{@sec}.{@msec^0%3d} s"
246+
},
221247
"filter": "Filter",
222248
"filters": "Filters",
223249

@@ -381,33 +407,6 @@
381407
"noise_floor_left": "Noise Floor Left",
382408
"noise_floor_right": "Noise Floor Right",
383409

384-
"noise_generator": {
385-
"channel_selector": "Channel Selector",
386-
"global": "Global",
387-
"general": "General",
388-
"N_type": "Noise Type",
389-
"N_mode": "Noise Mode",
390-
"N_amplitude": "Noise Amplitude",
391-
"N_offset": "Noise Offset",
392-
"M_inaudible": "Make Inaudible",
393-
"N_specs": "Noise Specific Controls",
394-
"distribution": "Distribution",
395-
"V_type": "Type",
396-
"V_window": "Window",
397-
"V_delta": "Delta",
398-
"V_crush": "Crush",
399-
"V_crush_prob": "Crush Probability",
400-
"color": "Color",
401-
"slope_npn": "Slope",
402-
"slope_dbo": "Slope",
403-
"slope_dbd": "Slope",
404-
"channel": "Channel",
405-
"channel_controls": "Channel Controls",
406-
"use_global": "Use Global",
407-
"solo": "Solo",
408-
"mute": "Mute"
409-
},
410-
411410
"normalize": "Normalize",
412411

413412
"obj": {
@@ -554,17 +553,30 @@
554553
"search": "Search",
555554
"sedit": {
556555
"active": "Active",
556+
"compensate": "Compensate",
557557
"disabled": "Disabled",
558558
"enabled": "Enabled",
559559
"fade_in": "Fade in",
560560
"fade_out": "Fade out",
561561
"head_cut": "Head cut",
562562
"listen": "Listen",
563+
"loop": "Loop",
564+
"loop_end": "End",
565+
"loop_fade": "Fade length",
566+
"loop_start": "Start",
563567
"makeup": "Makeup",
564568
"pitch": "Pitch",
569+
"pitch_chunk": "Chunk size",
570+
"pitch_fade": "Fade length",
565571
"predelay": "Pre-delay",
566572
"reverse": "Reverse",
567573
"sample_num": "Sample #",
574+
"stretch": "Stretch",
575+
"stretch_chunk": "Chunk size",
576+
"stretch_end": "End",
577+
"stretch_fade": "Fade length",
578+
"stretch_fade_type": "Fade type",
579+
"stretch_start": "Start",
568580
"tail_cut": "Tail cut"
569581
},
570582
"settings": "Settings",
@@ -688,10 +700,12 @@
688700
"fmt_value": "{@value}",
689701
"selected": "Selected",
690702
"worst": "Worst",
703+
"x_hz": "{@value} Hz",
691704
"x_k": "{@value}k",
692705
"x_khz": "{@value} kHz",
693706
"x_pc": "{@value%.2f} %"
694707
},
708+
"volume_list": "Volumes",
695709

696710
"warning": {
697711
"all_values_good": "All values are in acceptable range.",

res/main/i18n/default/lists.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,11 @@
6969
}
7070
},
7171

72+
"fade": {
73+
"const_power": "Constant power",
74+
"linear": "Linear"
75+
},
76+
7277
"fft": {
7378
"env": {
7479
"blue": "Blue noise",
@@ -209,7 +214,9 @@
209214
"internal": "Internal",
210215
"left": "Left",
211216
"lpf": "LPF",
217+
"max": "Max",
212218
"middle": "Middle",
219+
"min": "Min",
213220
"peak": "Peak",
214221
"right": "Right",
215222
"rms": "RMS",

res/main/i18n/default/units.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
"mm": "mm",
3434
"ms": "ms",
3535

36+
"neper": "Np",
37+
3638
"oct": "oct",
3739

3840
"pc": "%",

res/main/i18n/es/labels.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,7 @@
551551
"fmt_value": "{@value}",
552552
"selected": "Seleccionado",
553553
"worst": "Peor",
554+
"x_hz": "{@value} Hz",
554555
"x_k": "{@value}k",
555556
"x_khz": "{@value} kHz",
556557
"x_pc": "{@value%.2f} %"

res/main/i18n/es/lists.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,9 @@
195195
"internal": "Interno",
196196
"left": "Izquierda",
197197
"lpf": "LPF",
198+
"max": "Máx",
198199
"middle": "Centro",
200+
"min": "Mín",
199201
"peak": "Pico",
200202
"right": "Derecha",
201203
"rms": "RMS",

res/main/i18n/es/units.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
"mm": "mm",
3030
"ms": "ms",
3131

32+
"neper": "Np",
33+
3234
"oct": "oct",
3335

3436
"pc": "%",

res/main/i18n/fr/labels.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -620,6 +620,7 @@
620620
"fmt_value": "{@value}",
621621
"selected": "Sélectionné",
622622
"worst": "Pire",
623+
"x_hz": "{@value} Hz",
623624
"x_k": "{@value}k",
624625
"x_khz": "{@value} kHz",
625626
"x_pc": "{@value%.2f} %"

res/main/i18n/fr/lists.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,9 @@
197197
"internal": "Interne",
198198
"left": "Gauche",
199199
"lpf": "LPF",
200+
"max": "Max",
200201
"middle": "Milieu",
202+
"min": "Min",
201203
"peak": "Pic",
202204
"right": "Droite",
203205
"rms": "RMS",

res/main/i18n/fr/units.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
"mm": "mm",
3030
"ms": "ms",
3131

32+
"neper": "Np",
33+
3234
"oct": "oct",
3335

3436
"pc": "%",

res/main/i18n/it/labels.json

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -379,30 +379,6 @@
379379
"noise_floor_left": "Fondo Rumore Sinistro",
380380
"noise_floor_right": "Fondo Rumore Destro",
381381

382-
"noise_generator": {
383-
"general": "Generale",
384-
"N_type": "Tipo di Rumore",
385-
"N_mode": "Modo Rumore",
386-
"N_amplitude": "Ampiezza Rumore",
387-
"N_offset": "Offset Rumore",
388-
"M_inaudible": "Rendi Inaudible",
389-
"N_specs": "Controlli Specifici del Rumore",
390-
"distribution": "Distribuzione",
391-
"V_type": "Tipo",
392-
"V_window": "Finestra",
393-
"V_delta": "Delta",
394-
"V_crush": "Crush",
395-
"V_crush_prob": "Probabilità Crush",
396-
"color": "Colore",
397-
"slope_npn": "Pendenza",
398-
"slope_dbo": "Pendenza",
399-
"slope_dbd": "Pendenza",
400-
"channel": "Canale",
401-
"channel_controls": "Controlli Canale",
402-
"solo": "Solo",
403-
"mute": "Muto"
404-
},
405-
406382
"normalize": "Normalizza",
407383

408384
"obj": {
@@ -679,6 +655,7 @@
679655
"fmt_value": "{@value}",
680656
"selected": "Selezionato",
681657
"worst": "Peggiore",
658+
"x_hz": "{@value} Hz",
682659
"x_k": "{@value}k",
683660
"x_khz": "{@value} kHz",
684661
"x_pc": "{@value%.2f} %"

res/main/i18n/it/lists.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,9 @@
209209
"internal": "Interno",
210210
"left": "Sinistra",
211211
"lpf": "LPF",
212+
"max": "Mass",
212213
"middle": "Centro",
214+
"min": "Min",
213215
"peak": "Picco",
214216
"right": "Destra",
215217
"rms": "RMS",

res/main/i18n/it/units.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
"mm": "mm",
3434
"ms": "ms",
3535

36+
"neper": "Np",
37+
3638
"oct": "oct",
3739

3840
"pc": "%",

res/main/i18n/ru/actions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
"export_settings_to_clipboard": "Экпорт настроек в буфер обмена",
3030
"export_settings_to_file": "Экспорт настроек в файл...",
3131

32+
"file_preview": {
33+
"pause": "Пауза",
34+
"play": "Играть",
35+
"stop": "Стоп"
36+
},
37+
3238
"font_scaling": {
3339
"select": "Масштаб шрифтов",
3440
"value:pc": "{@value} %",

0 commit comments

Comments
 (0)