Skip to content

Commit 745428f

Browse files
authored
Merge pull request #23 from loonix/release/3.0.1
Release/3.0.1
2 parents d415ee6 + 451d2db commit 745428f

6 files changed

Lines changed: 20 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 3.0.1 - 29/03/2023
2+
- fix: selectByTap doesn't work by actual Android devices - thanks to @YasufumiMuranaka
3+
- kotlin_version is now '1.6.0'
4+
- compileSdkVersion requires version 31
5+
- replaced lint plugin and rules
6+
17
## 3.0.0 - 21/03/2023
28
Restructured the code to make it more readable, fixed documentation and flutter 3 requirements.
39
Also separated classes and enums to its own files.

analysis_options.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
# # Pedantic always use the latest version of the lints, with best practices from Google
2-
# include: package:pedantic/analysis_options.yaml
3-
include: package:flutter_lints/flutter.yaml
1+
include: package:lints/recommended.yaml
2+
linter:
3+
rules:
4+
always_declare_return_types
5+
prefer_single_quotes
6+
sort_child_properties_last
7+
unawaited_futures
8+
unsafe_html
9+
use_full_hex_values_for_flutter_colors

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
2626
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2727

2828
android {
29-
compileSdkVersion 30
29+
compileSdkVersion 31
3030

3131
sourceSets {
3232
main.java.srcDirs += 'src/main/kotlin'

example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.3.50'
2+
ext.kotlin_version = '1.6.0'
33
repositories {
44
google()
55
jcenter()

example/lib/main.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ class MyHomePage extends StatefulWidget {
3737

3838
class _MyHomePageState extends State<MyHomePage> {
3939
double _lowerValue = 50;
40-
double _upperValue = 200;
4140

4241
double _lv = 50.0;
4342
double _uv = 250.0;

pubspec.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: another_xlider
22
description: (Another Xlider) A material design slider and range slider, horizontal and vertical, with RTL support and lots of options and customizations for flutter
3-
version: 3.0.0
3+
version: 3.0.1
44
homepage: https://github.com/loonix/another_xlider
55

66
environment:
@@ -13,6 +13,7 @@ dependencies:
1313
dev_dependencies:
1414
flutter_test:
1515
sdk: flutter
16-
flutter_lints: ^2.0.1
16+
lints:
17+
1718

1819
flutter:

0 commit comments

Comments
 (0)