File tree Expand file tree Collapse file tree 8 files changed +17
-17
lines changed Expand file tree Collapse file tree 8 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ Dieser Schnellstart wird wenig um den heißen Brei herumreden und direkt mit dem
13
13
Bevor es losgeht, müssen wir ein paar Pakete zur ` pubspec.yaml ` hinzufügen. Damit es schneller geht lassen wir pub das für uns erledigen.
14
14
15
15
``` bash
16
- dart pub add isar:^3.1.4 isar_flutter_libs:^3.1.4 --hosted-url=https://isar-community.dev
17
- dart pub add dev:isar_generator:^3.1.4 --hosted-url=https://isar-community.dev
16
+ dart pub add isar:^3.1.5 isar_flutter_libs:^3.1.5 --hosted-url=https://pub. isar-community.dev
17
+ dart pub add dev:isar_generator:^3.1.5 --hosted-url=https://pub. isar-community.dev
18
18
```
19
19
20
20
## 2. Klassen annotieren
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ We're going to be short on words and quick on code in this quickstart.
13
13
Before the fun begins, we need to add a few packages to the ` pubspec.yaml ` . We can use pub to do the heavy lifting for us.
14
14
15
15
``` bash
16
- dart pub add isar:^3.1.4 isar_flutter_libs:^3.1.4 --hosted-url=https://isar-community.dev
17
- dart pub add dev:isar_generator:^3.1.4 --hosted-url=https://isar-community.dev
16
+ dart pub add isar:^3.1.5 isar_flutter_libs:^3.1.5 --hosted-url=https://pub. isar-community.dev
17
+ dart pub add dev:isar_generator:^3.1.5 --hosted-url=https://pub. isar-community.dev
18
18
```
19
19
20
20
## 2. Annotate classes
Original file line number Diff line number Diff line change @@ -70,15 +70,15 @@ isar_version: &isar_version 3.1.3 # define the version to be used
70
70
dependencies :
71
71
isar :
72
72
version : *isar_version
73
- hosted : https://isar-community.dev/
73
+ hosted : https://pub. isar-community.dev/
74
74
isar_flutter_libs : # contains Isar Core
75
75
version : *isar_version
76
- hosted : https://isar-community.dev/
76
+ hosted : https://pub. isar-community.dev/
77
77
78
78
dev_dependencies :
79
79
isar_generator :
80
80
version : *isar_version
81
- hosted : https://isar-community.dev/
81
+ hosted : https://pub. isar-community.dev/
82
82
build_runner : any
83
83
84
84
```
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ repository: https://github.com/isar-community/isar/tree/main/packages/isar
5
5
homepage : https://github.com/isar-community/isar
6
6
issue_tracker : https://github.com/isar-community/isar/issues
7
7
documentation : https://isar.dev
8
- publish_to : https://isar-community.dev/
8
+ publish_to : https://pub. isar-community.dev/
9
9
funding :
10
10
- https://github.com/sponsors/leisim/
11
11
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: Isar Core binaries for the Isar Database. Needs to be included for
3
3
version : 3.1.5
4
4
repository : https://github.com/isar-community/isar
5
5
homepage : https://isar.dev
6
- publish_to : https://isar-community.dev/
6
+ publish_to : https://pub. isar-community.dev/
7
7
8
8
environment :
9
9
sdk : " >=2.17.0 <3.0.0"
@@ -14,7 +14,7 @@ dependencies:
14
14
sdk : flutter
15
15
isar :
16
16
version : 3.1.5
17
- hosted : https://isar-community.dev
17
+ hosted : https://pub. isar-community.dev
18
18
19
19
flutter :
20
20
plugin :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: Code generator for the Isar Database. Finds classes annotated with
3
3
version : 3.1.5
4
4
repository : https://github.com/isar-community/isar
5
5
homepage : https://isar.dev
6
- publish_to : https://isar-community.dev/
6
+ publish_to : https://pub. isar-community.dev/
7
7
8
8
environment :
9
9
sdk : " >=2.17.0 <3.0.0"
@@ -16,7 +16,7 @@ dependencies:
16
16
glob : ^2.0.2
17
17
isar :
18
18
version : 3.1.5
19
- hosted : https://isar-community.dev
19
+ hosted : https://pub. isar-community.dev
20
20
path : ^1.8.1
21
21
source_gen : ^1.2.2
22
22
xxh3 : ^1.0.1
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ dependencies:
15
15
intl : ^0.19.0
16
16
isar :
17
17
version : any
18
- hosted : https://isar-community.dev
18
+ hosted : https://pub. isar-community.dev
19
19
isar_flutter_libs :
20
20
version : any
21
- hosted : https://isar-community.dev
21
+ hosted : https://pub. isar-community.dev
22
22
json_annotation : ^4.7.0
23
23
meta : ^1.8.0
24
24
path : ^1.8.2
@@ -32,7 +32,7 @@ dev_dependencies:
32
32
sdk : flutter
33
33
isar_generator :
34
34
version : any
35
- hosted : https://isar-community.dev
35
+ hosted : https://pub. isar-community.dev
36
36
json_serializable : ^6.3.1
37
37
very_good_analysis : ^3.0.1
38
38
Original file line number Diff line number Diff line change 2
2
3
3
# Publishes the packages for a release to isar-community.dev using the artifacts from github
4
4
# Prerequisite: unpub authenticated and token added:
5
- # `unpub_auth login && unpub_auth get | dart pub token add https://isar-community.dev/`
5
+ # `unpub_auth login && unpub_auth get | dart pub token add https://pub. isar-community.dev/`
6
6
#
7
7
8
8
set -o errexit
9
9
pushd packages/isar
10
10
dart pub get
11
11
popd
12
12
sh tool/download_binaries.sh
13
- # dart pub token add --env-var=PUB_JSON https://isar-community.dev/
13
+ # dart pub token add --env-var=PUB_JSON https://pub. isar-community.dev/
14
14
pushd packages/isar
15
15
dart pub publish --force
16
16
popd
You can’t perform that action at this time.
0 commit comments