Skip to content

Commit 55bea31

Browse files
committed
bump version; update feed
1 parent 5dbd3b0 commit 55bea31

File tree

3 files changed

+33
-15
lines changed

3 files changed

+33
-15
lines changed

DependencyControl.json

Lines changed: 31 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"dependencyControlFeedFormatVersion": "0.2.0",
2+
"dependencyControlFeedFormatVersion": "0.3.0",
33
"name": "DependencyControl",
44
"description": "The official DependencyControl repository.",
55
"baseUrl": "https://github.com/TypesettingTools/DependencyControl",
@@ -25,20 +25,20 @@
2525
"fileBaseUrl": "@{fileBaseUrl}macros-v@{version}-@{channel}/macros/@{namespace}",
2626
"channels": {
2727
"alpha": {
28-
"version": "0.1.1",
29-
"released": "2015-05-02",
28+
"version": "0.1.2",
29+
"released": "2016-01-14",
3030
"default": true,
3131
"files": [
3232
{
3333
"name": ".moon",
3434
"url": "@{fileBaseUrl}@{fileName}",
35-
"sha1": "7E71D50092C2A36B772C873600488491766BA2DF"
35+
"sha1": "B4895869AF5F3EC5D858E043D2E24E3E32D5701E"
3636
}
3737
],
3838
"requiredModules": [
3939
{
4040
"moduleName": "l0.DependencyControl",
41-
"version": "0.5.0"
41+
"version": "0.6.0"
4242
}
4343
]
4444
}
@@ -50,6 +50,9 @@
5050
"0.1.1": [
5151
"The Install/Uninstall/Update dialogs now sort scripts by name.",
5252
"DependencyControl and its requirements no longer appear in the uninstall menu."
53+
],
54+
"0.1.2": [
55+
"All DependencyControl macros are now available under the common 'DependencyControl' automation submenu."
5356
]
5457
}
5558
}
@@ -63,39 +66,44 @@
6366
"fileBaseUrl": "@{fileBaseUrl}v@{version}-@{channel}/modules/@{scriptName}",
6467
"channels": {
6568
"alpha": {
66-
"version": "0.5.3",
67-
"released": "2015-08-01",
69+
"version": "0.6.0",
70+
"released": "2016-01-14",
6871
"default": true,
6972
"files": [
7073
{
7174
"name": ".moon",
7275
"url": "@{fileBaseUrl}@{fileName}",
73-
"sha1": "C8550E4E5AED94DD9604949126498ABCF3DAAD16"
76+
"sha1": "7680A45DD0744DD1C1049690752842307250BA03"
7477
},
7578
{
7679
"name": "/ConfigHandler.moon",
7780
"url": "@{fileBaseUrl}@{fileName}",
78-
"sha1": "61478FA441574001982C50D619C231B0CEB23121"
81+
"sha1": "A14D9C4691E72E67766A71F36E5411BAA38A0697"
7982
},
8083
{
8184
"name": "/FileOps.moon",
8285
"url": "@{fileBaseUrl}@{fileName}",
83-
"sha1": "610D69DBF1AD285D32F552FAB52394738C293C6E"
86+
"sha1": "02A5CE4691490985C9492D2FD997906C9C934616"
8487
},
8588
{
8689
"name": "/Logger.moon",
8790
"url": "@{fileBaseUrl}@{fileName}",
88-
"sha1": "1E08BB34295CDC8D1F77E2811BF464763ACBBE69"
91+
"sha1": "1932A55299F340BECD7CB27B133015118FA21D8D"
92+
},
93+
{
94+
"name": "/UnitTestSuite.moon",
95+
"url": "@{fileBaseUrl}@{fileName}",
96+
"sha1": "BE622B5307153CB81C960FA565906AE1DC9D3C27"
8997
},
9098
{
9199
"name": "/UpdateFeed.moon",
92100
"url": "@{fileBaseUrl}@{fileName}",
93-
"sha1": "B9F44CBB60BBADD5E002B6A43AE3229635A8207E"
101+
"sha1": "6B2A2CF54A17484CA4423B42AD97B7936145938E"
94102
},
95103
{
96104
"name": "/Updater.moon",
97105
"url": "@{fileBaseUrl}@{fileName}",
98-
"sha1": "E0391E8E6C65AEBD935FC8577DC7EA1DBFE667E7"
106+
"sha1": "DDBF34B685AB36C99DEA979270A9E219BD8E55EE"
99107
}
100108
],
101109
"requiredModules": [
@@ -123,6 +131,16 @@
123131
}
124132
},
125133
"changelog": {
134+
"0.6.0": [
135+
"The __UnitTestSuite__ framework for automatically testing automation scripts and modules has been added.",
136+
"Macros can now be registered with custom submenu name.",
137+
"Logger:logEx() now takes an additional optional `indent` parameter to specify a custom indentation level.",
138+
"FileOps.move() no longer overwrites existing files by default.",
139+
"FileOps.mkdir() can now take paths relative to the current working directory as input and returns `true` on success, `false` when the directory already exists or `nil` if the operation failed.",
140+
"FileOps.remove() now returns detailed results for every path specified in addition to overall success information.",
141+
"FileOps.move() no longer fails to move files across file systems on *nix operating systems and properly cleans up after itself if files could not be overwritten and were renamed instead.",
142+
"FileOps: path validation is no longer broken on non-windows systems"
143+
],
126144
"0.5.3": [
127145
"ConfigHandler: A host of longstanding issues related to config file corruption and concurrent access to config files from multiple DepCtrl-hosting automation scripts have been fixed.",
128146
"Error Reports of required modules loaded by DependencyControl now actually provide semi-useful stack traces.",

macros/l0.DependencyControl.Toolbox.moon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export script_name = "DependencyControl Toolbox"
22
export script_description = "Provides DependencyControl maintenance and configuration tools."
3-
export script_version = "0.1.1"
3+
export script_version = "0.1.2"
44
export script_author = "line0"
55
export script_namespace = "l0.DependencyControl.Toolbox"
66

modules/DependencyControl.moon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ class DependencyControl
533533

534534
rec = DependencyControl{
535535
name: "DependencyControl",
536-
version: "0.5.3",
536+
version: "0.6.0",
537537
description: "Provides script management and auto-updating for Aegisub macros and modules.",
538538
author: "line0",
539539
url: "http://github.com/TypesettingCartel/DependencyControl",

0 commit comments

Comments
 (0)