Skip to content

Commit

Permalink
bump version: 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chok8356 committed Jul 4, 2022
1 parent f53b977 commit 25a1148
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
Simple URL decoder

## Features
- Auto decode pasted text
- Auto formatting pasted text (and format all text on click)
- Auto extract params from pasted text
- Comparison of two texts
- Dark/Light theme

- Auto decode text on paste
- Auto formatting text on paste (and format all texts on click)
- Auto extract params from text on paste
- Comparison of two texts
- Dark/Light theme
8 changes: 4 additions & 4 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,27 +98,27 @@ const actions = computed(() => [
],
[
{
title: 'Auto decode pasted text',
title: 'Auto decode text on paste',
icon: DecodeIcon,
active: settings.decode,
action: () => settings.decode = !settings.decode,
},
{
title: 'Auto formatting pasted text',
title: 'Auto formatting text on paste',
icon: FormatIcon,
active: settings.formatting,
action: () => settings.formatting = !settings.formatting,
},
{
title: 'Auto extract params from pasted text',
title: 'Auto extract params from text on paste',
icon: ExtractIcon,
active: settings.extractParam,
action: () => settings.extractParam = !settings.extractParam,
},
],
[
{
title: 'Format all pages',
title: 'Format all texts',
icon: FormatPageIcon,
action: makeFormatting,
},
Expand Down

0 comments on commit 25a1148

Please sign in to comment.