Skip to content

Commit

Permalink
+ 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bbeaulant committed May 31, 2021
1 parent 9e552d4 commit f6e26db
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 9 deletions.
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.0.1",
"build": "202104111100",
"version": "2.1.0",
"build": "202105280640",
"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.0.1",
"build": "202104111100",
"version": "2.1.0",
"build": "202105280640",
"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.0-dev" ## /!\ Auto-generated line, do not edit ##
ex.version = "2.1.0" ## /!\ 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 = '202105130850'; // /!\ Auto-generated line, do not edit //
var EXTENSION_BUILD = '202105280640'; // /!\ Auto-generated line, do not edit //

// UI /////

Expand Down
4 changes: 3 additions & 1 deletion src/ladb_opencutlist/js/plugins/jquery.ladb.abstract-tab.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,8 @@ LadbAbstractTab.prototype.print = function (margin) {
if (margin === undefined) {
if (this.dialog.capabilities.dialog_print_margin === 1) { /* 1 = Small */
margin = '0.25in 0.25in 0.5in 0.25in';
} else {
margin = '';
}
}

Expand All @@ -297,7 +299,7 @@ LadbAbstractTab.prototype.print = function (margin) {
window.print();

// Retore margin
cssPageRuleStyle.margin = undefined;
cssPageRuleStyle.margin = '';

};

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.0-dev'.freeze
EXTENSION_BUILD = '202105130850'.freeze
EXTENSION_VERSION = '2.1.0'.freeze
EXTENSION_BUILD = '202105280640'.freeze

end

0 comments on commit f6e26db

Please sign in to comment.