Skip to content

Commit

Permalink
+ 6.2.0 (Submit)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbeaulant committed Mar 21, 2024
1 parent bb81d20 commit fa0ac7c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 34 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CHANGELOG
This changelog references the relevant changes (bug and security fixes) done
in 6.x, 5.x, 4.x, 3.x, 2.x, 1.x and 0.x versions.

* 6.1.1 (WIP)
* 6.2.0 (WIP)

* Added **Chinese** language
* Fixed multiline material description UI bug
Expand Down
Binary file modified dist/ladb_opencutlist.rbz
Binary file not shown.
6 changes: 3 additions & 3 deletions dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": "6.1.1-dev",
"build": "202403141747",
"url": "https://www.lairdubois.fr/opencutlist/download-dev",
"version": "6.2.0",
"build": "202403210933",
"url": "https://www.lairdubois.fr/opencutlist/download",
"sponsor": {
"objectiveName": "7.0",
"objectiveGoal": 10000,
Expand Down
28 changes: 1 addition & 27 deletions src/ladb_opencutlist.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module OpenCutList

# Create extension
ex = SketchupExtension.new('OpenCutList', File.join(PLUGIN_DIR, 'ruby', 'main'))
ex.version = "6.2.0-dev" ## /!\ Auto-generated line, do not edit ##
ex.version = "6.2.0" ## /!\ 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 @@ -52,32 +52,6 @@ module OpenCutList
ex.description = 'Плагін розрахунку карт розкрою листового та погонного матеріалів для деревообробників і не тільки. Відкритий вихідний код, фінансується користувачами і простий у використанні ;)'
when 'zh'
ex.description = '木工的切割清单和切割图生成器。 开源,众筹且易于使用 ;)'
when 'zz_ar'
ex.description = '3 - مولد لرسومات التقطيع التخطيطية و قوائم القَطع موجه للنجارين. مفتوح المصدر و ممول جماهيريا و سهل الاستخدام ;)'
when 'zz_cs'
ex.description = '3 - Kusovník a nářezový plán pro truhláře. Zdarma, financován z darů a snadno použitelný ;)'
when 'zz_de'
ex.description = '3 - Holzlistengenerator für Tischler/Schreiner/Zimmerer. Open Source, crowdfunded und einfach zu bedienen ;)'
when 'zz_en'
ex.description = '3 - Cutlist and Cutting Diagram Generator for Woodworkers. Open Source, crowdfunded and easy to use ;)'
when 'zz_es'
ex.description = '3 - Generador de lista de corte y diagrama de corte para carpinteros. Software de código abierto, financiado por crowdfunding, es fácil de usar ;)'
when 'zz_fr'
ex.description = '3 - Générateur de fiche de débit et calepinage de panneaux et barres pour les boiseux. Open Source, financé par les utilisateurs et facile à utiliser ;)'
when 'zz_he'
ex.description = '3 - תוסף לחישוב תוכניות חיתוך לנגרים ועוד. קוד פתוח, מימון המונים וקלות שימוש ;)'
when 'zz_it'
ex.description = '3 - Generatore di Distinte Materiali e Schemi di Taglio per falegnami. Open Source, crowdfunded e facile da usare ;)'
when 'zz_nl'
ex.description = '3 - Genereer materiaallijsten, zaagschema\'s voor panelen en balken voor houtbewerkers. Open Source, crowdfunded en gebruiksvriendelijk ;)'
when 'zz_pt'
ex.description = '3 - Planilha de Produção e Gerador de Plano de Corte de chapas e barras para marceneiros, carpinteiros e serralheiros. Código aberto, crowdfunded e fácil de usar ;)'
when 'zz_ru'
ex.description = '3 - Плагин расчета карт раскроя для деревообработчиков и не только. Открытый исходный код, краундфандинг и простота использования ;)'
when 'zz_uk'
ex.description = '3 - Плагін розрахунку карт розкрою листового та погонного матеріалів для деревообробників і не тільки. Відкритий вихідний код, фінансується користувачами і простий у використанні ;)'
when 'zz_zh'
ex.description = '3 - 木工的切割清单和切割图生成器。 开源,众筹且易于使用 ;)'
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 = '202403210931'; // /!\ Auto-generated line, do not edit //
var EXTENSION_BUILD = '202403210933'; // /!\ 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,8 +1,8 @@
module Ladb::OpenCutList

EXTENSION_NAME = 'OpenCutList'.freeze
EXTENSION_VERSION = '6.2.0-dev'.freeze
EXTENSION_BUILD = '202403210931'.freeze
EXTENSION_VERSION = '6.2.0'.freeze
EXTENSION_BUILD = '202403210933'.freeze

DEFAULT_LANGUAGE = 'en'
ENABLED_LANGUAGES = %w[ar cs de en es fr he it nl pt ru uk zh]
Expand Down

0 comments on commit fa0ac7c

Please sign in to comment.