Skip to content

Commit cf3ff6e

Browse files
committed
v0.65.0
1 parent a42b910 commit cf3ff6e

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
### v0.64.2
1+
2+
3+
### v0.65.0
24
- Promote `ai2html-beta.js` to `ai2html.js`, rename old `ai2html.js` to `ai2html-legacy.js`
35

46
### v0.64.1 (ai2html-beta.js)

ai2html-legacy.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// ai2html.js
2-
var scriptVersion = "0.64";
3-
// var scriptEnvironment = "nyt";
4-
var scriptEnvironment = "";
1+
// ai2html-legacy.js
2+
var scriptVersion = "0.64.0"; // Increment the final digit after future updates
3+
var scriptEnvironment = "nyt";
4+
// var scriptEnvironment = "";
55

66
// ai2html is a script for Adobe Illustrator that converts your Illustrator document into html and css.
77

@@ -127,7 +127,7 @@ var exportImageFiles = function(dest,width,height,formats,initialScaling,doubler
127127
// options, dest contains the full path including the file name
128128
// doubleres is "yes" or "no" whether you want to allow images to be double res
129129
// if you want to force ai2html to use doubleres, use "always"
130-
130+
131131
if (doubleres=="yes" || doubleres=="always") {
132132
// if image is too big to use double-res, then just output single-res.
133133
var pngImageScaling = 200 * initialScaling;

ai2html.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function main() {
77
// See (for example) https://forums.adobe.com/thread/1810764 and
88
// http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/pdf/illustrator/scripting/Readme.txt
99

10-
var scriptVersion = "0.64";
10+
var scriptVersion = "0.65.0"; // Increment final digit for bug fixes, middle digit for new functionality
1111

1212
// ai2html is a script for Adobe Illustrator that converts your Illustrator document into html and css.
1313
// Copyright (c) 2011-2015 The New York Times Company

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ai2html",
3-
"version": "0.64.2",
3+
"version": "0.65.0",
44
"description": "A script for Adobe Illustrator that converts your Illustrator artwork into an html page.",
55
"main": "./ai2html-beta.js",
66
"scripts": {

0 commit comments

Comments
 (0)