File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -134,8 +134,8 @@ jobs:
134134 # if: startsWith(github.ref, 'refs/tags/')
135135 with :
136136 name : ExCode
137- tag_name : v0.5.1
138- prerelease : true
137+ tag_name : v1.0.0
138+ prerelease : false
139139 generate_release_notes : true
140140 files : |
141141 exec/android/bundle/release/app-release.aab
Original file line number Diff line number Diff line change 33All notable changes to this project will be documented in this file.
44For currently known issues, check the [ GitHub issues tab] ( https://github.com/dhzdhd/ExCode/issues?q=is%3Aopen+is%3Aissue+label%3Abug )
55
6+ ## 1.0.0 | 22-01-2023
7+
8+ ### Fixes / Improvements
9+
10+ - Fix CORS issues on custom pastebin
11+ - Improve custom pastebin UI
12+ - Some QOL improvements
13+
614## 0.5.1 | 17-01-2023
715
816### Additions
Original file line number Diff line number Diff line change @@ -130,14 +130,14 @@ class AppBarWidget extends HookConsumerWidget with PreferredSizeWidget {
130130 (l) => context.showErrorSnackBar (l),
131131 (r) => context.showSuccessSnackBar (
132132 content:
133- 'Uploaded to hastebin . The url expires after a few days!' ,
133+ 'Uploaded to pastebin . The url expires after a few days!' ,
134134 action: Some (
135135 SnackBarAction (
136136 label: 'Copy' ,
137137 onPressed: () =>
138138 FlutterClipboard .copy (r).then ((value) {
139139 context.showSuccessSnackBar (
140- content: 'Copied hastebin url to clipboard' ,
140+ content: 'Copied pastebin url to clipboard' ,
141141 action: const None (),
142142 );
143143 }),
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: A code execution editor which supports multiple languages.
33
44publish_to : ' none'
55
6- version : 0.5.1
6+ version : 1.0.0
77
88environment :
99 sdk : " >=2.17.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments