Skip to content
Open
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
2 changes: 1 addition & 1 deletion lib/ui/views/about/about_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class AboutView extends StackedView<AboutViewModel> {
'Sagase',
style: TextStyle(fontSize: 24),
),
const Text('1.5.0'),
const Text('1.5.1'),
const SizedBox(height: 16),
Text.rich(
textAlign: TextAlign.left,
Expand Down
3 changes: 3 additions & 0 deletions lib/ui/views/changelog/changelog_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ class _ChangelogHistory extends StatelessWidget {
return const SizedBox(
width: double.infinity,
child: Markdown(data: '''
# [1.5.1]
- Added undo and redo functionality to text analysis
- Improved error handling during OCR
# [1.5.0]
- Full release of OCR with overhauled UI in the text analysis screen and ability to use OCR directly from the search screen
- Added ability to bulk import all identified vocab from text analysis into your custom lists
Expand Down
20 changes: 10 additions & 10 deletions lib/ui/views/text_analysis/text_analysis_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,22 +59,22 @@ class _Body extends StackedHookView<TextAnalysisViewModel> {
TextAnalysisState.loading => null,
TextAnalysisState.viewing => [
IconButton(
onPressed: () {
controller.clear();
viewModel.textChanged('');
viewModel.editText();
},
icon: const Icon(Icons.note_add_outlined),
onPressed: viewModel.analysisFailed
? null
: viewModel.addToDictionaryList,
icon: const Icon(Icons.playlist_add),
),
IconButton(
onPressed: viewModel.editText,
icon: const Icon(Icons.edit),
),
IconButton(
onPressed: viewModel.analysisFailed
? null
: viewModel.addToDictionaryList,
icon: const Icon(Icons.playlist_add),
onPressed: () {
controller.clear();
viewModel.textChanged('');
viewModel.editText();
},
icon: const Icon(Icons.note_add_outlined),
),
],
},
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A Japanese-English dictionary and learning app.

publish_to: 'none' # Remove this line if you wish to publish to pub.dev

version: 1.5.0+26
version: 1.5.1+27

environment:
sdk: '>=3.0.5 <4.0.0'
Expand Down