Skip to content

Commit

Permalink
v1.4.1 - Community update (#13)
Browse files Browse the repository at this point in the history
* The changes in this release is based on [community feedback](https://community.vcvrack.com/t/tiny-tricks-request-for-feedback/6788). A huge thanks to all who pitched in!
* Added: Dark themes. Right click module to access them.
* Changed: Some design details in a bunch of modules.
* Changed: Simplex Oscillator (SN-OSC) now has a trigger input for the waveform mirroring.
* Changed: Wavetable Oscillator (WAVE) now has a trigger input for the waveform mirroring plus capturing (this is quite resource intensive).
* Changed: Added option to turn off scope in Wavetable Oscillator. Useful for improving the UI performance until scope code is improved.
* Changed: Very slight cosmetic request (#12).
* Fixed: Modulation Generators (MG1, MG8, MG16) now keeps values within 0-10 when set to UNI.
  • Loading branch information
thomassidor authored Nov 21, 2019
1 parent 13543bb commit 8d2c8e1
Show file tree
Hide file tree
Showing 190 changed files with 7,167 additions and 5,551 deletions.
61 changes: 61 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,66 @@ SOURCES += $(wildcard src/*.cpp src/utility/*.cpp)
DISTRIBUTABLES += res
DISTRIBUTABLES += $(wildcard LICENSE*)

river-bed-theme:
mkdir -p res/panels-river-bed
cp res/panels/* res/panels-river-bed/
sed -i 's/#e6e6e6/#4c5b5c/g' res/panels-river-bed/* # Background
sed -i 's/#f9f9f9/#596868/g' res/panels-river-bed/* # Input area
sed -i 's/#ccc/#414f4f/g' res/panels-river-bed/* # Output area
sed -i 's/#848484/#1f2323/g' res/panels-river-bed/* # Section header
sed -i 's/#606060/#1f2323/g' res/panels-river-bed/* # Text on ouput area
sed -i 's/#010000/#b3b3b3/g' res/panels-river-bed/* # Black text
#sed -i 's/#f8f9f9/#b3b3b3/g' res/panels-river-bed/* # White text

shark-theme:
mkdir -p res/panels-shark
cp res/panels/* res/panels-shark/
sed -i 's/#e6e6e6/#262730/g' res/panels-shark/* # Background
sed -i 's/#f9f9f9/#3a3e49/g' res/panels-shark/* # Input area
sed -i 's/#ccc/#18191e/g' res/panels-shark/* # Output area
sed -i 's/#848484/#c8cace/g' res/panels-shark/* # Section header
sed -i 's/#606060/#c8cace/g' res/panels-shark/* # Text on ouput area
sed -i 's/#010000/#c8cace/g' res/panels-shark/* # Black text
#sed -i 's/#f8f9f9/#b3b3b3/g' res/panels-shark/* # White text


oxford-blue-theme:
mkdir -p res/panels-oxford-blue
cp res/panels/* res/panels-oxford-blue/
sed -i 's/#e6e6e6/#364156/g' res/panels-oxford-blue/* # Background
sed -i 's/#f9f9f9/#45546b/g' res/panels-oxford-blue/* # Input area
sed -i 's/#ccc/#2c3644/g' res/panels-oxford-blue/* # Output area
sed -i 's/#848484/#020405/g' res/panels-oxford-blue/* # Section header
sed -i 's/#606060/#020405/g' res/panels-oxford-blue/* # Text on ouput area
sed -i 's/#010000/#b6bac1/g' res/panels-oxford-blue/* # Black text
#sed -i 's/#f8f9f9/#b3b3b3/g' res/panels-oxford-blue/* # White text

cod-gray-theme:
mkdir -p res/panels-cod-gray
cp res/panels/* res/panels-cod-gray/
sed -i 's/#e6e6e6/#1b1b1b/g' res/panels-cod-gray/* # Background
sed -i 's/#f9f9f9/#333333/g' res/panels-cod-gray/* # Input area
sed -i 's/#ccc/#0a0a0a/g' res/panels-cod-gray/* # Output area
sed -i 's/#848484/#999999/g' res/panels-cod-gray/* # Section header
sed -i 's/#606060/#999999/g' res/panels-cod-gray/* # Text on ouput area
sed -i 's/#010000/#afafaf/g' res/panels-cod-gray/* # Black text
#sed -i 's/#f8f9f9/#b3b3b3/g' res/panels-cod-gray/* # White text

firefly-theme:
mkdir -p res/panels-firefly
cp res/panels/* res/panels-firefly/
sed -i 's/#e6e6e6/#0c2d32/g' res/panels-firefly/* # Background
sed -i 's/#f9f9f9/#2c5256/g' res/panels-firefly/* # Input area
sed -i 's/#ccc/#061c1e/g' res/panels-firefly/* # Output area
sed -i 's/#848484/#b6bfbf/g' res/panels-firefly/* # Section header
sed -i 's/#606060/#b6bfbf/g' res/panels-firefly/* # Text on ouput area
sed -i 's/#010000/#b6bfbf/g' res/panels-firefly/* # Black text
#sed -i 's/#f8f9f9/#b3b3b3/g' res/panels-firefly/* # White text

allthemes: river-bed-theme shark-theme oxford-blue-theme cod-gray-theme firefly-theme

updatethemes: allthemes install


# Include the Rack plugin Makefile framework
include $(RACK_DIR)/plugin.mk
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,16 @@ These are seperate oscillators using the same wavetable that can be turned on an


## Changelog
Version 1.4.1
* The changes in this release is based on [community feedback](https://community.vcvrack.com/t/tiny-tricks-request-for-feedback/6788). A huge thanks to all who pitched in!
* Added: Dark themes. Right click module to access them.
* Changed: Some design details in a bunch of modules.
* Changed: Simplex Oscillator (SN-OSC) now has a trigger input for the waveform mirroring.
* Changed: Wavetable Oscillator (WAVE) now has a trigger input for the waveform mirroring plus capturing (this is quite resource intensive).
* Changed: Added option to turn off scope in Wavetable Oscillator. Useful for improving the UI performance until scope code is improved.
* Changed: Very slight cosmetic request (#12).
* Fixed: Modulation Generators (MG1, MG8, MG16) now keeps values within 0-10 when set to UNI.

Version 1.4.0
* Added: Wavetable Oscillator (WAVE)

Expand Down
9,996 changes: 6,575 additions & 3,421 deletions Rack Panels.ai

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"slug": "TinyTricks",
"name": "Tiny Tricks",
"brand": "Tiny Tricks",
"version": "1.4.0",
"version": "1.4.1",
"license": "MIT",
"author": "Thomas René Sidor",
"authorEmail": "mail@thomassidor.com",
Expand Down
1 change: 1 addition & 0 deletions res/panels-cod-gray/A8.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions res/panels-cod-gray/Blank.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8d2c8e1

Please sign in to comment.