Skip to content

Commit

Permalink
+ 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bbeaulant committed Aug 5, 2021
1 parent 25302a4 commit c60fe14
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ CHANGELOG
This changelog references the relevant changes (bug and security fixes) done
in 2.x, 1.x and 0.x versions.

* 2.1.1 (WIP)
* 2.1.1 (2021-08-02)

* Added thickness fields to labels
* Fixed forum conversation tag filter
* Fixed bug in preset names with quote
* Added total cut length in cutting diagram summary
* Added model description in printable headers if it's defined
* Fixed forum conversation tag filter
* Fixed bug in preset when names contains quote
* Improved dimensions display for small parts in cutting diagrams
* Leading/trailing spaces of material names removed during import

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": "2.1.0",
"build": "202105280640",
"version": "2.1.1",
"build": "202108021812",
"url": "https://www.lairdubois.fr/opencutlist/download"
}
4 changes: 2 additions & 2 deletions dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.1.0",
"build": "202105280640",
"version": "2.1.1",
"build": "202108021812",
"url": "https://www.lairdubois.fr/opencutlist/download"
}
2 changes: 1 addition & 1 deletion src/ladb_opencutlist.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module OpenCutList

# Create extension
ex = SketchupExtension.new('OpenCutList', 'ladb_opencutlist/ruby/main')
ex.version = "2.1.1-dev" ## /!\ Auto-generated line, do not edit ##
ex.version = "2.1.1" ## /!\ Auto-generated line, do not edit ##
ex.copyright = '2016-2020 - GNU GPLv3'
ex.creator = 'L\'Air du Bois - www.lairdubois.fr'

Expand Down
2 changes: 1 addition & 1 deletion src/ladb_opencutlist/js/constants.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// CONSTANTS
// ======================

var EXTENSION_BUILD = '202106010541'; // /!\ Auto-generated line, do not edit //
var EXTENSION_BUILD = '202108021812'; // /!\ Auto-generated line, do not edit //

// UI /////

Expand Down
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 = '2.1.1-dev'.freeze
EXTENSION_BUILD = '202106010541'.freeze
EXTENSION_VERSION = '2.1.1'.freeze
EXTENSION_BUILD = '202108021812'.freeze

end

0 comments on commit c60fe14

Please sign in to comment.