Skip to content
Snippets Groups Projects
Commit d5a72a86 authored by Sina Rohde's avatar Sina Rohde
Browse files

Merge remote-tracking branch 'origin/dev' into f-overview

parents 259e249c ed19f2ff
No related branches found
No related tags found
1 merge request!125F overview
Pipeline #44834 passed
......@@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ##
### Added ###
### Changed ###
### Deprecated ###
### Removed ###
### Fixed ###
### Security ###
### Documentation ###
## [0.13.1 - 2023-11-17] ##
### Fixed ###
* [#242](https://gitlab.com/linkahead/linkahead-webui/-/issues/242) Missing
LinkAhead logo in footer
## [0.13.0 - 2023-10-11] ##
### Added ###
......@@ -40,10 +63,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Update to bootstrap 5.3.1
* Update to bootstrap-icons 1.10.5
### Deprecated ###
### Removed ###
### Fixed ###
* The new query panel can't be deactivated.
......@@ -55,8 +74,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Fixed breaking timestamps due to whitespace
[caosdb-webui#239](https://gitlab.com/caosdb/caosdb-webui/-/issues/239)
### Security ###
### Documentation ###
* Added `tools/query_template_descrtiption.yml` for easy set-up of query
......
......@@ -20,6 +20,6 @@ authors:
given-names: Stefan
orcid: https://orcid.org/0000-0001-7214-8125
title: LinkAhead - WebUI
version: 0.13.0
version: 0.13.1
doi: 10.3390/data4020083
date-released: 2023-10-11
date-released: 2023-11-17
src/core/pics/logo_linkahead_no_subtitle_dark_bg_144x25.png

3.24 KiB

......@@ -26,9 +26,9 @@ copyright = '2022, IndiScale GmbH'
author = 'Daniel Hornung'
# The short X.Y version
version = '0.13.0'
version = '0.13.2'
# The full version, including alpha/beta/rc tags
release = '0.13.0'
release = '0.13.2-SNAPSHOT'
# -- General configuration ---------------------------------------------------
......
......@@ -99,28 +99,28 @@ def read_file(fipath, ftype):
def create_table_preview(fi):
if not ending_is_valid(fi.path):
print("Cannot create preview for Entity with ID={}, because download"
"failed.".format(entity_id), file=sys.stderr)
"failed.".format(fi.id), file=sys.stderr)
sys.exit(5)
ending = get_ending(fi.path)
if not size_is_ok(fi):
print("Skipped creating a preview for Entity with ID={}, because the"
"file is large!".format(entity_id), file=sys.stderr)
"file is large!".format(fi.id), file=sys.stderr)
sys.exit(2)
try:
tmpfile = fi.download()
except Exception:
print("Cannot create preview for Entity with ID={}, because download"
"failed.".format(entity_id), file=sys.stderr)
"failed.".format(fi.id), file=sys.stderr)
sys.exit(3)
try:
df = read_file(tmpfile, ending)
except ValueError:
print("Cannot read File Entity with ID={}.".format(entity_id),
print("Cannot read File Entity with ID={}.".format(fi.id),
file=sys.stderr)
sys.exit(4)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment