diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 866d1fd..189c4dd 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -134,8 +134,8 @@ jobs: # if: startsWith(github.ref, 'refs/tags/') with: name: ExCode - tag_name: v0.5.1 - prerelease: true + tag_name: v1.0.0 + prerelease: false generate_release_notes: true files: | exec/android/bundle/release/app-release.aab diff --git a/CHANGELOG.md b/CHANGELOG.md index 80a8cf2..93b89e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. For currently known issues, check the [GitHub issues tab](https://github.com/dhzdhd/ExCode/issues?q=is%3Aopen+is%3Aissue+label%3Abug) +## 1.0.0 | 22-01-2023 + +### Fixes / Improvements + +- Fix CORS issues on custom pastebin +- Improve custom pastebin UI +- Some QOL improvements + ## 0.5.1 | 17-01-2023 ### Additions diff --git a/lib/src/home/widgets/app_bar.dart b/lib/src/home/widgets/app_bar.dart index 98291a1..dac2263 100644 --- a/lib/src/home/widgets/app_bar.dart +++ b/lib/src/home/widgets/app_bar.dart @@ -130,14 +130,14 @@ class AppBarWidget extends HookConsumerWidget with PreferredSizeWidget { (l) => context.showErrorSnackBar(l), (r) => context.showSuccessSnackBar( content: - 'Uploaded to hastebin. The url expires after a few days!', + 'Uploaded to pastebin. The url expires after a few days!', action: Some( SnackBarAction( label: 'Copy', onPressed: () => FlutterClipboard.copy(r).then((value) { context.showSuccessSnackBar( - content: 'Copied hastebin url to clipboard', + content: 'Copied pastebin url to clipboard', action: const None(), ); }), diff --git a/pubspec.yaml b/pubspec.yaml index a8d05a1..df04734 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: A code execution editor which supports multiple languages. publish_to: 'none' -version: 0.5.1 +version: 1.0.0 environment: sdk: ">=2.17.0 <3.0.0"