Skip to content

Commit 14d42f3

Browse files
committedMay 23, 2024·
Bump up version to 1.0.1
1 parent 1de959b commit 14d42f3

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed
 

‎Fire.jucer

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<JUCERPROJECT id="NykRD7" name="Fire" projectType="audioplug" pluginManufacturer="Wings"
44
aaxIdentifier="com.WingsDSP.Fire" bundleIdentifier="com.WingsDSP.Fire"
5-
version="1.0.0.3" displaySplashScreen="1" pluginFormats="buildAU,buildVST3"
5+
version="1.0.1" displaySplashScreen="1" pluginFormats="buildAU,buildVST3"
66
jucerFormatVersion="1" pluginAUMainType="'aufx'" pluginVST3Category="Distortion"
77
addUsingNamespaceToJuceHeader="0" cppLanguageStandard="17" defines="JUCE_MODAL_LOOPS_PERMITTED=1">
88
<MAINGROUP id="X9e8F0" name="Fire">

‎README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Fire (Version 1.0.0) [![](https://travis-ci.com/jerryuhoo/Fire.svg?branch=master)](https://travis-ci.com/jerryuhoo/Fire) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/8c68fa4c8da04cb8abca88e2dfceb280)](https://www.codacy.com/gh/jerryuhoo/Fire/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=jerryuhoo/Fire&amp;utm_campaign=Badge_Grade)[![CMake Build Matrix](https://github.com/jerryuhoo/Fire/actions/workflows/fire.yml/badge.svg)](https://github.com/jerryuhoo/Fire/actions/workflows/fire.yml)
1+
# Fire (Version 1.0.1) [![](https://travis-ci.com/jerryuhoo/Fire.svg?branch=master)](https://travis-ci.com/jerryuhoo/Fire) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/8c68fa4c8da04cb8abca88e2dfceb280)](https://www.codacy.com/gh/jerryuhoo/Fire/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=jerryuhoo/Fire&amp;utm_campaign=Badge_Grade)[![CMake Build Matrix](https://github.com/jerryuhoo/Fire/actions/workflows/fire.yml/badge.svg)](https://github.com/jerryuhoo/Fire/actions/workflows/fire.yml)
22

33
![Alt text](Fire1.png?raw=true "Title")
44

@@ -106,6 +106,13 @@ SoundCloud: [Wings](https://soundcloud.com/jerry-876742699)
106106

107107
## 6. Update Notes
108108

109+
### 2024-5-22 (version 1.0.1)
110+
111+
1. Add a button for more Drive gain (E-Extreme).
112+
2. Fix a bug of compression settings and width settings can not be set for each band independently.
113+
3. Add original spectrum (white).
114+
4. Improve GUI of VU meters.
115+
109116
### 2022-7-29 (version 1.0.0)
110117

111118
1. Refactor the code of frequency lines and close buttons.

‎Source/PluginProcessor.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1595,10 +1595,10 @@ juce::AudioProcessorValueTreeState::ParameterLayout FireAudioProcessor::createPa
15951595
using PFloat = juce::AudioParameterFloat;
15961596
parameters.push_back (std::make_unique<PBool> (juce::ParameterID { HQ_ID, versionNum }, HQ_NAME, false));
15971597

1598-
parameters.push_back (std::make_unique<PInt> (juce::ParameterID { MODE_ID1, versionNum }, MODE_NAME1, 0, 11, 0));
1599-
parameters.push_back (std::make_unique<PInt> (juce::ParameterID { MODE_ID2, versionNum }, MODE_NAME2, 0, 11, 0));
1600-
parameters.push_back (std::make_unique<PInt> (juce::ParameterID { MODE_ID3, versionNum }, MODE_NAME3, 0, 11, 0));
1601-
parameters.push_back (std::make_unique<PInt> (juce::ParameterID { MODE_ID4, versionNum }, MODE_NAME4, 0, 11, 0));
1598+
parameters.push_back (std::make_unique<PInt> (juce::ParameterID { MODE_ID1, versionNum }, MODE_NAME1, 0, 11, 3));
1599+
parameters.push_back (std::make_unique<PInt> (juce::ParameterID { MODE_ID2, versionNum }, MODE_NAME2, 0, 11, 3));
1600+
parameters.push_back (std::make_unique<PInt> (juce::ParameterID { MODE_ID3, versionNum }, MODE_NAME3, 0, 11, 3));
1601+
parameters.push_back (std::make_unique<PInt> (juce::ParameterID { MODE_ID4, versionNum }, MODE_NAME4, 0, 11, 3));
16021602

16031603
parameters.push_back (std::make_unique<PBool> (juce::ParameterID { LINKED_ID1, versionNum }, LINKED_NAME1, true));
16041604
parameters.push_back (std::make_unique<PBool> (juce::ParameterID { LINKED_ID2, versionNum }, LINKED_NAME2, true));

0 commit comments

Comments
 (0)
Please sign in to comment.