mirror of
https://github.com/Oak-and-Sprout/sprout-track.git
synced 2026-04-26 00:51:10 -05:00
updated to version 0.96.0
This commit is contained in:
+1
-1
@@ -8,7 +8,7 @@ AUTH_LIFE="86400"
|
||||
#The idle time before being logged out
|
||||
IDLE_TIME="28800"
|
||||
# Version of the app
|
||||
APP_VERSION="0.94.95"
|
||||
APP_VERSION="0.96.0"
|
||||
# Whether to set cookies as secure (requires HTTPS)
|
||||
COOKIE_SECURE="false"
|
||||
# Encryption hash for local deployment data encryption
|
||||
|
||||
@@ -1,5 +1,18 @@
|
||||
# Sprout Track Changelog
|
||||
|
||||
## v0.96.0 - Timeline Overhaul V2 & Account Payments
|
||||
|
||||
### Changes
|
||||
|
||||
#### Timeline Overhaul
|
||||
- Added a more streamlined version of the timeline
|
||||
- Made daily summary the filter for activities that exist on the day
|
||||
|
||||
#### Account Expiration & Payments
|
||||
- Added functionality for expired accounts to have soft user experience
|
||||
- Added in subscription and full license payment management with Stripe
|
||||
- Overhauled account usage to not affect self hosted versions of the app
|
||||
|
||||
## v0.94.95 - Calendar Hotfix for Accounts
|
||||
|
||||
### Changes
|
||||
|
||||
+1
-1
@@ -38,7 +38,7 @@ RUN mkdir -p /app/env && \
|
||||
echo "TZ=UTC" >> /app/env/.env && \
|
||||
echo "AUTH_LIFE=86400" >> /app/env/.env && \
|
||||
echo "IDLE_TIME=28800" >> /app/env/.env && \
|
||||
echo "APP_VERSION=0.94.95" >> /app/env/.env && \
|
||||
echo "APP_VERSION=0.96.0" >> /app/env/.env && \
|
||||
echo "COOKIE_SECURE=false" >> /app/env/.env && \
|
||||
echo "Base .env file created (ENC_HASH will be generated at startup)"
|
||||
|
||||
|
||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "baby-tracker",
|
||||
"version": "0.94.95",
|
||||
"version": "0.96.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "baby-tracker",
|
||||
"version": "0.94.95",
|
||||
"version": "0.96.0",
|
||||
"dependencies": {
|
||||
"@lucide/lab": "^0.1.2",
|
||||
"@prisma/client": "^6.3.1",
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "baby-tracker",
|
||||
"version": "0.94.95",
|
||||
"version": "0.96.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
|
||||
@@ -41,7 +41,7 @@ if [ -z "$ENC_HASH_EXISTS" ]; then
|
||||
echo "TZ=UTC" >> "$ENV_FILE"
|
||||
echo "AUTH_LIFE=86400" >> "$ENV_FILE"
|
||||
echo "IDLE_TIME=28800" >> "$ENV_FILE"
|
||||
echo "APP_VERSION=0.94.95" >> "$ENV_FILE"
|
||||
echo "APP_VERSION=0.96.0" >> "$ENV_FILE"
|
||||
echo "COOKIE_SECURE=false" >> "$ENV_FILE"
|
||||
echo "# Encryption hash for local deployment data encryption" >> "$ENV_FILE"
|
||||
echo "ENC_HASH=\"$RANDOM_HASH\"" >> "$ENV_FILE"
|
||||
|
||||
Reference in New Issue
Block a user