Skip to content

Commit 666fb9e

Browse files
author
Shaji Khan
committed
5.92
1 parent 7e602e6 commit 666fb9e

6 files changed

Lines changed: 122 additions & 4 deletions

File tree

amprack

8 Bytes
Binary file not shown.

assets/amps.json

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -691,5 +691,123 @@
691691
"Matchless Chieftan (SM57 off axis) ",
692692
"Custom"
693693
]
694+
},
695+
"Fonin Tube Amplifier": {
696+
"3": [
697+
"Marshall G15R",
698+
"Princeton II"
699+
]
700+
},
701+
"PowerAmpImpulses": {
702+
"3": [
703+
"Blackat Leon",
704+
"Cicognani Imperivm Luxury",
705+
"DV Mark Triple 6",
706+
"Engl Retro Tube",
707+
"Engl Special Edition",
708+
"EVH 5150 III",
709+
"Fortin Natas",
710+
"Kaos Sludge 15",
711+
"Krank Krankenstein",
712+
"Laney ironheart",
713+
"MakosampCustomHatred",
714+
"Marshall JMP 2203",
715+
"Marshall MG 15",
716+
"Mesa Boogie Mark V",
717+
"Peavey Vypyr 15",
718+
"Randall Satan",
719+
"Randall thrasher",
720+
"Splawn Nitro",
721+
"Splawn Quick Rod",
722+
"Taurus Stomphead"
723+
]
724+
},
725+
726+
"PreAmps": {
727+
"3": [
728+
"12ax7",
729+
"12au7",
730+
"12at7",
731+
"6DJ8"
732+
]
733+
},
734+
"PreAmpImpulses": {
735+
"3": [
736+
"AC30 Style",
737+
"Bassman Style",
738+
"Tube Style",
739+
"Fender Style",
740+
"JCM800 Style",
741+
"JTM45 Style",
742+
"Mesa Boogie Style",
743+
"Boutique Style",
744+
"Ampeg Style",
745+
"Rectifier Style"
746+
]
747+
},
748+
"PowerAmps": {
749+
"3": [
750+
"Push Pull EL84",
751+
"Push Pull EL34",
752+
"Push Pull 6L6",
753+
"Single ended 6V6GT",
754+
"Single ended EL84",
755+
"Single ended 6V6"
756+
]
757+
},
758+
"Tamg Amp": {
759+
"2": [
760+
"none",
761+
"12AT7 preamp",
762+
"12AT7 feed",
763+
"12AT7 + master 6V6",
764+
"12AT7 + push/pull 6V6",
765+
"12AU7 preamp",
766+
"12AU7 feed",
767+
"12AU7 + master 6V6",
768+
"12AU7 + push/pull 6V6",
769+
"12AX7 preamp",
770+
"12AX7 feed",
771+
"12AX7 + master 6V6",
772+
"12AX7 + push/pull 6V6",
773+
"6C16 preamp",
774+
"6DJ8 preamp",
775+
"6DJ8 feed",
776+
"6DJ8 + master 6V6",
777+
"6DJ8 + push/pull 6V6",
778+
"Master 6V6"
779+
],
780+
"3": [
781+
"none",
782+
"default",
783+
"VOX AC-15",
784+
"VOX AC-30 59/86",
785+
"Ampeg VL 501",
786+
"Ampeg Reverbrocket",
787+
"Fender 59 Bassman 5F6-A",
788+
"Bogner Triple Giant Preamp",
789+
"Hughes&Kettner",
790+
"Engl",
791+
"Fender Blues Junior",
792+
"Fender default",
793+
"Fender Hot Rod",
794+
"Fender 64 Princeton AA1164",
795+
"Fender 69 Twin Reverb AA270",
796+
"Gibsen GS 12 Reverbrocket",
797+
"Trio Preamp",
798+
"Ibanez GX 20",
799+
"Marshall JCM 2000",
800+
"Marshall JCM 800",
801+
"Marshall JTM 45",
802+
"Marshall 2199 30W",
803+
"Marshall 67 Major Lead 200",
804+
"Mesa/Boogie Mark",
805+
"Peavey C20",
806+
"Roland Cube 60",
807+
"Soldano SLO 100",
808+
"Sovtek MIG 100 H",
809+
"Mesa/Boogie Rectifier Solo",
810+
"Mesa/Boogie VTwin"
811+
]
694812
}
695813
}

assets/lv2_plugins.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1473,7 +1473,7 @@
14731473
"34900": {
14741474
"id": 8120,
14751475
"name": "Tamg Amp",
1476-
"index": 3,
1476+
"index": 1,
14771477
"desc": "Guitar amp simulator",
14781478
"library": "tamgamp-lv2.so"
14791479
},

engine.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ bool Engine::addPlugin(char* library, int pluginIndex, SharedLibrary::PluginType
1616
LOGE("Unable to load shared library!") ;
1717
processor->bypass = false ;
1818
return false;
19-
}
19+
}
2020

21-
LOGD("loaded shared library [ok] ... now trying to load plugin\n");
21+
LOGD("loaded shared library [ok] ... now trying to load plugin [%d/%d]\n", pluginIndex, sharedLibrary->descriptors.size());
2222
Plugin * plugin = new Plugin (sharedLibrary->descriptors.at(pluginIndex), (long) sampleRate, _type);
2323
plugin->sharedLibrary = sharedLibrary;
2424
if (_type != SharedLibrary::LADSPA) {

engine.o

88 Bytes
Binary file not shown.

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define VERSION 185
1+
#define VERSION 186

0 commit comments

Comments
 (0)