Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖 Release Version 1.0.3(-rc2) #633

Merged
merged 5 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build

on:
push:
branches:
- release/*
pull_request:
branches: [main]
paths:
Expand All @@ -17,6 +20,7 @@ jobs:
outputs:
changes: ${{ steps.filter.outputs.changes }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish_feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main
- feature-**
- release/*

jobs:
setup:
Expand Down
18 changes: 18 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# Twake Drive v1.0.3

## Features

- Infinite scrolling in files list view
- Sort files chronologically
- Added Left and Right buttons in the preview gallery

## Fixes and Improvements

- Folders with large numbers of files now work
- OIDC logout
- Dark mode related fixes
- Rework of share and permissions dialog
- Removed Cassandra support
- A large number of minor fixes
- Translation of user notifications

# Twake Drive v1.0.2

## Features
Expand Down
6 changes: 3 additions & 3 deletions tdrive/backend/node/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default {
current: /* @VERSION_DETAIL */ "1.0.2",
current: /* @VERSION_DETAIL */ "1.0.3",
minimal: {
web: /* @MIN_VERSION_WEB */ "1.0.1",
mobile: /* @MIN_VERSION_MOBILE */ "1.0.0",
web: /* @MIN_VERSION_WEB */ "1.0.3",
mobile: /* @MIN_VERSION_MOBILE */ "1.0.3",
},
};
10 changes: 5 additions & 5 deletions tdrive/docker/tdrive-node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Common node machine
FROM node:lts-alpine as node-base
FROM node:lts-alpine AS node-base

### Install dependencies
RUN apk add --update-cache \
Expand All @@ -13,13 +13,13 @@ WORKDIR /usr/src/app
COPY backend/node/package*.json ./

# Test Stage
FROM node-base as test
FROM node-base AS test

RUN npm install
COPY backend/node/ .

# Add frontend Stage
FROM node-base as installed-libs
FROM node-base AS installed-libs

COPY backend/node/ .
#Install dev dependancies for build
Expand All @@ -34,7 +34,7 @@ RUN rm -rf node_modules
RUN npm ci --legacy-peer-deps

# Development Stage
FROM installed-libs as development
FROM installed-libs AS development

ENV NODE_ENV=development
RUN npm install -g pino-pretty && \
Expand All @@ -43,7 +43,7 @@ RUN npm install -g pino-pretty && \
CMD ["npm", "run", "dev:debug"]

# Production Stage
FROM installed-libs as production
FROM installed-libs AS production

EXPOSE 4000
CMD ["npm", "run", "serve"]
4 changes: 2 additions & 2 deletions tdrive/frontend/src/app/environment/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
version: /* @VERSION */ '1.0.2',
version_detail: /* @VERSION_DETAIL */ '1.0.2',
version: /* @VERSION */ '1.0.3',
version_detail: /* @VERSION_DETAIL */ '1.0.3',
version_name: /* @VERSION_NAME */ 'Ghost-Dog',
};
Loading