Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
also bumped deps
  • Loading branch information
bddvlpr committed Jan 28, 2024
1 parent bc9ee2f commit 237cf2d
Show file tree
Hide file tree
Showing 4 changed files with 445 additions and 416 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Some schools, universities, or workspaces do not enable the iCalendar API that U
Simply clone the repository and cd into it using `git clone https://github.com/bddvlpr/untis-ics-sync && cd untis-ics-sync`.
If you're planning on using Docker, you could use the [bddvlpr/untis-ics-sync](https://hub.docker.com/r/bddvlpr/untis-ics-sync/) image from Docker Hub instead of the git repository.

## Redis

Version 0.7.0 and above require a redis server to be supplied in environment variables for queue processing. Either externally provide one, or define one in a Docker compose environment.

### Setup SSL

From version 0.2.6 and forward, SSL will not be natively supported anymore. Please use a reverse proxy instead of supplying the docker container with an SSL certificate.
Expand Down
6 changes: 2 additions & 4 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
}:
mkYarnPackage rec {
pname = "untis-ics-sync";
version = "0.6.1";
version = "0.7.0";

src = ./.;

offlineCache = fetchYarnDeps {
yarnLock = src + "/yarn.lock";
hash = "sha256-mToEmc4cNd2fsyT/DUkzMiO4BYUDw6aexbcXOVfB2ds=";
hash = "sha256-D2gX6cOfVbUdSmwAz8mxf+D3TvHfYOHpT0ar1nKFBF0=";
};

nativeBuildInputs = [makeWrapper];
Expand All @@ -30,8 +30,6 @@ mkYarnPackage rec {
--add-flags "$out/libexec/untis-ics-sync/deps/untis-ics-sync/dist/main.js"
'';

dontStrip = true;

meta = with lib; {
description = "Serves a calendar API (ICS) for events provided from Untis";
homepage = "https://github.com/bddvlpr/untis-ics-sync";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "untis-ics-sync",
"version": "0.6.1",
"version": "0.7.0",
"description": "Serves a calendar API (ICS) for events provided from Untis.",
"author": "Luna Simons <[email protected]> (https://bddvlpr.com)",
"license": "BSD-3-Clause",
Expand Down
Loading

0 comments on commit 237cf2d

Please sign in to comment.