Skip to content

Commit 90cdb02

Browse files
committed
bump version; update feed
1 parent a5404d1 commit 90cdb02

2 files changed

Lines changed: 18 additions & 9 deletions

File tree

DependencyControl.json

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
"fileBaseUrl": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/v@{version}-@{channel}/@{namespacePath}",
1818
"channels": {
1919
"alpha": {
20-
"version": "0.2.9",
21-
"released": "2015-05-12",
20+
"version": "0.3.0",
21+
"released": "2015-07-05",
2222
"default": true,
2323
"files": [
2424
{
2525
"name": ".moon",
2626
"url": "@{fileBaseUrl}@{fileName}",
27-
"sha1": "2F120C6589E7B9B2DD3F867AE64DCE9B223898C2"
27+
"sha1": "064B1D587F5FF570882273ECE3FC4D1325A74A6E"
2828
},
2929
{
3030
"name": ".lua",
@@ -53,12 +53,12 @@
5353
{
5454
"name": "/LineContents.lua",
5555
"url": "@{fileBaseUrl}@{fileName}",
56-
"sha1": "B511E2B6A32D2643BEF54FCC259E7E0B7358362C"
56+
"sha1": "59A68AF666DA20CE099938493E8BE7FD9CBEB51C"
5757
},
5858
{
5959
"name": "/TagList.lua",
6060
"url": "@{fileBaseUrl}@{fileName}",
61-
"sha1": "EF0991C047357DB585EC1DD7A8B7FBE4640AEF14"
61+
"sha1": "021746ECF3D4C79F7C66FF2FAC3506E8CA1D33F3"
6262
},
6363
{
6464
"name": "/Draw/Bezier.lua",
@@ -93,7 +93,7 @@
9393
{
9494
"name": "/Primitive/Number.lua",
9595
"url": "@{fileBaseUrl}@{fileName}",
96-
"sha1": "B0ABD2AE7B536668EE61F2722E49D36ACDBFEE54"
96+
"sha1": "DD650F7BEC9A82D167AFF04B3FCFBDA6BF357F50"
9797
},
9898
{
9999
"name": "/Primitive/Point.lua",
@@ -128,12 +128,12 @@
128128
{
129129
"name": "/Section/Text.lua",
130130
"url": "@{fileBaseUrl}@{fileName}",
131-
"sha1": "820E24E704958FA073CEBBF1C6996CDAAA5C534A"
131+
"sha1": "8C857082A09A2B3402DF0017C49B298D265CCB5A"
132132
},
133133
{
134134
"name": "/Tag/Align.lua",
135135
"url": "@{fileBaseUrl}@{fileName}",
136-
"sha1": "1686FEF8F396524551C5C6985457A88F3FF67749"
136+
"sha1": "81BE42F90AFAE1D11C2DB08B61D7423D37143866"
137137
},
138138
{
139139
"name": "/Tag/Base.lua",
@@ -240,6 +240,15 @@
240240
}
241241
},
242242
"changelog": {
243+
"0.3.0": [
244+
"Align:getPositionOffset(): An optional parameter was added to allow for specifying a reference alignment. Previously the offset was always relative to the coordinate origin (\\an7 alignment), now it's possible to use this method to calculate the offset between any given source and target alignment.",
245+
"TagList:isTagTransformed() was renamed to TagList:checkTransformed() to better reflect the option of making it return a hashtable of all tags and whether or not they're being transformed when called without an argument. ",
246+
"A convenient Number:ModEq(value, divisor) comparison method was added to Number primitives.",
247+
"The LineContents:getMetrics() and TagSection:getMetrics() were renamed to :getTextMetrics and had the option to also emit LineBounds removed. The type bounds table now uses .w and .h for height just as LineBounds does.",
248+
"LineContents:getPosition(): a bug was fixed that could cause the returned origin value to be of type boolean instead of an ASS.Point.",
249+
"LineContents:getDefaultTags(): style defaults for tags now always take precedence over generic defaults.",
250+
"Fixed a bug in the tag mapping table that resulted in a missing default value for \\fry tags."
251+
],
243252
"0.2.9": [
244253
"LineContents:replaceTags(): An argument was added to control insertion of remaining tags not previously found in the line (on by default to match old behavior).",
245254
"LineContents:replaceTags() now automatically creates the missing tag section at the beginning of the line if insertion of remaining tags was requested starting at index 1."

l0/ASSFoundation.moon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
DependencyControl = require "l0.DependencyControl"
22
version = DependencyControl{
33
name: "ASSFoundation",
4-
version: "0.2.9",
4+
version: "0.3.0",
55
description: "General purpose ASS processing library",
66
author: "line0",
77
url: "http://github.com/TypesettingTools/ASSFoundation",

0 commit comments

Comments
 (0)