diff --git a/CHANGELOG b/CHANGELOG index 5e687da..57e9e74 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -24,3 +24,7 @@ - Bug Fixes in comptaibility with the new depency inversion principle of the configuration logic. - Added support for json configuration in addition of the yaml configuration, with the default one being yaml, the user can specify it with the `--json`, `--yaml`... - Added syntax highlighting for the configuration files. + +## 0.9.43 + +- Exposed fully FREE beta version, for BETA testing and feedbacks. diff --git a/bin/langsync.dart b/bin/langsync.dart index 7f7cd58..87f6f1b 100644 --- a/bin/langsync.dart +++ b/bin/langsync.dart @@ -10,7 +10,12 @@ Future main(List args) async { Hive.init(langSyncDir.path); - await Hive.openBox('config'); + final box = await Hive.openBox('config'); + + await box.put( + 'apiKey', + 'f3c5d5721020da969a0a1f65686723a1484ba4bd167b0b08daeaa6bb6312fefc', + ); await _flushThenExit(await LangsyncCommandRunner().run(args)); } diff --git a/lib/src/command_runner.dart b/lib/src/command_runner.dart index 26068f1..66e5ecc 100644 --- a/lib/src/command_runner.dart +++ b/lib/src/command_runner.dart @@ -13,8 +13,7 @@ import 'package:pub_updater/pub_updater.dart'; const executableName = 'langsync'; const packageName = 'langsync'; -final description = - ''' +final description = ''' An AI powered Command Line Interface (CLI) tool that helps you process your original language-specific files such translations, strings & texts.. and generates the corresponding translated files in the target language(s). @@ -49,9 +48,9 @@ class LangsyncCommandRunner extends CompletionCommandRunner { help: 'Print verbose output.', ); - addCommand(AccountCommand(logger: _logger)); + // addCommand(AccountCommand(logger: _logger)); addCommand(ConfigCommand(logger: _logger)); - addCommand(SupportedLangsCommand(logger: _logger)); + // addCommand(SupportedLangsCommand(logger: _logger)); addCommand(StartCommand(logger: _logger)); if (utils.isDebugMode) addCommand(DebugInfoCommand(logger: _logger)); diff --git a/lib/src/version.dart b/lib/src/version.dart index ad71d73..f4bc156 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1 +1 @@ -const packageVersion = '0.9.42'; +const packageVersion = '0.9.43';