Skip to content
Snippets Groups Projects
Commit db9c711d authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

Merge branch 'release-0.13.3' into 'main'

Release 0.13.3

See merge request !134
parents 8b21c8b6 297842c5
Branches
Tags v0.13.3
1 merge request!134Release 0.13.3
Pipeline #50211 passed
......@@ -4,6 +4,13 @@ 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).
## [0.13.3 - 2024-04-23] ##
### Fixed ###
- Using correct (dynamic) base path for file upload.
- CSS with scrolling for long tables and entity names.
## [0.13.2 - 2024-02-20] ##
### Fixed ###
......
......@@ -188,6 +188,7 @@ body[data-hidden-properties="true"] .caosdb-v-property-row:nth-child(odd) {
padding-top: 2rem;
color: #6c757d;
}
/* Bootstrap's default is too prominent for our uses. */
code {
background: none;
......
......@@ -249,6 +249,7 @@ h5 {
.caosdb-v-property-left-col {
min-height: 30px;
display: inline-block;
overflow-x: scroll;
}
.caosdb-v-property-left-col > * {
......@@ -870,6 +871,10 @@ details p {
display: block;
}
.caosdb-select-table > .card-body {
overflow-x: scroll;
}
.caosdb-f-property-value .caosdb-value-list details summary::after {
content: "...";
}
......
......@@ -35,7 +35,7 @@ var fileupload = new function() {
</button>
</div>
<div class="modal-body">
<form action="/Entity/" class="dropzone dz-clickable" >
<form action="${connection.getBasePath()}Entity/" class="dropzone dz-clickable" >
<label>path</label>
<input id="upload-path" type="text" value="/"/>
<div class="dz-message">
......
......@@ -52,7 +52,7 @@
<xsl:template match="@id" mode="backreference-link">
<a class="caosdb-backref-link btn caosdb-id-button" title="Find all entities which reference this one.">
<xsl:attribute name="href">
<xsl:value-of select="concat($entitypath, '?P=0L10&amp;query=FIND+Entity+which+references+', current())"/>
<xsl:value-of select="concat($entitypath, '?P=0L10&amp;query=FIND+Entity+which+references+%22', current(), '%22')"/>
</xsl:attribute>
<span class="bg-dark badge d-none d-sm-inline">
<i class="bi-link"></i> References
......
......@@ -26,9 +26,9 @@ copyright = '2022 - 2024, IndiScale GmbH'
author = 'Daniel Hornung'
# The short X.Y version
version = '0.13.2'
version = '0.13.3'
# The full version, including alpha/beta/rc tags
release = '0.13.2'
release = '0.13.3'
# -- General configuration ---------------------------------------------------
......
......@@ -108,7 +108,7 @@ QUnit.test("back references", function(assert) {
var link = xslt(xml, xsl).firstChild;
assert.equal(link.tagName, "A", "is a link");
assert.equal(link.getAttribute("href"), "/entitypath/?P=0L10&query=FIND+Entity+which+references+265", "query correct.");
assert.equal(link.getAttribute("href"), "/entitypath/?P=0L10&query=FIND+Entity+which+references+%22265%22", "query correct.");
});
QUnit.test("Entities have a caosdb-annotation-section", function(assert) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment