Skip to content

Commit

Permalink
bump up version to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryuhoo committed Jul 28, 2022
1 parent 477a5f1 commit 011e634
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set(CMAKE_OSX_DEPLOYMENT_TARGET "10.13" CACHE STRING "Minimum OS X deployment ve
# `project()` command. `project()` sets up some helpful variables that describe source/binary
# directories, and the current project version. This is a standard CMake command.

project(Fire VERSION 1.0.0.1)
project(Fire VERSION 1.0.0)

# If you've installed JUCE somehow (via a package manager, or directly using the CMake install
# target), you'll need to tell this project that it depends on the installed copy of JUCE. If you've
Expand Down
2 changes: 1 addition & 1 deletion Fire.jucer
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<JUCERPROJECT id="NykRD7" name="Fire" projectType="audioplug" pluginManufacturer="Wings"
aaxIdentifier="com.WingsDSP.Fire" bundleIdentifier="com.WingsDSP.Fire"
version="1.0.0.1" displaySplashScreen="1" pluginFormats="buildAU,buildVST3"
version="1.0.0" displaySplashScreen="1" pluginFormats="buildAU,buildVST3"
jucerFormatVersion="1" pluginAUMainType="'aufx'" pluginVST3Category="Distortion"
addUsingNamespaceToJuceHeader="0" cppLanguageStandard="17" defines="JUCE_MODAL_LOOPS_PERMITTED=1">
<MAINGROUP id="X9e8F0" name="Fire">
Expand Down
Binary file modified Fire2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions JuceLibraryCode/JuceHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace ProjectInfo
{
const char* const projectName = "Fire";
const char* const companyName = "";
const char* const versionString = "1.0.0.1";
const int versionNumber = 0x1000001;
const char* const versionString = "1.0.0";
const int versionNumber = 0x10000;
}
#endif
8 changes: 4 additions & 4 deletions JuceLibraryCode/JucePluginDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@
#define JucePlugin_EditorRequiresKeyboardFocus 0
#endif
#ifndef JucePlugin_Version
#define JucePlugin_Version 1.0.0.1
#define JucePlugin_Version 1.0.0
#endif
#ifndef JucePlugin_VersionCode
#define JucePlugin_VersionCode 0x1000001
#define JucePlugin_VersionCode 0x10000
#endif
#ifndef JucePlugin_VersionString
#define JucePlugin_VersionString "1.0.0.1"
#define JucePlugin_VersionString "1.0.0"
#endif
#ifndef JucePlugin_VSTUniqueID
#define JucePlugin_VSTUniqueID JucePlugin_PluginCode
Expand Down Expand Up @@ -155,7 +155,7 @@
#define JucePlugin_ARAFactoryID "com.yourcompany.Fire.factory"
#endif
#ifndef JucePlugin_ARADocumentArchiveID
#define JucePlugin_ARADocumentArchiveID "com.yourcompany.Fire.aradocumentarchive.1.0.0.1"
#define JucePlugin_ARADocumentArchiveID "com.yourcompany.Fire.aradocumentarchive.1.0.0"
#endif
#ifndef JucePlugin_ARACompatibleArchiveIDs
#define JucePlugin_ARACompatibleArchiveIDs ""
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ Note: You should choose Release mode rather than Debug mode(or disable Debug mod

* You can click four switches on the right side of graphs.

* Drive:『Fire』 has several distortion functions. There are two buttons "L" and "S" related to drive knob, and each means "Link" and "Safe". "Link" means when your turn up drive knob, the output knob value will automatically reduce. "Safe" means if your drive knob pushes your volume too loud, it will automatically reduce your drive value. It also shows reduced value on drive knob.
* Drive:『Fire』 has several distortion functions. There are three buttons "L", "S", "E", related to drive knob, and each means "Link", "Safe", and "Extreme".
* "L" (Link): When your turn up drive knob, the output knob value will automatically reduce.
* "S" (Safe): If your drive knob pushes your volume too loud, it will automatically reduce your drive value. It also shows reduced value on drive knob.
* "E" (Extreme): It expands the range of the the drive knob (from around +40db to around +60db) when it is enabled to give more distortion.

* Retification and bias: Change your distortion shape.

Expand All @@ -75,6 +78,8 @@ Note: You should choose Release mode rather than Debug mode(or disable Debug mod

* Downsample: downsample your audio.

* Limiter: add a limiter after distortion.

* Output and mix: for global control.

## 4. Support the author
Expand All @@ -101,7 +106,7 @@ SoundCloud: [Wings](https://soundcloud.com/jerry-876742699)

## 6. Update Notes

### 2022-7-27 (version 1.0.0)
### 2022-7-28 (version 1.0.0)

1. Refactor the code of frequency lines and close buttons.
2. Fix a crash in Fl Studio of v0.9.9.
Expand All @@ -112,6 +117,8 @@ SoundCloud: [Wings](https://soundcloud.com/jerry-876742699)
7. Add Extreme button for more distortion.
8. Check update when opening the plugin.
9. Support JUCE 7.
10. Fix a bug that changing presets doesn't reset new params.
11. Add a Limiter in the global mode.

### 2022-7-13 (version 0.9.9)

Expand Down

0 comments on commit 011e634

Please sign in to comment.