Skip to content

Commit

Permalink
update service and langs
Browse files Browse the repository at this point in the history
  • Loading branch information
PurpleHorrorRus committed May 14, 2024
1 parent 68312ab commit 1d5a941
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 46 deletions.
16 changes: 13 additions & 3 deletions langs/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
"All stations",
"Favorite stations"
]
},
"VKMIX": {
"TITLE": "Listen to VK Mix",
"DESCRIPTION": "A playlist suited to your tastes"
}
},
"DISCOVER": {
Expand Down Expand Up @@ -152,6 +156,7 @@
"TIP": "Requires application restart"
},
"DISCORD": "Discord integration",
"DISCORD_LINUX_TIP": "It may not work on Linux systems",
"BETA": {
"TITLE": "Get Beta updates",
"TIP": "Test builds may be unstable, but you get the opportunity to test new features before others. Requires application restart"
Expand Down Expand Up @@ -187,11 +192,15 @@
"TITLE": "Use the entire application window space",
"TIP": "Using the entire space disables the transparent window, which will make outer shadows at the window borders and rounding at the edges inaccessible, but guarantees full functionality of the native window. Requires application restart"
},
"LAYOUT": {
"CATEGORY": "Layout"
},
"ACRYLIC": {
"TITLE": "Enable Windows 11 transparency effect (unstable)",
"CATEGORY": "Acrylic",
"TITLE": "Enable Windows 11 acrylic effect (unstable)",
"OPACITY": "Opacity",
"MATERIAL": "Material",
"TIP": "Not recommended. You need to enable transparency effects in Windows settings. Requires application restart"
"TIP": "Not recommended. You need to enable acrylic effects in Windows settings. Requires application restart"
},
"ZOOM": {
"TITLE": "Scaling the interface",
Expand Down Expand Up @@ -636,7 +645,8 @@
"CONTROLS": {
"DOWNLOAD": "Download",
"SHARE": "Share",
"LYRICS": "Lyrics"
"LYRICS": "Lyrics",
"DISLIKE": "Dislike"
},
"SONG": {
"ADD": "Add",
Expand Down
12 changes: 11 additions & 1 deletion langs/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
"Все радиостанции",
"Избранные радиостанции"
]
},
"VKMIX": {
"TITLE": "Слушать VK Mix",
"DESCRIPTION": "Плейлист, который подстраивается под ваши вкусы"
}
},
"DISCOVER": {
Expand Down Expand Up @@ -152,6 +156,7 @@
"TIP": "Требуется перезапуск приложения"
},
"DISCORD": "Интеграция с Discord",
"DISCORD_LINUX_TIP": "Может не работать на системах Linux",
"BETA": {
"TITLE": "Получать Beta обновления",
"TIP": "Тестовые сборки могут работать нестабильно, однако вы получаете возможность тестировать новые функции раньше остальных. Требуется перезапуск приложения"
Expand Down Expand Up @@ -187,7 +192,11 @@
"TITLE": "Использовать всё пространство окна приложения",
"TIP": "Использование всего пространства отключает прозрачное окно, из-за чего будут недоступны внешние тени у границ окна и скругления по краям, но гарантирует полную работу функционала нативного окна. Требуется перезапуск приложения"
},
"LAYOUT": {
"CATEGORY": "Макет приложения"
},
"ACRYLIC": {
"CATEGORY": "Эффект прозрачности",
"TITLE": "Включить эффект прозрачности Windows 11 (нестабильно)",
"MATERIAL": "Материал",
"OPACITY": "Прозрачность",
Expand Down Expand Up @@ -636,7 +645,8 @@
"CONTROLS": {
"DOWNLOAD": "Скачать",
"SHARE": "Поделиться",
"LYRICS": "Текст песни"
"LYRICS": "Текст песни",
"DISLIKE": "Не нравится"
},
"SONG": {
"ADD": "Добавить",
Expand Down
94 changes: 52 additions & 42 deletions service.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,54 @@
{
"notifications": [],

"ffmpeg": {
"win32_x64": "https://raw.githubusercontent.com/PurpleHorrorRus/Meridius/master/ffmpeg_win32_x64.zip"
},

"config": {
"updateInterval": 600000,
"latestSaveInterval": 10000,
"rewind": 5,
"history": 30,

"hls": {
"maxBufferSize": 1024000000,
"maxBufferLength": 60,
"maxMaxBufferLength": 1e500,
"enableWorker": false,
"defaultAudioCodec": "mp4a.40.5"
},

"leftContainer": {
"max": 320,
"min": 160
},

"zoom": {
"min": 50,
"max": 200,
"step": 25
},

"volumeDivider": {
"max": 20,
"step": 0.25
},

"crossfade": {
"min": 2,
"max": 16,
"step": 1
}
}
"notifications": [],

"webToken": {
"version": 1,
"app_id": 6287487
},

"ffmpeg": {
"win32_x64": "https://raw.githubusercontent.com/PurpleHorrorRus/Meridius/master/ffmpeg_win32_x64.zip"
},

"config": {
"updateInterval": 600000,
"latestSaveInterval": 10000,
"rewind": 5,
"history": 30,

"hls": {
"maxBufferSize": 1024000000,
"maxBufferLength": 60,
"maxMaxBufferLength": 1e500,
"enableWorker": false,
"defaultAudioCodec": "mp4a.40.5"
},

"leftContainer": {
"max": 320,
"min": 160
},

"rightContainer": {
"max": 320,
"min": 160
},

"zoom": {
"min": 50,
"max": 200,
"step": 25
},

"volumeDivider": {
"max": 20,
"step": 0.25
},

"crossfade": {
"min": 2,
"max": 16,
"step": 1
}
}
}

0 comments on commit 1d5a941

Please sign in to comment.