mirror of
https://github.com/Iconica-Development/flutter_timetable.git
synced 2025-05-18 19:43:43 +02:00
chore: ready the package for deployment to the pub server
This commit is contained in:
parent
9ce026bb18
commit
238d9855b0
5 changed files with 11 additions and 5 deletions
|
@ -29,4 +29,8 @@
|
|||
|
||||
## [1.4.0] - 13 November 2023
|
||||
|
||||
* Add the option for sorting the blocks by their id.
|
||||
* Add the option for sorting the blocks by their id.
|
||||
|
||||
## [2.0.0] - 11 July 2024
|
||||
|
||||
* Rename main entry point to flutter_timetable
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_timetable/timetable.dart';
|
||||
import 'package:flutter_timetable/flutter_timetable.dart';
|
||||
|
||||
void main() {
|
||||
runApp(const MaterialApp(home: TimetableDemo()));
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
//
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
library timetable;
|
||||
library flutter_timetable;
|
||||
|
||||
export 'src/models/table_theme.dart';
|
||||
export 'src/models/time_block.dart';
|
|
@ -1,8 +1,10 @@
|
|||
name: flutter_timetable
|
||||
description: Flutter package to create a Timetable Widget that display blocks of widgets inside a timetable.
|
||||
version: 1.4.0
|
||||
version: 2.0.0
|
||||
repository: https://github.com/Iconica-Development/timetable
|
||||
|
||||
publish_to: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
|
||||
environment:
|
||||
sdk: ">=3.0.0 <4.0.0"
|
||||
flutter: ">=1.17.0"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:flutter_timetable/src/block_service.dart';
|
||||
import 'package:flutter_timetable/timetable.dart';
|
||||
import 'package:flutter_timetable/flutter_timetable.dart';
|
||||
|
||||
void main() {
|
||||
group('test combineBlocksWithId', () {
|
||||
|
|
Loading…
Reference in a new issue