Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions to publish package updates #218

Merged
merged 7 commits into from
Nov 23, 2024
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
- name: 'Checkout'
uses: actions/checkout@v1
- name: 'Dry-run'
uses: ilteoood/actions-flutter-pub-publisher@master
uses: Omega365/actions-flutter-pub-publisher@master
with:
credential: ${{secrets.CREDENTIAL_JSON}}
flutter_package: true
skip_test: true
dry_run: true
dry_run: true
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
uses: actions/checkout@v1
-
name: "Publish Package"
uses: ilteoood/actions-flutter-pub-publisher@master
uses: Omega365/actions-flutter-pub-publisher@master
with:
credential: "${{secrets.CREDENTIAL_JSON}}"
dry_run: false
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>8.0</string>
<string>11.0</string>
</dict>
</plist>
11 changes: 7 additions & 4 deletions example/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -141,7 +141,7 @@
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0910;
LastUpgradeCheck = 1300;
ORGANIZATIONNAME = "The Chromium Authors";
TargetAttributes = {
97C146ED1CF9000F007C117D = {
Expand Down Expand Up @@ -186,10 +186,12 @@
/* Begin PBXShellScriptBuildPhase section */
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
name = "Thin Binary";
outputPaths = (
Expand All @@ -200,6 +202,7 @@
};
9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
Expand Down Expand Up @@ -292,7 +295,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -339,7 +342,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0910"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
4 changes: 4 additions & 0 deletions example/ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,9 @@
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
</dict>
</plist>
66 changes: 66 additions & 0 deletions example/lib/sample_circular_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,72 @@ class _SampleCircularPageState extends State<SampleCircularPage> {
arcBackgroundColor: Colors.transparent,
arcType: ArcType.HALF,
),
const SizedBox(height: 20),
Padding(
padding: const EdgeInsets.only(bottom: 18.0),
child: Center(
child: Text(
"With different border color",
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 17.0),
),
),
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
CircularPercentIndicator(
radius: 40.0,
progressColor: Colors.yellow,
progressBorderColor: Colors.green,
percent: .2,
lineWidth: 15,
center: Text(
"20.0%",
style:
TextStyle(fontWeight: FontWeight.bold, fontSize: 12.0),
),
backgroundWidth: 15,
fillColor: Colors.transparent,
circularStrokeCap: CircularStrokeCap.round,
arcBackgroundColor: Colors.yellow[200],
arcType: ArcType.FULL,
),
CircularPercentIndicator(
radius: 40.0,
progressColor: Colors.white,
progressBorderColor: Colors.blue,
percent: .9,
lineWidth: 10,
center: Text(
"90.0%",
style:
TextStyle(fontWeight: FontWeight.bold, fontSize: 12.0),
),
backgroundWidth: 15,
fillColor: Colors.transparent,
circularStrokeCap: CircularStrokeCap.round,
arcBackgroundColor: Colors.transparent,
arcType: ArcType.FULL,
),
CircularPercentIndicator(
radius: 40.0,
progressColor: Colors.red,
progressBorderColor: Colors.black,
percent: .4,
lineWidth: 10,
backgroundWidth: 15,
fillColor: Colors.transparent,
circularStrokeCap: CircularStrokeCap.round,
arcBackgroundColor: Colors.grey,
arcType: ArcType.FULL,
center: Text(
"40.0%",
style:
TextStyle(fontWeight: FontWeight.bold, fontSize: 12.0),
),
),
],
),
],
),
),
Expand Down
14 changes: 14 additions & 0 deletions example/lib/sample_linear_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,20 @@ class _SampleLinearPageState extends State<SampleLinearPage> {
),
),
Text('Custom Edges'),
Padding(
padding: EdgeInsets.all(15),
child: LinearPercentIndicator(
lineHeight: 20,
center: Text('90%'),
progressColor: Colors.white,
progressBorderColor: Colors.green,
barRadius: Radius.elliptical(5, 10),
percent: .9,
animation: true,
animationDuration: 1400,
),
),
Text('Custom Border Color'),
],
),
),
Expand Down
35 changes: 24 additions & 11 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,35 +5,47 @@ packages:
dependency: transitive
description:
name: characters
url: "https://pub.dartlang.org"
sha256: e6a326c8af69605aec75ed6c187d06b349707a27fbff8222ca9cc2cff167975c
url: "https://pub.dev"
source: hosted
version: "1.2.0"
version: "1.2.1"
collection:
dependency: transitive
description:
name: collection
url: "https://pub.dartlang.org"
sha256: cfc915e6923fe5ce6e153b0723c753045de46de1b4d63771530504004a45fae0
url: "https://pub.dev"
source: hosted
version: "1.16.0"
version: "1.17.0"
flutter:
dependency: "direct main"
description: flutter
source: sdk
version: "0.0.0"
js:
dependency: transitive
description:
name: js
sha256: "5528c2f391ededb7775ec1daa69e65a2d61276f7552de2b5f7b8d34ee9fd4ab7"
url: "https://pub.dev"
source: hosted
version: "0.6.5"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
url: "https://pub.dartlang.org"
sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724
url: "https://pub.dev"
source: hosted
version: "0.1.4"
version: "0.2.0"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.dartlang.org"
sha256: "6c268b42ed578a53088d834796959e4a1814b5e9e164f147f580a386e5decf42"
url: "https://pub.dev"
source: hosted
version: "1.7.0"
version: "1.8.0"
percent_indicator:
dependency: "direct main"
description:
Expand All @@ -50,9 +62,10 @@ packages:
dependency: transitive
description:
name: vector_math
url: "https://pub.dartlang.org"
sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
url: "https://pub.dev"
source: hosted
version: "2.1.2"
version: "2.1.4"
sdks:
dart: ">=2.14.0 <3.0.0"
dart: ">=2.17.0-0 <3.0.0"
flutter: ">=2.12.0"
Loading