Add link to Google Group (#368)

This commit is contained in:
Jeremy Bullock 2020-10-15 22:43:17 -06:00 committed by GitHub
parent 3054519170
commit 6e58957714
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 24 additions and 41 deletions

View file

@ -4,8 +4,6 @@ contact_links:
url: https://tahoma2d.readthedocs.io/
about: The official, extensive manual for OpenToonz
- name: User forum
url: https://groups.google.com/forum/#!forum/opentoonz_en/categories/
url: https://groups.google.com/g/tahoma2d
about: You can ask and answer general questions here, and connect with other users
- name: ユーザーフォーラム
url: https://groups.google.com/forum/#!forum/opentoonz/categories/
about: このフォーラムは、OpenToonz の利用者同士で情報共有を行うことを目的としています

View file

@ -1,15 +0,0 @@
---
name: Ask a question
about: Related questions only
title: ''
labels: 'question'
assignees: ''
---
<!-- Please search for existing questions to avoid creating duplicates or your question may be closed. -->
<!-- Before asking a question please first consult the Tahoma2D manual: https://tahoma2d.readthedocs.io/ -->
<!-- Consider that your question may be better asked on the OpenToonz forum: https://groups.google.com/forum/#!forum/opentoonz_en/categories/ -->
**Question**
Ask a question related to Tahoma2D.

View file

@ -30,7 +30,7 @@ Can't develop but still want to help? Help us test individual Pull Requests befo
## Community
- To share tips or to troubleshoot, join the [Google OpenToonz Users forum](https://groups.google.com/forum/#!forum/opentoonz_en)
- To share tips or to troubleshoot, join the [Google OpenToonz Users forum](hhttps://groups.google.com/g/tahoma2d)
- If you found a bug with the software after troubleshooting, or are a developer, search the [Github issues](https://github.com/turtletooth/tahoma2d/issues) and post there.
## Licensing

View file

@ -325,6 +325,7 @@
<menu title="Help">
<command>MI_OpenOnlineManual</command>
<command>MI_OpenWhatsNew</command>
<command>MI_OpenCommunityForum</command>
<separator/>
<command>MI_SupportTahoma2D</command>
<command>MI_OpenReportABug</command>

View file

@ -578,8 +578,8 @@ centralWidget->setLayout(centralWidgetLayout);*/
setCommandHandler(MI_OpenOnlineManual, this, &MainWindow::onOpenOnlineManual);
setCommandHandler(MI_SupportTahoma2D, this, &MainWindow::onSupportTahoma2D);
setCommandHandler(MI_OpenWhatsNew, this, &MainWindow::onOpenWhatsNew);
// setCommandHandler(MI_OpenCommunityForum, this,
// &MainWindow::onOpenCommunityForum);
setCommandHandler(MI_OpenCommunityForum, this,
&MainWindow::onOpenCommunityForum);
setCommandHandler(MI_OpenReportABug, this, &MainWindow::onOpenReportABug);
setCommandHandler(MI_MaximizePanel, this, &MainWindow::maximizePanel);
@ -1060,7 +1060,7 @@ void MainWindow::onOpenOnlineManual() {
//-----------------------------------------------------------------------------
void MainWindow::onSupportTahoma2D() {
QDesktopServices::openUrl(QUrl("http://patreon.com/jeremybullock"));
QDesktopServices::openUrl(QUrl("http://patreon.com/jeremybullock"));
}
//-----------------------------------------------------------------------------
@ -1072,10 +1072,9 @@ void MainWindow::onOpenWhatsNew() {
//-----------------------------------------------------------------------------
// void MainWindow::onOpenCommunityForum() {
// QDesktopServices::openUrl(
// QUrl(tr("https://groups.google.com/forum/#!forum/opentoonz_en")));
//}
void MainWindow::onOpenCommunityForum() {
QDesktopServices::openUrl(QUrl(tr("https://groups.google.com/g/tahoma2d")));
}
//-----------------------------------------------------------------------------
@ -1810,10 +1809,9 @@ void MainWindow::defineActions() {
MI_PreviewSettings, tr("&Preview Settings..."), "",
tr("Control the settings that will be used to preview the scene."));
menuAct->setIcon(createQIcon("preview_settings"));
menuAct = createMenuRenderAction(
MI_Render, tr("&Render"), "Ctrl+Shift+R",
tr("Renders according to the settings and "
"location set in Output Settings."));
menuAct = createMenuRenderAction(MI_Render, tr("&Render"), "Ctrl+Shift+R",
tr("Renders according to the settings and "
"location set in Output Settings."));
menuAct->setIcon(createQIcon("render"));
menuAct = createMenuRenderAction(
MI_SaveAndRender, tr("&Save and Render"), "",
@ -2436,14 +2434,15 @@ void MainWindow::defineActions() {
menuAct->setIconText(tr("What's New..."));
menuAct->setIcon(createQIcon("web"));
menuAct = createMenuHelpAction(MI_SupportTahoma2D, tr("&Support Tahoma2D..."), "");
menuAct =
createMenuHelpAction(MI_SupportTahoma2D, tr("&Support Tahoma2D..."), "");
menuAct->setIconText(tr("Support Tahoma2D"));
menuAct->setIcon(createQIcon("web"));
// menuAct = createMenuHelpAction(MI_OpenCommunityForum,
// tr("&Community Forum..."), "");
// menuAct->setIconText(tr("Community Forum..."));
// menuAct->setIcon(createQIcon("web"));
menuAct = createMenuHelpAction(MI_OpenCommunityForum,
tr("&Community Forum..."), "");
menuAct->setIconText(tr("Community Forum..."));
menuAct->setIcon(createQIcon("web"));
menuAct = createMenuHelpAction(MI_OpenReportABug, tr("&Report a Bug..."), "");
menuAct->setIconText(tr("Report a Bug..."));

View file

@ -69,7 +69,7 @@ class MainWindow final : public QMainWindow {
StatusBar *m_statusBar;
AboutPopup *m_aboutPopup;
QDialog *m_transparencyTogglerWindow;
QSlider* m_transparencySlider;
QSlider *m_transparencySlider;
QActionGroup *m_toolsActionGroup;
QStackedWidget *m_stackedWidget;
@ -105,7 +105,7 @@ public:
void onOpenOnlineManual();
void onSupportTahoma2D();
void onOpenWhatsNew();
// void onOpenCommunityForum();
void onOpenCommunityForum();
void onOpenReportABug();
void checkForUpdates();
int getRoomCount() const;
@ -201,7 +201,7 @@ public:
void TogglePlasticPaintRigid();
void TogglePlasticBuildSkeleton();
void TogglePlasticAnimate();
/*-- Brush Tool + mode switching shortcuts --*/
void ToggleBrushAutoFillOff();
void ToggleBrushAutoFillOn();

View file

@ -722,7 +722,7 @@ QMenuBar *StackedMenuBar::createFullMenuBar() {
QMenu *helpMenu = addMenu(tr("Help"), fullMenuBar);
addMenuItem(helpMenu, MI_OpenOnlineManual);
addMenuItem(helpMenu, MI_OpenWhatsNew);
// addMenuItem(helpMenu, MI_OpenCommunityForum);
addMenuItem(helpMenu, MI_OpenCommunityForum);
helpMenu->addSeparator();
addMenuItem(helpMenu, MI_SupportTahoma2D);
addMenuItem(helpMenu, MI_OpenReportABug);

View file

@ -436,7 +436,7 @@
#define MI_OpenOnlineManual "MI_OpenOnlineManual"
#define MI_SupportTahoma2D "MI_SupportTahoma2D"
#define MI_OpenWhatsNew "MI_OpenWhatsNew"
// #define MI_OpenCommunityForum "MI_OpenCommunityForum"
#define MI_OpenCommunityForum "MI_OpenCommunityForum"
#define MI_OpenReportABug "MI_OpenReportABug"
#define MI_ClearCacheFolder "MI_ClearCacheFolder"