Merge remote-tracking branch 'origin/develop' into develop-groupedParticipants
# Conflicts: # pubspec.yaml
This commit is contained in:
@@ -28,13 +28,13 @@ android {
|
||||
ndkVersion "27.0.12077973"
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
coreLibraryDesugaringEnabled true
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
targetCompatibility JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
kotlinOptions {
|
||||
jvmTarget = '1.8'
|
||||
jvmTarget = '17'
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
@@ -65,5 +65,5 @@ flutter {
|
||||
|
||||
dependencies {
|
||||
implementation 'com.android.support:multidex:2.0.1'
|
||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.3'
|
||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.4'
|
||||
}
|
||||
|
@@ -20,7 +20,7 @@ pluginManagement {
|
||||
plugins {
|
||||
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
||||
id "com.android.application" version '8.7.3' apply false
|
||||
id "org.jetbrains.kotlin.android" version "1.8.10" apply false
|
||||
id "org.jetbrains.kotlin.android" version "2.1.10" apply false
|
||||
}
|
||||
|
||||
include ":app"
|
||||
|
@@ -31,7 +31,7 @@ class AppModule {
|
||||
var available = {
|
||||
Modules.timetable: AppModule(
|
||||
Modules.timetable,
|
||||
name: 'Vertretung',
|
||||
name: 'Stundenplan',
|
||||
icon: () => Icon(Icons.calendar_month),
|
||||
breakerArea: BreakerArea.timetable,
|
||||
create: Timetable.new,
|
||||
|
@@ -1,11 +1,11 @@
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:better_open_file/better_open_file.dart';
|
||||
import 'package:filesize/filesize.dart';
|
||||
import 'package:flowder/flowder.dart';
|
||||
import 'package:flutter/foundation.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:jiffy/jiffy.dart';
|
||||
import 'package:open_filex/open_filex.dart';
|
||||
import '../../../widget/infoDialog.dart';
|
||||
import 'package:nextcloud/nextcloud.dart';
|
||||
import 'package:path_provider/path_provider.dart';
|
||||
|
@@ -1,4 +1,3 @@
|
||||
import 'package:better_open_file/better_open_file.dart';
|
||||
import 'package:bubble/bubble.dart';
|
||||
import 'package:emoji_picker_flutter/emoji_picker_flutter.dart' as emojis;
|
||||
import 'package:flowder/flowder.dart';
|
||||
@@ -6,6 +5,7 @@ import 'package:flutter/foundation.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:jiffy/jiffy.dart';
|
||||
import 'package:open_filex/open_filex.dart';
|
||||
import '../../../../extensions/text.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
|
||||
|
@@ -32,7 +32,7 @@ class DefaultSettings {
|
||||
hiddenModules: [],
|
||||
),
|
||||
timetableSettings: TimetableSettings(
|
||||
connectDoubleLessons: false,
|
||||
connectDoubleLessons: true,
|
||||
timetableNameMode: TimetableNameMode.name
|
||||
),
|
||||
talkSettings: TalkSettings(
|
||||
|
@@ -246,7 +246,7 @@ class _SettingsState extends State<Settings> {
|
||||
ListTile(
|
||||
leading: const CenteredLeading(Icon(Icons.date_range_outlined)),
|
||||
title: const Text('Infos zu Web-/ Untis'),
|
||||
subtitle: const Text('Für den Vertretungsplan'),
|
||||
subtitle: const Text('Für den Stundenplan'),
|
||||
trailing: const Icon(Icons.arrow_right),
|
||||
onTap: () => PrivacyInfo(providerText: 'Untis', imprintUrl: 'https://www.untis.at/impressum', privacyUrl: 'https://www.untis.at/datenschutz-wu-apps').showPopup(context)
|
||||
),
|
||||
|
@@ -1,8 +1,8 @@
|
||||
import 'dart:io';
|
||||
import 'dart:math';
|
||||
|
||||
import 'package:better_open_file/better_open_file.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:open_filex/open_filex.dart';
|
||||
import 'package:photo_view/photo_view.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import 'package:share_plus/share_plus.dart';
|
||||
@@ -93,7 +93,7 @@ class _FileViewerState extends State<FileViewer> {
|
||||
);
|
||||
|
||||
default:
|
||||
OpenFile.open(widget.path).then((result) {
|
||||
OpenFilex.open(widget.path).then((result) {
|
||||
Navigator.of(context).pop();
|
||||
if(result.type != ResultType.done) {
|
||||
showDialog(context: context, builder: (context) => AlertDialog(
|
||||
|
24
pubspec.yaml
24
pubspec.yaml
@@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||
# In Windows, build-name is used as the major, minor, and patch parts
|
||||
# of the product and file versions while build-number is used as the build suffix.
|
||||
version: 0.1.3+41
|
||||
version: 0.1.4+42
|
||||
|
||||
environment:
|
||||
sdk: '>3.0.0'
|
||||
@@ -42,7 +42,6 @@ dependencies:
|
||||
animated_digit: ^3.2.3
|
||||
async: ^2.11.0
|
||||
badges: ^3.1.2
|
||||
better_open_file: ^3.6.5
|
||||
bloc: ^9.0.0
|
||||
bottom_sheet: ^4.0.4
|
||||
bubble: ^1.2.1
|
||||
@@ -55,11 +54,11 @@ dependencies:
|
||||
easy_debounce: ^2.0.3
|
||||
emoji_picker_flutter: ^4.3.0
|
||||
fast_rsa: ^3.7.1
|
||||
file_picker: ^8.1.7
|
||||
file_picker: ^10.3.2
|
||||
filesize: ^2.0.1
|
||||
firebase_core: ^3.10.1
|
||||
firebase_in_app_messaging: ^0.8.1+1
|
||||
firebase_messaging: ^15.2.1
|
||||
firebase_core: ^4.1.0
|
||||
firebase_in_app_messaging: ^0.9.0+1
|
||||
firebase_messaging: ^16.0.1
|
||||
flowder:
|
||||
git:
|
||||
url: https://github.com/Harsh223/flowder.git
|
||||
@@ -67,11 +66,11 @@ dependencies:
|
||||
flutter_bloc: ^9.0.0
|
||||
flutter_launcher_icons: ^0.14.3
|
||||
flutter_linkify: ^6.0.0
|
||||
flutter_local_notifications: ^18.0.1
|
||||
flutter_local_notifications: ^19.4.1
|
||||
flutter_login: ^5.0.0
|
||||
flutter_native_splash: ^2.4.4
|
||||
flutter_split_view: ^0.1.2
|
||||
freezed_annotation: ^2.4.4
|
||||
freezed_annotation: ^3.1.0
|
||||
http: ^1.3.0
|
||||
hydrated_bloc: ^10.0.0
|
||||
image_picker: ^1.1.2
|
||||
@@ -87,20 +86,21 @@ dependencies:
|
||||
url: https://github.com/provokateurin/nextcloud-neon
|
||||
package_info_plus: ^8.1.3
|
||||
path_provider: ^2.1.5
|
||||
persistent_bottom_nav_bar_v2: ^5.3.1
|
||||
persistent_bottom_nav_bar_v2: ^6.1.0
|
||||
photo_view: ^0.15.0
|
||||
pretty_json: ^2.0.0
|
||||
provider: ^6.1.2
|
||||
qr_flutter: ^4.1.0
|
||||
rrule: ^0.2.17
|
||||
rrule_generator: ^0.9.0
|
||||
share_plus: ^10.1.4
|
||||
share_plus: ^11.1.0
|
||||
shared_preferences: ^2.3.5
|
||||
syncfusion_flutter_calendar: ^28.1.41
|
||||
syncfusion_flutter_pdfviewer: ^28.1.41
|
||||
syncfusion_flutter_calendar: ^31.1.17
|
||||
syncfusion_flutter_pdfviewer: ^31.1.17
|
||||
time_range_picker: ^2.3.0
|
||||
url_launcher: ^6.3.1
|
||||
uuid: ^4.5.1
|
||||
open_filex: ^4.7.0
|
||||
collection: ^1.19.0
|
||||
|
||||
dev_dependencies:
|
||||
|
Reference in New Issue
Block a user