Compare commits

..

3 Commits

Author SHA1 Message Date
4c97fbf0b2 typo 2023-05-29 07:05:35 +01:00
7bd9c517a1 add link to vs2022 2023-05-28 02:13:20 +01:00
438b2812dc update readme
add RELEASES.md + imgs.
2023-05-28 00:25:16 +01:00
8 changed files with 38 additions and 13 deletions

View File

@ -1,6 +1,6 @@
# Step by step
These instructions should work for both Debug/Release builds. In this case we target Release x64.
These instructions should work for both Debug/Release builds. In this case we target Release x64. All of the `Releases` were built with [Visual Studio 2022][vs_2022].
![Release][release]
@ -16,6 +16,7 @@ Check that `_CRT_SECURE_NO_DEPRECATE` and if targeting an x64 build `VB_X64` are
Ensure `Ws2_32.lib` is included as an additional dependency.
![Linker dependencies][linker]
[vs_2022]: https://visualstudio.microsoft.com/vs/
[release]: vmr_streamer/img/vm1-inst.png
[properties]: vmr_streamer/img/vm2-inst.png
[char_set]: vmr_streamer/img/vm3-inst.png

View File

@ -2,6 +2,10 @@
Source files for [Voicemeeter Streamer View App][streamer_view_app] which can be found in the [applications SDK](https://github.com/vburel2018/Voicemeeter-SDK).
### Releases
I've included some customised themes you can check them out [here](RELEASES.md). They are available for download in [Releases](https://github.com/onyx-and-iris/vmr_streamer/releases).
### Build
For a step-by-step follow [these instructions][install].

20
RELEASES.md Normal file
View File

@ -0,0 +1,20 @@
## Forest Green
![forest_green][forest_green]
## Midnight Blue
![midnight_blue][midnight_blue]
## Rose Pink
![rose_pink][rose_pink]
## Sunrise
![sunrise][sunrise]
[forest_green]: vmr_streamer/img/themes/forest-green.png
[midnight_blue]: vmr_streamer/img/themes/midnight-blue.png
[rose_pink]: vmr_streamer/img/themes/rose-pink.png
[sunrise]: vmr_streamer/img/themes/sunrise.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -422,23 +422,23 @@ long InitResources(LPT_APP_CONTEXT lpapp)
//make pen brush
CreateColorPenBrush(&(lpapp->gdiobjects_black), RGB(0,0,0));
CreateColorPenBrush(&(lpapp->gdiobjects_bkg), RGB(0, 26, 51));
CreateColorPenBrush(&(lpapp->gdiobjects_bkg_ctl), RGB(0, 40, 77));
CreateColorPenBrush(&(lpapp->gdiobjects_blue0), RGB(230, 184, 0));
CreateColorPenBrush(&(lpapp->gdiobjects_bkg), RGB(18,32,41));
CreateColorPenBrush(&(lpapp->gdiobjects_bkg_ctl), RGB(44,61,77));
CreateColorPenBrush(&(lpapp->gdiobjects_blue0), RGB(71,90,103));
CreateColorPenBrush(&(lpapp->gdiobjects_blue1), RGB(95,120,137));
CreateColorPenBrush(&(lpapp->gdiobjects_blue2), RGB(255, 153, 0));
CreateColorPenBrush(&(lpapp->gdiobjects_blue3), RGB(230, 184, 0));
CreateColorPenBrush(&(lpapp->gdiobjects_blue2), RGB(111,140,160));
CreateColorPenBrush(&(lpapp->gdiobjects_blue3), RGB(104,230,248));
CreateColorPenBrush(&(lpapp->gdiobjects_buttongreen), RGB(36,167,49));
CreateColorPenBrush(&(lpapp->gdiobjects_slidergreen), RGB(255, 204, 0));
CreateColorPenBrush(&(lpapp->gdiobjects_slidergreen), RGB(112,195,153));
CreateColorPenBrush(&(lpapp->gdiobjects_sliderred), RGB(248,99,77));
CreateColorPenBrush(&(lpapp->gdiobjects_white), RGB(230, 184, 0));
CreateColorPenBrush(&(lpapp->gdiobjects_white), RGB(255,255,255));
CreateColorPenBrush(&(lpapp->gdiobjects_meter_blue), RGB(255, 204, 0));
CreateColorPenBrush(&(lpapp->gdiobjects_meter_green), RGB(255, 153, 0));
CreateColorPenBrush(&(lpapp->gdiobjects_meter_red), RGB(248, 99, 77));
CreateColorPenBrush(&(lpapp->gdiobjects_meter_blue), RGB(130,170,180));
CreateColorPenBrush(&(lpapp->gdiobjects_meter_green), RGB(30,255,90));
CreateColorPenBrush(&(lpapp->gdiobjects_meter_red), RGB(250,0,0));
CreateColorPenBrush(&(lpapp->gdiobjects_mute), RGB(246,91,81));
CreateColorPenBrush(&(lpapp->gdiobjects_monitor), RGB(230, 184, 0));
CreateColorPenBrush(&(lpapp->gdiobjects_monitor), RGB(203,174,130));
CreateColorPenBrush(&(lpapp->gdiobjects_grey), RGB(100,100,100));
return 0;
@ -1710,7 +1710,7 @@ void DrawVMConnectionMode(LPT_APP_CONTEXT lpapp, HDC dc)
oldbrush = (HBRUSH)SelectObject(dc,lpapp->gdiobjects_bkg.brush);
oldfont = (HFONT)SelectObject(dc,lpapp->font1);
SetBkMode(dc,TRANSPARENT);
SetTextColor(dc,RGB(255, 153, 0));
SetTextColor(dc,RGB(255,255,255));
if (lpapp->vbvmr_connect == 0) SetTextColor(dc,RGB(200,0,0));
RoundRect(dc,rect.left,rect.top,rect.right,rect.bottom,7,7);