Skip to content

Commit

Permalink
Final mod-desktop rename
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Feb 1, 2024
1 parent 9e769f8 commit f2b6a7a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -369,12 +369,12 @@
<div id="mod-cloud-terms" class="save-popup mod-hidden">
<div class="mod-box">
{% if using_app == 'true' %}
<h1>Welcome to the MOD Desktop App!</h1>
<h1>Welcome to the MOD Desktop!</h1>
<div>
<p>
We're thrilled to have you on board and can't wait for you to explore all the amazing features we've built for you.
Before you dive in, there's just a little bit of housekeeping to take care of.<br/>
By using the MOD Desktop App, you're agreeing to our
By using the MOD Desktop, you're agreeing to our
<a href="https://mod.audio/privacy-and-terms/" target="_blank">Terms of Service</a>
and
<a href="https://mod.audio/privacy-policy/" target="_blank">Privacy Policy</a>.
Expand Down
4 changes: 2 additions & 2 deletions utils/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ LDFLAGS += -Wl,-O1,--no-undefined,--strip-all
endif
endif

ifeq ($(MODAPP),1)
CXXFLAGS += -DMODAPP
ifeq ($(MOD_DESKTOP),1)
CXXFLAGS += -D_MOD_DESKTOP
ifneq ($(MACOS)$(WINDOWS),true)
LDFLAGS += -Wl,-rpath,'$$ORIGIN/..'
endif
Expand Down
4 changes: 2 additions & 2 deletions utils/utils_jack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ bool init_jack(void)
return true;
}

#ifdef MODAPP
#ifdef _MOD_DESKTOP
const jack_options_t options = static_cast<jack_options_t>(JackNoStartServer|JackUseExactName|JackServerName);
jack_client_t* const client = jack_client_open("mod-ui", options, nullptr, "mod-desktop-app");
jack_client_t* const client = jack_client_open("mod-ui", options, nullptr, "mod-desktop");
#else
const jack_options_t options = static_cast<jack_options_t>(JackNoStartServer|JackUseExactName);
jack_client_t* const client = jack_client_open("mod-ui", options, nullptr);
Expand Down

0 comments on commit f2b6a7a

Please sign in to comment.