Skip to content

Commit

Permalink
+ 5.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bbeaulant committed Jun 20, 2023
1 parent ae5d391 commit e382835
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ CHANGELOG
This changelog references the relevant changes (bug and security fixes) done
in 5.x, 4.x, 3.x, 2.x, 1.x and 0.x versions.

* 5.0.2 (WIP)
* 5.0.2 (2023-06-20)

* Fixed Architecture dimension parser
* Fixed Reset standard bar or sheet configured on cutting diagram 1D or 2D if it no longer exists on material
* Fixed Escape special characters in material names
* Improved Export Cutlist "Copy" feature now puts a TSV string to clipboard
* Improved RU / UK
* Improved Ukrainian terms
* Improved Russian terms

* 5.0.1 (2023-05-22)

Expand Down
Binary file modified dist/ladb_opencutlist.rbz
Binary file not shown.
4 changes: 2 additions & 2 deletions dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "5.0.1",
"build": "202305190751",
"version": "5.0.2",
"build": "202306181755",
"url": "https://www.lairdubois.fr/opencutlist/download",
"sponsor": {
"objectiveName": "6.0",
Expand Down
4 changes: 1 addition & 3 deletions src/ladb_opencutlist.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module OpenCutList

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

Expand Down Expand Up @@ -45,8 +45,6 @@ module OpenCutList
ex.description = 'Плагін розрахунку карт розкрою листового та погонного матеріалів для деревообробників і не тільки. Відкритий вихідний код, фінансується користувачами і простий у використанні ;)'
when 'vi'
ex.description = 'Danh sách cắt và Trình tạo sơ đồ cắt cho thợ mộc. Mã nguồn mở, được huy động vốn từ cộng đồng và dễ sử dụng;)'
when 'zz'
ex.description = '3 - Cutlist and Cutting Diagram Generator for Woodworkers. Open Source, crowdfunded and easy to use ;)'
else
ex.description = 'Cutlist and Cutting Diagram Generator for Woodworkers. Open Source, crowdfunded and easy to use ;)'
## DESCRIPTION_END ##
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 = '202305230550'; // /!\ Auto-generated line, do not edit //
var EXTENSION_BUILD = '202306181755'; // /!\ 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 = '5.0.2-dev'.freeze
EXTENSION_BUILD = '202305230550'.freeze
EXTENSION_VERSION = '5.0.2'.freeze
EXTENSION_BUILD = '202306181755'.freeze

end

0 comments on commit e382835

Please sign in to comment.