shattered_machine 0.0.8 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1ad75dfc5905cdbc60e533414420bd7846cf67017db482afe5878b7118f9445f
4
- data.tar.gz: f0b8f2fcb73d96d7f402064e9d4fd0c766158b44ec382665c89020951a28f5ff
3
+ metadata.gz: fa2427095f09159dc03f3c1e979b5da0c6ba8f3eeb533ba90f83c833228db1a8
4
+ data.tar.gz: 91cdce766748fc0a91a8adeb034d7f43d3bfad0f648afbf081860728fed58944
5
5
  SHA512:
6
- metadata.gz: c3bc4229e1f96bca2d135e157f62dd37b74ca28e2f5f8451fee4a57058f01807a78559ded829ed6815150c2a5a86f4778586e1918161c680838f056740a67fd6
7
- data.tar.gz: 3e3d91ac8f54480c1179888aff957990d1ce61b65ed262b261589aa00d8ac1445d3c61a40d3133d0bb2d8eec5ae2575da7f778a20ea2893ba06f869ed0342789
6
+ metadata.gz: 6ae3646dbe6d48037bd58e6f6309be411f328e84a2c796075ae24221879a3550591ab0fbefc22e51ffaa2c014b09a5786736de6806b0367553bb3a64257cef2f
7
+ data.tar.gz: 54c658e615b37b1513692b3b761f54e5ead92fb728b3203b68e735541fa2e23e9e4637f9800191f29a2f7ae0ef823d691fd3776f9e72b07fbf1de26369575179
data/CHANGELOG CHANGED
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.0.9] - 2021-08-06
8
+ ### Fixed
9
+ - Pixel sorted sort by attribute
10
+ - Sampler output filename attribute
11
+
7
12
  ## [0.0.8] - 2021-07-01
8
13
  ### Added
9
14
  - Icon
@@ -7,7 +7,7 @@ require 'shattered_machine/sampler'
7
7
 
8
8
  # main file for ShatteredMachine gem
9
9
  module ShatteredMachine
10
- VERSION = '0.0.8'
10
+ VERSION = '0.0.9'
11
11
 
12
12
  class << self
13
13
  end
@@ -43,7 +43,7 @@ module ShatteredMachine
43
43
  end
44
44
 
45
45
  def rust_formatted_sorting_by
46
- ruby_to_rust_sorting_by = { hue: '0', staturation: '1' }
46
+ ruby_to_rust_sorting_by = { hue: '0', saturation: '1' }
47
47
  ruby_to_rust_sorting_by[@sorting_by]
48
48
  end
49
49
  end
@@ -11,7 +11,7 @@ module ShatteredMachine
11
11
  # @param options [Hash] options for specifying which
12
12
  def initialize(io, options = {})
13
13
  @io = io
14
- @base_output_filename = io.output_filename || 'sample'
14
+ @base_output_filename = io.output_filename.presence || 'sample'
15
15
  @algorithms_to_sample = options[:algorithms_to_sample] || ALL_ALGORITHMS
16
16
  end
17
17
 
@@ -4,7 +4,7 @@ require 'English'
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = 'shattered_machine'
7
- s.version = '0.0.8'
7
+ s.version = '0.0.9'
8
8
  s.required_ruby_version = '>= 2.0.0'
9
9
  s.required_rubygems_version = '>= 1.8.11'
10
10
  s.summary = 'Shattered Machine core engine'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shattered_machine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Flo Girardo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-01 00:00:00.000000000 Z
11
+ date: 2021-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rusty_engine_ffi