-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: typo in the create_keychain command
- Loading branch information
1 parent
5f36a46
commit 91039b6
Showing
8 changed files
with
92 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# 0.14.1 | ||
|
||
## Fix | ||
|
||
- Typo's in the `create_keychain` command | ||
|
||
# 0.14.0 | ||
|
||
## Feat | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...id/create_keystore/command/create_keystore/model/android_create_keystore_config_data.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import 'package:impaktfull_cli/src/core/command/config/command_config.dart'; | ||
|
||
class AndroidCreateKeyStoreConfigData extends ConfigData { | ||
final List<String> configNames; | ||
|
||
final String? fullName; | ||
final String? organization; | ||
final String? organizationUnit; | ||
final String? city; | ||
final String? state; | ||
final String? country; | ||
|
||
const AndroidCreateKeyStoreConfigData({ | ||
required this.configNames, | ||
required this.fullName, | ||
required this.organization, | ||
required this.organizationUnit, | ||
required this.city, | ||
required this.state, | ||
required this.country, | ||
}); | ||
} |
22 changes: 0 additions & 22 deletions
22
...ons/android/create_keystore/command/remove/model/android_create_keystore_config_data.dart
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters