Skip to content

Commit fee3577

Browse files
1.4.6 (#309)
* version bump * Update CHANGELOG for version 1.4.6 and simplify YAML file selection
1 parent 6197839 commit fee3577

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
### **1.4.6** (2025-07-22)
2+
- Fix file import for ROAST groups
3+
14
### **1.4.5** (2025-07-16)
25

3-
- Allow import and export of unfinshed ROAST group data in YAML format
6+
- Allow import and export of unfinished ROAST group data in YAML format
47

58
### **1.4.4** (2025-06-25)
69

lib/tools/roast/roast_group_export_config.dart

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -313,11 +313,7 @@ class ROASTGroupExportConfig {
313313

314314
static Future<String?> _selectYamlFile() async {
315315
try {
316-
final result = await FilePicker.platform.pickFiles(
317-
type: FileType.custom,
318-
allowedExtensions: ['yaml', 'yml'],
319-
allowMultiple: false,
320-
);
316+
final result = await FilePicker.platform.pickFiles();
321317
if (result != null && result.files.isNotEmpty) {
322318
final file = result.files.first;
323319
if (file.path != null) {

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: peercoin
22
description: A new Peercoin wallet.
33

4-
version: 1.4.5+154
4+
version: 1.4.6+155
55
environment:
66
sdk: '>=3.2.0 <4.0.0'
77

0 commit comments

Comments
 (0)