Skip to content

Commit 538bda5

Browse files
authored
v0.8.5
1 parent cda3a83 commit 538bda5

30 files changed

Lines changed: 541 additions & 88 deletions

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# PyBehaviorLog 0.8.4
1+
# PyBehaviorLog 0.8.5
22

33
PyBehaviorLog is an ASGI-first behavioral observation platform built with Django 6.0.3. It is designed for research teams who need video-assisted coding, live observations, structured ethograms, review workflows, and exportable analytics without being locked into a desktop-only workflow.
44

5-
## What is in this 0.8.4 archive
5+
## What is in this 0.8.5 archive
66

77
This version extends the earlier CowLog/BORIS-inspired foundations with:
88

@@ -12,6 +12,9 @@ This version extends the earlier CowLog/BORIS-inspired foundations with:
1212
- synchronized videos and live observation sessions
1313
- annotations, review states, and audit trail entries
1414
- JSON, CSV, TSV, XLSX, BORIS-compatible project/session exports, and reproducibility bundles
15+
- broader BORIS project import support for list- and mapping-based payload shapes
16+
- an inline event editor in the session player with timeline-linked selection and quick nudging tools
17+
- a one-click helper to close unpaired state events during review
1518
- project-level analytics, transition summaries, and subject-based statistics
1619
- multilingual interface support limited to English, Arabic, Chinese, Spanish, French, and Russian
1720
- ASGI deployment with Granian
-2 Bytes
Binary file not shown.
-2 Bytes
Binary file not shown.
7.17 KB
Binary file not shown.
264 Bytes
Binary file not shown.

docs/fao_translation_review.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# FAO language review package for PyBehaviorLog 0.8.4
1+
# FAO language review package for PyBehaviorLog 0.8.5
22

33
This document is a preparation pack for native review of the six supported FAO languages:
44
English, Arabic, Chinese (Simplified), Spanish, French, and Russian.
55

66
## Scope
77

88
The application already contains translation catalogs for the core user interface.
9-
Version 0.8.4 adds new user-facing strings in the following areas:
9+
Version 0.8.5 adds new user-facing strings in the following areas:
1010

1111
- BORIS project import
1212
- interactive timeline selection

static/tracker/app.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -521,3 +521,10 @@ helptext, .helptext { display: block; margin-top: .3rem; color: var(--ink-soft);
521521
.audit-toolbar {
522522
margin-top: .2rem;
523523
}
524+
525+
526+
.event-editor { border-style: solid; }
527+
.is-selected-row td { background: color-mix(in srgb, var(--signal-soft) 72%, white 28%); }
528+
.track-segment { cursor: pointer; border: 0; }
529+
.open-segment { box-shadow: inset 0 0 0 2px rgba(255,255,255,.75); }
530+
.event-editor .timeline-toolbar { margin-bottom: .65rem; }

templates/base.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<head>
55
<meta charset="utf-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<title>{% block title %}PyBehaviorLog 0.8.4{% endblock %}</title>
7+
<title>{% block title %}PyBehaviorLog 0.8.5{% endblock %}</title>
88
<link rel="stylesheet" href="{% static 'tracker/app.css' %}">
99
</head>
1010
<body>
@@ -14,7 +14,7 @@
1414
<a class="brand-mark" href="{% url 'tracker:home' %}">PB</a>
1515
<div>
1616
<p class="eyebrow">{% trans 'Behavioral coding studio' %}</p>
17-
<h1 class="brand-title"><a href="{% url 'tracker:home' %}">PyBehaviorLog 0.8.4</a></h1>
17+
<h1 class="brand-title"><a href="{% url 'tracker:home' %}">PyBehaviorLog 0.8.5</a></h1>
1818
</div>
1919
</div>
2020
<div class="utility-row">

templates/tracker/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<header class="page-header">
1010
<div>
1111
<h1>{% trans 'My PyBehaviorLog projects' %}</h1>
12-
<p>{% trans 'Version 0.8.4 adds role-based collaboration, keyboard profiles, agreement analytics, reproducibility bundles, and expanded scientific translations.' %}</p>
12+
<p>{% trans 'Version 0.8.5 strengthens BORIS import compatibility, adds a persistent event editor in the player, and helps reviewers fix unpaired state events faster.' %}</p>
1313
</div>
1414
<a href="{% url 'tracker:project_create' %}" role="button">{% trans 'New project' %}</a>
1515
</header>

templates/tracker/session_player.html

Lines changed: 177 additions & 21 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)