Skip to content

Commit

Permalink
fix Add a white outline to labels
Browse files Browse the repository at this point in the history
  • Loading branch information
pchiorean committed Oct 18, 2021
1 parent ba80564 commit 6895b3b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion export/PrepareForExport.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Prepare for export v2.3 (2021-10-17)
Prepare for export v2.3.1 (2021-10-18)
(c) 2020-2021 Paul Chiorean (jpeg@basement.ro)
Hides some layers and moves items with special colors to separate spreads.
Expand Down Expand Up @@ -162,6 +162,9 @@ function prepareForExport() {
appliedFont: app.fonts.item('Helvetica\tRegular'),
pointSize: 6,
fillColor: 'Registration',
strokeWeight: '0.4 pt',
strokeColor: 'Paper',
// endJoin: EndJoin.ROUND_END_JOIN,
capitalization: Capitalization.ALL_CAPS
};
infoFrame.fit(FitOptions.FRAME_TO_CONTENT);
Expand Down
5 changes: 4 additions & 1 deletion misc/LabelPage.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Label page v1.3 (2021-10-17)
Label page v1.3.1 (2021-10-18)
(c) 2020-2021 Paul Chiorean (jpeg@basement.ro)
Adds a custom label on the current page's slug.
Expand Down Expand Up @@ -78,6 +78,9 @@ function main() {
appliedFont: app.fonts.item('Helvetica\tRegular'),
pointSize: 6,
fillColor: 'Registration',
strokeWeight: '0.4 pt',
strokeColor: 'Paper',
// endJoin: EndJoin.ROUND_END_JOIN,
capitalization: isCaps ? Capitalization.ALL_CAPS : Capitalization.NORMAL
};
infoFrame.fit(FitOptions.FRAME_TO_CONTENT);
Expand Down
5 changes: 4 additions & 1 deletion misc/LabelPageRatios.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Page ratios v2.2 (2021-10-17)
Page ratios v2.2.1 (2021-10-18)
(c) 2020-2021 Paul Chiorean (jpeg@basement.ro)
Adds a label (ratio) on each page's slug.
Expand Down Expand Up @@ -63,6 +63,9 @@ function main() {
appliedFont: app.fonts.item('Helvetica\tRegular'),
pointSize: 6,
fillColor: 'Registration',
strokeWeight: '0.4 pt',
strokeColor: 'Paper',
// endJoin: EndJoin.ROUND_END_JOIN,
capitalization: isCaps ? Capitalization.ALL_CAPS : Capitalization.NORMAL
};
infoFrame.fit(FitOptions.FRAME_TO_CONTENT);
Expand Down

0 comments on commit 6895b3b

Please sign in to comment.