-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Bronco 40 amps, cabinets and effects #21
base: 20-bronco
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Linux", | ||
"includePath": [ | ||
"${workspaceFolder}/**" | ||
], | ||
"defines": [], | ||
"compilerPath": "/usr/bin/clang-14", | ||
"cStandard": "c17", | ||
"cppStandard": "c++14", | ||
"intelliSenseMode": "linux-clang-x64" | ||
} | ||
], | ||
"version": 4 | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"files.associations": { | ||
"*.embeddedhtml": "html", | ||
"*.moc": "cpp", | ||
"array": "cpp", | ||
"string": "cpp", | ||
"string_view": "cpp" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ | |
<string>Allows you to choose amplifier to emulate</string> | ||
</property> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As above. |
||
<property name="maxVisibleItems"> | ||
<number>12</number> | ||
<number>19</number> | ||
</property> | ||
<item> | ||
<property name="text"> | ||
|
@@ -116,6 +116,41 @@ | |
<string>Metal 2000</string> | ||
</property> | ||
</item> | ||
<item> | ||
<property name="text"> | ||
<string>Rumble</string> | ||
</property> | ||
</item> | ||
<item> | ||
<property name="text"> | ||
<string>Bassman TV</string> | ||
</property> | ||
</item> | ||
<item> | ||
<property name="text"> | ||
<string>Bassman 300</string> | ||
</property> | ||
</item> | ||
<item> | ||
<property name="text"> | ||
<string>KGB 800</string> | ||
</property> | ||
</item> | ||
<item> | ||
<property name="text"> | ||
<string>Rockin' Peg</string> | ||
</property> | ||
</item> | ||
<item> | ||
<property name="text"> | ||
<string>SWR Redhead</string> | ||
</property> | ||
</item> | ||
<item> | ||
<property name="text"> | ||
<string>Monster</string> | ||
</property> | ||
</item> | ||
</widget> | ||
</item> | ||
<item> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -275,6 +275,10 @@ namespace plug | |
tr("When you choose an effect you can set precise value of a parameter here")}); | ||
break; | ||
case effects::OVERDRIVE: | ||
case effects::MODERN_BASS_OVERDRIVE: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add a Bronce comment to those so we can determine later. |
||
case effects::OVERDRIVE_BASS: | ||
case effects::FUZZ_BASS: | ||
case effects::GREENBOX: | ||
setTexts(ui.get(), | ||
UIText{ | ||
tr("&Level"), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,11 +51,40 @@ | |
<string>None</string> | ||
</property> | ||
</item> | ||
|
||
<!-- Bronco 40 effects --> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remark: The .ui files are created by Qt Designer (usually) , so comments wont last long here. Having the comments in the source files is enough. |
||
<item> | ||
<property name="text"> | ||
<string>[1] Modern Bass Overdrive</string> | ||
</property> | ||
</item> | ||
<item> | ||
<property name="text"> | ||
<string>[1] Overdrive</string> | ||
</property> | ||
</item> | ||
<item> | ||
<property name="text"> | ||
<string>[1] Fuzz</string> | ||
</property> | ||
</item> | ||
<item> | ||
<property name="text"> | ||
<string>[1] Greenbox</string> | ||
</property> | ||
</item> | ||
<item> | ||
<property name="text"> | ||
<string>[1] Simple Compressor</string> | ||
</property> | ||
</item> | ||
|
||
<!-- | ||
<item> | ||
<property name="text"> | ||
<string>[1] Overdrive</string> | ||
</property> | ||
</item> | ||
<item> | ||
<property name="text"> | ||
<string>[1] Fixed Wah</string> | ||
|
@@ -86,7 +115,8 @@ | |
<string>[1] Compressor</string> | ||
</property> | ||
</item> | ||
<item> | ||
--> | ||
<item> | ||
<property name="text"> | ||
<string>[2] Sine Chorus</string> | ||
</property> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Btw. do we have to figure out this noise gate setting?