Skip to content
Merged

0.20 #297

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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# StatWrap Changelog

## 0.0.20 - December 3, 2025

### Change Summary

- Fix issue with new project creation error message.

**Full Changelog**: https://github.com/StatTag/StatWrap/compare/0.0.19...0.0.20

## 0.0.19 - November 26, 2025

### Change Summary
Expand Down
2 changes: 1 addition & 1 deletion app/containers/AboutPage/AboutPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default class AboutPage extends Component {
render() {
return (
<div className={styles.container} data-tid="container">
<h1>StatWrap v0.19</h1>
<h1>StatWrap v0.20</h1>
<div className={styles.copyright}>
(c) 2021-2025 Northwestern University Feinberg School of Medicine
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/main.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import AssetUtil from './utils/asset';
import ProjectUtil from './utils/project';
import LogService from './services/log';
import ChecklistService from './services/checklist';
import FileHandler from './services/assets/handlers/file';

// Initialize @electron/remote
initialize();
Expand All @@ -52,7 +53,6 @@ const projectListService = new ProjectListService();
const sourceControlService = new SourceControlService();
const logService = new LogService();
const checklistService = new ChecklistService();
//const searchService = new SearchService();

// The LogWatcherService requires a window from which we can send messages, so we can't
// construct it until the BrowserWindow is created.
Expand Down
4 changes: 2 additions & 2 deletions app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "statwrap",
"productName": "StatWrap",
"version": "0.0.19",
"version": "0.0.20",
"description": "Reproducible research made easy",
"main": "./main.prod.js",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "statwrap",
"productName": "StatWrap",
"version": "0.0.19",
"version": "0.0.20",
"description": "Reproducible research made easy",
"scripts": {
"build": "concurrently \"yarn build-main\" \"yarn build-renderer\" \"yarn build-worker\" \"yarn build-preload\"",
Expand Down