mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-28 17:16:29 +03:00
Add new OpenAI and Google models.
Pump eepp and ecode versions. Try to fix a minor bug in Plugin Manager window.
This commit is contained in:
@@ -130,6 +130,11 @@
|
||||
"name": "gemini-2.5-pro-exp-03-25",
|
||||
"display_name": "Gemini 2.5 Pro Experimental",
|
||||
"max_tokens": 1000000
|
||||
},
|
||||
{
|
||||
"name": "gemini-2.5-flash-preview-04-17",
|
||||
"display_name": "Gemini 2.5 Flash Preview",
|
||||
"max_tokens": 1000000
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -217,6 +222,27 @@
|
||||
{
|
||||
"max_tokens": 200000,
|
||||
"name": "o3-mini"
|
||||
},
|
||||
{
|
||||
"name": "gpt-4.1-nano"
|
||||
},
|
||||
{
|
||||
"name": "gpt-4.1-mini"
|
||||
},
|
||||
{
|
||||
"name": "gpt-4.1"
|
||||
},
|
||||
{
|
||||
"name": "o4-mini"
|
||||
},
|
||||
{
|
||||
"name": "o3"
|
||||
},
|
||||
{
|
||||
"name": "o1-pro"
|
||||
},
|
||||
{
|
||||
"name": "gpt-4.5-preview"
|
||||
}
|
||||
],
|
||||
"version": 1
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
#define EEPP_MAJOR_VERSION 2
|
||||
#define EEPP_MINOR_VERSION 8
|
||||
#define EEPP_PATCH_LEVEL 6
|
||||
#define EEPP_PATCH_LEVEL 7
|
||||
#define EEPP_CODENAME "Siddhi"
|
||||
|
||||
/** The compiled version of the library */
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE QtCreatorProject>
|
||||
<!-- Written by QtCreator 16.0.0, 2025-04-12T17:50:49. -->
|
||||
<!-- Written by QtCreator 16.0.0, 2025-04-12T23:39:59. -->
|
||||
<qtcreator>
|
||||
<data>
|
||||
<variable>EnvironmentId</variable>
|
||||
@@ -244,7 +244,7 @@
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProcessStep.Arguments">--with-debug-symbols --with-text-shaper gmake</value>
|
||||
<value type="QString" key="ProjectExplorer.ProcessStep.Arguments">--with-debug-symbols --disable-static-build --with-text-shaper gmake</value>
|
||||
<value type="QString" key="ProjectExplorer.ProcessStep.Command">premake4</value>
|
||||
<value type="QString" key="ProjectExplorer.ProcessStep.WorkingDirectory">%{buildDir}../../../</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.ProcessStep</value>
|
||||
@@ -1199,7 +1199,6 @@
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.CustomExecutableRunConfiguration</value>
|
||||
<value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey"></value>
|
||||
<value type="bool" key="ProjectExplorer.RunConfiguration.Customized">true</value>
|
||||
<value type="QString" key="RunConfiguration.Arguments">/home/downloads/files/svn/janet</value>
|
||||
<value type="int" key="RunConfiguration.UseCppDebugger">0</value>
|
||||
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">false</value>
|
||||
<value type="int" key="RunConfiguration.UseQmlDebugger">1</value>
|
||||
|
||||
@@ -467,11 +467,10 @@ UIWindow* UIPluginManager::New( UISceneNode* sceneNode, PluginManager* manager,
|
||||
<window
|
||||
id="plugin-manager-window"
|
||||
lw="800dp" lh="400dp"
|
||||
padding="8dp"
|
||||
window-title="@string(plugin_manager, Plugins Manager)"
|
||||
window-flags="default|maximize|shadow"
|
||||
window-min-size="300dp 300dp">
|
||||
<vbox lw="mp" lh="mp">
|
||||
<vbox lw="mp" lh="mp" margin="8dp">
|
||||
<UIPluginManagerTable id="plugin-manager-table" lw="mp" lh="fixed" layout_weight="1" />
|
||||
<vbox lw="mp" lh="wc">
|
||||
<hbox margin-top="4dp" layout-gravity="right">
|
||||
|
||||
@@ -8,7 +8,7 @@ using namespace EE;
|
||||
|
||||
#define ECODE_MAJOR_VERSION 0
|
||||
#define ECODE_MINOR_VERSION 7
|
||||
#define ECODE_PATCH_LEVEL 1
|
||||
#define ECODE_PATCH_LEVEL 2
|
||||
/* ECODE_COMMIT_NUMBER 9999 is used for official releases, nightly builds (pre-releases) will
|
||||
* contain the number of commits after the last official release
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user