Skip to content

Commit c5aff98

Browse files
author
larspalo
committed
Fixed allowing spaces inside ODF file name. Fixed removing trailing whitespace when saving. Updated tooltips, copyright year etc. Prevented writing semicolon (;) in textctrls to avoid unintentionally creating comments in the ODF.
1 parent 1353c46 commit c5aff98

File tree

165 files changed

+595
-186
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+595
-186
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Option to create new panel from selection on existing panel display. (TODO)
1313

14+
## [0.15.1] - 2025-03-10
15+
1416
### Fixed
1517

1618
- Reading of FourCC values in WAV/WavPack files so that sample file details are correctly shown on all platforms.
1719
- Reading of all blocks and sub-blocks in a WavPack file and a few related bugs.
20+
- Unintentional entries of comments in textcontrols by prohibiting usage of semicolon (;).
21+
- Removed restriction that prevented using spaces in the ODF file name.
22+
- Trailing whitespaces in textctrls that should be removed when writing an ODF.
1823

1924
## [0.15.0] - 2024-07-27
2025

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# GoOdf cmake build file
2-
# Copyright (C) 2024 Lars Palo and contributors (see AUTHORS)
2+
# Copyright (C) 2025 Lars Palo and contributors (see AUTHORS)
33
#
44
# This program is free software: you can redistribute it and/or modify
55
# it under the terms of the GNU General Public License as published by

src/Attack.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Attack.cpp is part of GoOdf.
3-
* Copyright (C) 2024 Lars Palo and contributors (see AUTHORS)
3+
* Copyright (C) 2025 Lars Palo and contributors (see AUTHORS)
44
*
55
* GoOdf is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

src/Attack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Attack.h is part of GoOdf.
3-
* Copyright (C) 2024 Lars Palo and contributors (see AUTHORS)
3+
* Copyright (C) 2025 Lars Palo and contributors (see AUTHORS)
44
*
55
* GoOdf is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

src/AttackDialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* AttackDialog.cpp is part of GoOdf.
3-
* Copyright (C) 2024 Lars Palo and contributors (see AUTHORS)
3+
* Copyright (C) 2025 Lars Palo and contributors (see AUTHORS)
44
*
55
* GoOdf is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

src/AttackDialog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* AttackDialog.h is part of GoOdf.
3-
* Copyright (C) 2024 Lars Palo and contributors (see AUTHORS)
3+
* Copyright (C) 2025 Lars Palo and contributors (see AUTHORS)
44
*
55
* GoOdf is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

src/Button.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Button.cpp is part of GoOdf.
3-
* Copyright (C) 2024 Lars Palo and contributors (see AUTHORS)
3+
* Copyright (C) 2025 Lars Palo and contributors (see AUTHORS)
44
*
55
* GoOdf is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

src/Button.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Button.h is part of GoOdf.
3-
* Copyright (C) 2024 Lars Palo and contributors (see AUTHORS)
3+
* Copyright (C) 2025 Lars Palo and contributors (see AUTHORS)
44
*
55
* GoOdf is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

src/CmbDialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* CmbDialog.cpp is part of GoOdf.
3-
* Copyright (C) 2024 Lars Palo and contributors (see AUTHORS)
3+
* Copyright (C) 2025 Lars Palo and contributors (see AUTHORS)
44
*
55
* GoOdf is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

src/CmbDialog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* CmbDialog.h is part of GoOdf.
3-
* Copyright (C) 2024 Lars Palo and contributors (see AUTHORS)
3+
* Copyright (C) 2025 Lars Palo and contributors (see AUTHORS)
44
*
55
* GoOdf is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)