Skip to content

Commit f34ba89

Browse files
committed
Updated README
1 parent de2f42f commit f34ba89

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ Contains scripts I created for obs-studio (https://github.com/obsproject/obs-stu
33

44
## filter-dropshadow.lua
55
This script adds an effect filter that adds a hard drop shadow to any source it's added to.
6+
7+
## filter-gaussian-blur.lua
8+
This script adds an effect filter that blurs a source with a gaussian blur filter.

build.cake

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ Task("Clean")
3131
Task("Zip")
3232
.IsDependentOn("Clean")
3333
.Does(() => {
34+
CopyFile("./LICENSE", "./src/LICENSE.txt");
35+
CopyFile("./README.md", "./src/README.md");
3436
Zip("./src", "./build/scripts.zip");
37+
DeleteFile("./src/LICENSE.txt");
38+
DeleteFile("./src/README.md");
3539
});
3640

3741
Task("Pack")
@@ -40,11 +44,12 @@ Task("Pack")
4044
var now = DateTime.UtcNow;
4145
var secondsToday = (long)now.TimeOfDay.TotalSeconds;
4246
var daysSince2000 = (long)(now - new DateTime(2000, 01, 01, 00, 00, 00, DateTimeKind.Utc)).TotalDays;
47+
var versionStr = $"0.1.{daysSince2000}.{secondsToday}";
4348

4449
var settings = new ChocolateyPackSettings {
4550
Id = "obs-studio-wiiplayer2-scripts",
4651
Title = "DarkLink's Scripts for OBS Studio",
47-
Version = $"0.1.{daysSince2000}.{secondsToday}",
52+
Version = versionStr,
4853
Authors = new[] { "WiiPlayer2" },
4954
Owners = new[] { "WiiPlayer2" },
5055
Summary = "DarkLink's Scripts for OBS Studio",
@@ -79,6 +84,8 @@ Task("Pack")
7984
OutputDirectory = "./build",
8085
};
8186
ChocolateyPack(settings);
87+
88+
System.IO.File.WriteAllText("./build/version.txt", versionStr);
8289
});
8390

8491
Task("Publish")

cake/choco/VERIFICATION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
This package is published by myself, WiiPlayer2 / DarkLink (https://github.com/WiiPlayer2). The binary (scripts.zip) is the packed content of the src folder of the source code repository (https://github.com/WiiPlayer2/obs-scripts).
1+
This package is published by myself, WiiPlayer2 / DarkLink (https://github.com/WiiPlayer2). The binary (scripts.zip) is the packed content of the src folder of the source code repository (https://github.com/WiiPlayer2/obs-scripts) + LICENSE and README.md.

0 commit comments

Comments
 (0)