This is an automated email from the ASF dual-hosted git repository.

ifropc pushed a change to branch NLPCRAFT-91
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git.


 discard 5b84a29  NLPCRAFT-91: Support basic /fill command (different shapes 
and static position)
 discard 9d2ac81  Add copyright
 discard 6a20eb1  NLPCRAFT-91: Replace usage of macros with stand-alone element
 discard 240bfa6  Fix regex
 discard f019be3  NLPCRAFT-91: fill command draft
 discard 523cbb2  Update README
 discard 91fb357  NLPCRAFT-91: "Give" supports player target and quantity
 discard 260eeb6  NLPCRAFT-91: Give intent support
 discard b83fbf5  Version bump
 discard fbf2b93  NLPCRAFT-91: Add /time command support
 discard 740261a  NLPCRAFT-91: Settings support for mod and cleanup data files
 discard 5eaeafa  NLPCRAFT-91: Improve credentials handling
 discard e410bb4  NLPCRAFT-91: Add README
 discard 2ef6c00  NLPCRAFT-91: Add sign in to mod
 discard c0e96f9  NLPCRAFT-91: Fix build after restructure
 discard 44c84fd  NLPCRAFT-91: Add mod for Minecraft as example
 discard daded2c  NLPCRAFT-91: Fix minecraft model
 discard fbe6a5f  NLPCRAFT-91: Organize model files
 discard 5cf7888  NLPCRAFT-91: Initial model for weather command
 discard dd63d2e  NLPCRAFT-91: Base stubs for Minecraft example
 discard f2642e9  NLPCRAFT-91: Initial files
     add a7ea33e  Abstract elements support added.
     add a163982  NCElements - additional configuration properties added.
     new 097d0e3  NLPCRAFT-91: Initial files
     new 6809a2d  NLPCRAFT-91: Base stubs for Minecraft example
     new 617b4af  NLPCRAFT-91: Initial model for weather command
     new 70a5906  NLPCRAFT-91: Organize model files
     new 6dca1b3  NLPCRAFT-91: Fix minecraft model
     new 9fe399c  NLPCRAFT-91: Add mod for Minecraft as example
     new e4a2b61  NLPCRAFT-91: Fix build after restructure
     new e4da803  NLPCRAFT-91: Add sign in to mod
     new d1c0f70  NLPCRAFT-91: Add README
     new 7434ebd  NLPCRAFT-91: Improve credentials handling
     new 32f7bf8  NLPCRAFT-91: Settings support for mod and cleanup data files
     new 494865e  NLPCRAFT-91: Add /time command support
     new cf2ac80  Version bump
     new 2d91089  NLPCRAFT-91: Give intent support
     new 1ef15f2  NLPCRAFT-91: "Give" supports player target and quantity
     new da99d72  Update README
     new bc997cf  NLPCRAFT-91: fill command draft
     new 4fe3ee1  Fix regex
     new 01ad4ef  NLPCRAFT-91: Replace usage of macros with stand-alone element
     new e60696b  Add copyright
     new 155cfef  NLPCRAFT-91: Support basic /fill command (different shapes 
and static position)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5b84a29)
            \
             N -- N -- N   refs/heads/NLPCRAFT-91 (155cfef)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 21 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../nlpcraft/common/ascii/NCAsciiTable.scala       |   1 -
 .../apache/nlpcraft/common/nlp/NCNlpSentence.scala | 204 +++++++++-----
 .../org/apache/nlpcraft/common/util/NCUtils.scala  |  12 +-
 .../examples/misc/geo/keycdn/GeoManager.java       |   6 +-
 .../scala/org/apache/nlpcraft/model/NCElement.java |  66 ++++-
 .../apache/nlpcraft/model/NCModelFileAdapter.java  |  54 +++-
 .../org/apache/nlpcraft/model/NCModelView.java     | 199 +++++++++++++-
 .../scala/org/apache/nlpcraft/model/NCToken.java   |  20 +-
 .../scala/org/apache/nlpcraft/model/NCVariant.java |   2 +-
 .../model/factories/basic/NCBasicModelFactory.java |   3 +-
 .../apache/nlpcraft/model/impl/NCTokenImpl.scala   |  19 +-
 .../apache/nlpcraft/model/impl/NCTokenLogger.scala |   3 -
 .../nlpcraft/model/impl/json/NCElementJson.java    |  19 +-
 .../nlpcraft/model/impl/json/NCModelJson.java      |  14 +
 .../nlpcraft/model/tools/cmdline/NCCli.scala       |   7 +-
 .../tools/sqlgen/impl/NCSqlSchemaBuilderImpl.scala |   2 -
 .../nlpcraft/probe/mgrs/NCProbeVariants.scala      | 206 +++++++++++++-
 .../probe/mgrs/deploy/NCDeployManager.scala        | 128 ++++++---
 .../probe/mgrs/nlp/NCProbeEnrichmentManager.scala  |   4 +-
 .../mgrs/nlp/enrichers/limit/NCLimitEnricher.scala | 159 ++++++-----
 .../mgrs/nlp/enrichers/model/NCModelEnricher.scala |  39 ++-
 .../enrichers/relation/NCRelationEnricher.scala    |   6 +-
 .../mgrs/nlp/enrichers/sort/NCSortEnricher.scala   |  10 +-
 .../nlpcraft/server/query/NCQueryManager.scala     |   4 +-
 .../nlpcraft/server/rest/NCBasicRestApi.scala      |   5 +-
 .../scala/org/apache/nlpcraft/NCTestContext.scala  |  43 ++-
 .../scala/org/apache/nlpcraft/NCTestElement.scala} |  21 +-
 .../nlpcraft/common/ascii/NCAsciiTableSpec.scala   |   2 +-
 .../nlpcraft/common/crypto/NCCipherSpec.scala      |   4 +-
 .../nlpcraft/examples/time/NCTimeModelSpec.scala   |  24 +-
 .../apache/nlpcraft/model/NCIntentDslSpec.scala    |  26 +-
 .../apache/nlpcraft/model/NCIntentDslSpec2.scala   |  37 +--
 .../nlpcraft/model/NCIntentPrioritiesSpec.scala    |   6 +-
 .../apache/nlpcraft/model/NCIntentSampleSpec.scala |  12 +-
 .../abstract/NCAbstractTokensEnricherSpec.scala    |  57 ++++
 .../abstract/NCAbstractTokensIntentsSpec.scala     |  53 ++++
 .../model/abstract/NCAbstractTokensModel.scala     |  41 +++
 .../abstract/NCAbstractTokensVariantsSpec.scala    | 168 +++++++++++
 .../model/conversation/NCConversationSpec.scala    |  14 +-
 .../conversation/NCConversationTimeoutSpec.scala   |  19 +-
 .../nlpcraft/model/dialog/NCDialogSpec.scala       |   5 +-
 .../nlpcraft/model/intent/dsl/NCDslSpec.scala      |   2 +-
 .../model/properties/NCTokensPropertiesSpec.scala  | 306 +++++++++++++++++++++
 .../properties/NCTokensRestrictionsSpec.scala      |  75 +++++
 .../nlpcraft/models/stm/NCStmTestModel.scala       |  13 +-
 .../nlpcraft/models/stm/NCStmTestModelSpec.scala   |  23 +-
 .../mgrs/nlp/enrichers/NCDefaultTestModel.scala    |  39 +--
 .../mgrs/nlp/enrichers/NCEnricherBaseSpec.scala    |  17 +-
 .../mgrs/nlp/enrichers/NCEnrichersTestBeans.scala  |   7 +-
 .../nlp/enrichers/NCEnrichersTestContext.scala}    |  15 +-
 .../nlp/enrichers/limit/NCEnricherLimitSpec.scala  |   2 +-
 .../model/NCEnricherNestedModelSpec.scala          |  27 +-
 .../nlp/enrichers/sort/NCEnricherSortSpec.scala    |   5 -
 .../enrichers/date/tools/NCDateGeneratorSpec.scala |   5 +-
 .../nlpcraft/server/rest/NCRestModelSpec.scala     |   4 +-
 .../apache/nlpcraft/server/rest/NCRestSpec.scala   |   7 +-
 56 files changed, 1811 insertions(+), 460 deletions(-)
 copy nlpcraft/src/{main/scala/org/apache/nlpcraft/model/package.scala => 
test/scala/org/apache/nlpcraft/NCTestElement.scala} (62%)
 create mode 100644 
nlpcraft/src/test/scala/org/apache/nlpcraft/model/abstract/NCAbstractTokensEnricherSpec.scala
 create mode 100644 
nlpcraft/src/test/scala/org/apache/nlpcraft/model/abstract/NCAbstractTokensIntentsSpec.scala
 create mode 100644 
nlpcraft/src/test/scala/org/apache/nlpcraft/model/abstract/NCAbstractTokensModel.scala
 create mode 100644 
nlpcraft/src/test/scala/org/apache/nlpcraft/model/abstract/NCAbstractTokensVariantsSpec.scala
 create mode 100644 
nlpcraft/src/test/scala/org/apache/nlpcraft/model/properties/NCTokensPropertiesSpec.scala
 create mode 100644 
nlpcraft/src/test/scala/org/apache/nlpcraft/model/properties/NCTokensRestrictionsSpec.scala
 copy nlpcraft/src/{main/scala/org/apache/nlpcraft/model/package.scala => 
test/scala/org/apache/nlpcraft/probe/mgrs/nlp/enrichers/NCEnrichersTestContext.scala}
 (64%)

Reply via email to