Skip to content

Commit

Permalink
+ 1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bbeaulant committed Aug 27, 2020
1 parent d8ed26b commit 6a8f406
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ CHANGELOG
This changelog references the relevant changes (bug and security fixes) done
in 1.x and 0.x versions.

* 1.9.3 (2020-08-27)

* Fixed cutting diagrams 1D bug introduced in 1.9.2

* 1.9.2 (2020-08-27)

* Fixed cutting size with edge reduction in cutting diagrams
Expand Down
2 changes: 1 addition & 1 deletion build/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lairdubois-opencutlist-sketchup-extension",
"version": "1.9.2",
"version": "1.9.3",
"description": "OpenCutList by L'Air du Bois =======================================",
"main": "index.js",
"directories": {
Expand Down
Binary file modified dist/ladb_opencutlist-dev.rbz
Binary file not shown.
Binary file modified dist/ladb_opencutlist.rbz
Binary file not shown.
4 changes: 2 additions & 2 deletions dist/manifest-dev.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.9.2",
"build": "202008271035",
"version": "1.9.3",
"build": "202008271931",
"url": "https://raw.githubusercontent.com/lairdubois/lairdubois-opencutlist-sketchup-extension/master/dist/ladb_opencutlist.rbz"
}
4 changes: 2 additions & 2 deletions dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.9.2",
"build": "202008271035",
"version": "1.9.3",
"build": "202008271931",
"url": "https://raw.githubusercontent.com/lairdubois/lairdubois-opencutlist-sketchup-extension/master/dist/ladb_opencutlist.rbz"
}
4 changes: 2 additions & 2 deletions src/ladb_opencutlist/ruby/constants.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Ladb::OpenCutList

EXTENSION_NAME = 'OpenCutList'.freeze
EXTENSION_VERSION = '1.9.2'.freeze
EXTENSION_BUILD = '202008271035'.freeze
EXTENSION_VERSION = '1.9.3'.freeze
EXTENSION_BUILD = '202008271931'.freeze

end
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def run
# Add boxes from parts
group.parts.each { |part|
for i in 1..part.count
e.add_box(part.cutting_size.length.to_l.to_f, part) # "to_l.to_f" Reconvert string représentation of length to float to take advantage Sketchup precision
e.add_box(part.cutting_length.to_l.to_f, part) # "to_l.to_f" Reconvert string représentation of length to float to take advantage Sketchup precision
end
}

Expand Down

0 comments on commit 6a8f406

Please sign in to comment.