Skip to content

Commit f49a9ab

Browse files
chore: switch to flutter stable channel
fixes: 25
1 parent 9a01331 commit f49a9ab

File tree

6 files changed

+12
-19
lines changed

6 files changed

+12
-19
lines changed

.github/workflows/create_artifacts.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
uses: actions/checkout@v2.3.4
1818
- name: Install Flutter
1919
uses: subosito/flutter-action@v1.5.3
20-
with:
21-
channel: 'master'
2220
- name: Flutter format
2321
run: |
2422
flutter format . --set-exit-if-changed
@@ -37,8 +35,6 @@ jobs:
3735
uses: actions/checkout@v2.3.4
3836
- name: Install Flutter
3937
uses: subosito/flutter-action@v1.5.3
40-
with:
41-
channel: 'master'
4238
- name: Enable desktop support
4339
run: flutter config --enable-windows-desktop
4440
- name: Build Windows app
@@ -66,8 +62,6 @@ jobs:
6662
uses: actions/checkout@v2.3.4
6763
- name: Install Flutter
6864
uses: subosito/flutter-action@v1.5.3
69-
with:
70-
channel: 'master'
7165
- name: Enable desktop support
7266
run: |
7367
flutter config --enable-linux-desktop

.github/workflows/create_releases.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ jobs:
1313
uses: actions/checkout@v2.3.4
1414
- name: Install Flutter
1515
uses: subosito/flutter-action@v1.5.3
16-
with:
17-
channel: 'master'
1816
- name: Enable desktop support
1917
run: flutter config --enable-windows-desktop
2018
- name: Build Windows app
@@ -43,8 +41,6 @@ jobs:
4341
uses: actions/checkout@v2.3.4
4442
- name: Install Flutter
4543
uses: subosito/flutter-action@v1.5.3
46-
with:
47-
channel: 'master'
4844
- name: Enable desktop support
4945
run: |
5046
flutter config --enable-linux-desktop

INSTALL.MD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
## Building and running the GUI from source (ALL)
1717
- This method only makes sense for people who actually want to debug the app. If you want to skip the hastle of installing frameworks and stuff just go the nightly way, the CI does these below steps for you automatically on every commit.
1818
- To build the GUI from source first install flutter from [here](https://flutter.dev/docs/get-started/install) for your operating system.
19-
- Switch to flutter master channel using `flutter channel master && flutter upgrade`
2019
- Next enable the flutter platform specific flag with `flutter config --enable-<platform>-desktop`, more info on this [here](https://flutter.dev/desktop)
2120
- Then clone [this](https://github.com/CCExtractor/ccextractorfluttergui) repository and run `flutter run -d <platform> --release` to run the app.
2221
- To install the Gui you will need to build it using `flutter build <platform> --release`. The release builds should be located under /build/\<platform>

linux/flutter/generated_plugin_registrant.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// Generated file. Do not edit.
33
//
44

5+
// clang-format off
6+
57
#include "generated_plugin_registrant.h"
68

79
#include <file_selector_linux/file_selector_plugin.h>

linux/flutter/generated_plugin_registrant.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// Generated file. Do not edit.
33
//
44

5+
// clang-format off
6+
57
#ifndef GENERATED_PLUGIN_REGISTRANT_
68
#define GENERATED_PLUGIN_REGISTRANT_
79

pubspec.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ packages:
2828
name: async
2929
url: "https://pub.dartlang.org"
3030
source: hosted
31-
version: "2.8.1"
31+
version: "2.8.2"
3232
bloc:
3333
dependency: "direct main"
3434
description:
@@ -112,7 +112,7 @@ packages:
112112
name: characters
113113
url: "https://pub.dartlang.org"
114114
source: hosted
115-
version: "1.1.0"
115+
version: "1.2.0"
116116
charcode:
117117
dependency: transitive
118118
description:
@@ -430,7 +430,7 @@ packages:
430430
name: matcher
431431
url: "https://pub.dartlang.org"
432432
source: hosted
433-
version: "0.12.10"
433+
version: "0.12.11"
434434
meta:
435435
dependency: transitive
436436
description:
@@ -717,21 +717,21 @@ packages:
717717
name: test
718718
url: "https://pub.dartlang.org"
719719
source: hosted
720-
version: "1.17.10"
720+
version: "1.17.12"
721721
test_api:
722722
dependency: transitive
723723
description:
724724
name: test_api
725725
url: "https://pub.dartlang.org"
726726
source: hosted
727-
version: "0.4.2"
727+
version: "0.4.3"
728728
test_core:
729729
dependency: transitive
730730
description:
731731
name: test_core
732732
url: "https://pub.dartlang.org"
733733
source: hosted
734-
version: "0.4.0"
734+
version: "0.4.2"
735735
timing:
736736
dependency: transitive
737737
description:
@@ -801,7 +801,7 @@ packages:
801801
name: vector_math
802802
url: "https://pub.dartlang.org"
803803
source: hosted
804-
version: "2.1.0"
804+
version: "2.1.1"
805805
vm_service:
806806
dependency: transitive
807807
description:
@@ -868,5 +868,5 @@ packages:
868868
source: hosted
869869
version: "3.1.0"
870870
sdks:
871-
dart: ">=2.12.0 <3.0.0"
871+
dart: ">=2.14.0 <3.0.0"
872872
flutter: ">=2.0.0"

0 commit comments

Comments
 (0)