Skip to content

Commit

Permalink
Merge pull request #199 from pwgit-create/quick_fix_branch
Browse files Browse the repository at this point in the history
Quick fix branch
  • Loading branch information
pwgit-create authored Nov 9, 2024
2 parents c3e298b + 2d2929d commit 8d15a69
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions AppWish/AppWish/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>pn.dev</groupId>
<artifactId>code-generator-gui-ollama</artifactId>
<version>2.1</version>
<version>2.1.1</version>
<name>CodeGenerator-GUI</name>


Expand Down Expand Up @@ -52,7 +52,7 @@
<dependency>
<groupId>pn.dev</groupId>
<artifactId>code-generator-ollama</artifactId>
<version>2.1</version>
<version>2.1.1</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

public record AboutConstants() {

private static final String APP_WISH_VERSION = "Appwish Enterprise 2.1";
private static final String APP_WISH_VERSION = "Appwish Enterprise 2.1.1";
private static final String ABOUT_APP_WISH = "AppWish 2 is a open source project that creates Java applications from text input with the help of AI models";
private static final String DEVELOPED_BY = "Pwgit-Create / Peter Westin";
private static final String CONTACT = "\nEmail: [email protected]";
Expand Down
2 changes: 1 addition & 1 deletion cg/CodeGenerator/CodeGenerator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>pn.dev</groupId>
<artifactId>code-generator-ollama</artifactId>
<version>2.1</version>
<version>2.1.1</version>


<description>The Java Application-Generator (pn.dev.code-generator-ollama) creates applications by giving a string of your desired features for a Java application, like this: AppSystem.StartCodeGenerator(String appWish)</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public String sendQuestionToOllamaInstance(String question, String pathToJavaFil
.addLine(question)
.addLine(QuestionConstants.NOTE_TO_KEEP_AS_MUCH_ORIGINAL_STRUCTURE_AS_POSSIBLE)
.addLine(QuestionConstants.NO_EXISTING_CODE_COMMENTS)
.add(QuestionConstants.NEVER_ADD_EXISTING_CODE_REFERENCE_COMMENTS)
.addLine(QuestionConstants.NEVER_ADD_EXISTING_CODE_REFERENCE_COMMENTS)
.addLine(QuestionConstants.AND_CORRECT_IMPORTS)
.addLine(QuestionConstants.MARK_START_CHAR_DELIMITER)
.addLine(QuestionConstants.MARK_THE_END_CHAR_DELIMITER)
Expand Down

0 comments on commit 8d15a69

Please sign in to comment.