- update raylib to 4.2-dev

- update raylib-drawing to 1.1
  - add "raylib manual" in the help menu
This commit is contained in:
Roy Qu 2022-07-01 17:15:20 +08:00
parent 24a4f0e127
commit 097108a2c9
7 changed files with 425 additions and 378 deletions

View File

@ -6,6 +6,9 @@ Red Panda C++ Version 1.1.3
- enhancement: delete the whole folded code block - enhancement: delete the whole folded code block
- fix: correctly update the folding state of code block, when deleted - fix: correctly update the folding state of code block, when deleted
- change: just show one function hint for overloaded functions - change: just show one function hint for overloaded functions
- update raylib to 4.2-dev
- update raylib-drawing to 1.1
- add "raylib manual" in the help menu
Red Panda C++ Version 1.1.2 Red Panda C++ Version 1.1.2
- enhancement: use different color to differenciate folder and headers in completion popup window - enhancement: use different color to differenciate folder and headers in completion popup window

View File

@ -85,6 +85,10 @@
<source>Header already exists.</source> <source>Header already exists.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<source>UTF-8</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>BacktraceModel</name> <name>BacktraceModel</name>
@ -4492,6 +4496,10 @@
<source>Ignore Spaces</source> <source>Ignore Spaces</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<source>Raylib Manual</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>NewClassDialog</name> <name>NewClassDialog</name>

File diff suppressed because it is too large Load Diff

View File

@ -85,6 +85,10 @@
<source>Header already exists.</source> <source>Header already exists.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<source>UTF-8</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>BacktraceModel</name> <name>BacktraceModel</name>
@ -4492,6 +4496,10 @@
<source>Ignore Spaces</source> <source>Ignore Spaces</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<source>Raylib Manual</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>NewClassDialog</name> <name>NewClassDialog</name>

View File

@ -7967,3 +7967,13 @@ void MainWindow::on_chkIgnoreSpaces_stateChanged(int /*arg1*/)
} }
void MainWindow::on_actionRaylib_Manual_triggered()
{
if (pSettings->environment().language()=="zh_CN") {
QDesktopServices::openUrl(QUrl("https://zhuanlan.zhihu.com/p/458335134"));
} else {
QDesktopServices::openUrl(QUrl("https://www.raylib.com/"));
}
}

View File

@ -691,6 +691,8 @@ private slots:
void on_chkIgnoreSpaces_stateChanged(int arg1); void on_chkIgnoreSpaces_stateChanged(int arg1);
void on_actionRaylib_Manual_triggered();
private: private:
Ui::MainWindow *ui; Ui::MainWindow *ui;
EditorList *mEditorList; EditorList *mEditorList;

View File

@ -266,6 +266,7 @@
<addaction name="actionWebsite"/> <addaction name="actionWebsite"/>
<addaction name="actionC_Reference"/> <addaction name="actionC_Reference"/>
<addaction name="actionC_C_Reference"/> <addaction name="actionC_C_Reference"/>
<addaction name="actionRaylib_Manual"/>
<addaction name="actionEGE_Manual"/> <addaction name="actionEGE_Manual"/>
<addaction name="actionAbout"/> <addaction name="actionAbout"/>
</widget> </widget>
@ -3159,6 +3160,11 @@
<string>Ctrl+F10</string> <string>Ctrl+F10</string>
</property> </property>
</action> </action>
<action name="actionRaylib_Manual">
<property name="text">
<string>Raylib Manual</string>
</property>
</action>
</widget> </widget>
<customwidgets> <customwidgets>
<customwidget> <customwidget>