Skip to content

Commit

Permalink
migrate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Kolcha committed Aug 29, 2024
1 parent e4e504d commit a14f0c7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Digital Clock Next
==================
Digital Clock 5
===============

[![GitHub License](https://img.shields.io/github/license/Kolcha/DigitalClock5)](https://www.gnu.org/licenses/gpl-3.0.html)
[![SourceForge Downloads](https://img.shields.io/sourceforge/dm/digitalclock4)](https://sourceforge.net/projects/digitalclock4/files)
Expand All @@ -11,13 +11,12 @@ Some key features:
* full compatibility with old skin format
* good font rendering (minimal difference with text editors)
* good Unicode support (including emoji)
* font-like rendering for image-based skins due to [skin format extension](https://github.com/Kolcha/DigitalClockNext/wiki/Extended-legacy-skin-format)
* font-like rendering for image-based skins due to [skin format extension](https://github.com/Kolcha/DigitalClock5/wiki/Extended-legacy-skin-format)
* gradient filling for numbers and background
* horizontal/vertical layout out-of-the-box
* [multiple time zones](https://github.com/Kolcha/DigitalClockNext/wiki/Multiple-timezones) (or just multiple windows) support
* [multiple time zones](https://github.com/Kolcha/DigitalClock5/wiki/Multiple-timezones) (or just multiple windows) support
* tray icon displays local time (implemented just-for-fun)

A lot of useful information about app usage and possible customization options can be found in the [Wiki](https://github.com/Kolcha/DigitalClockNext/wiki). Also some useful links and contact information can be found in the app's About dialog.
A lot of useful information about app usage and possible customization options can be found in the [Wiki](https://github.com/Kolcha/DigitalClock5/wiki). Also some useful links and contact information can be found in the app's About dialog.

Downloads are published on SourceForge.

Expand Down
2 changes: 1 addition & 1 deletion app/gui/about_dialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
<item>
<widget class="QLabel" name="wiki_home_lbl">
<property name="text">
<string>&lt;a href=&quot;https://github.com/Kolcha/DigitalClockNext/wiki&quot;&gt;project Wiki home page&lt;/a&gt;</string>
<string>&lt;a href=&quot;https://github.com/Kolcha/DigitalClock5/wiki&quot;&gt;project Wiki home page&lt;/a&gt;</string>
</property>
<property name="alignment">
<set>Qt::AlignmentFlag::AlignCenter</set>
Expand Down
6 changes: 3 additions & 3 deletions app/gui/settings_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ void SettingsDialog::on_format_edit_textEdited(const QString& arg1)

void SettingsDialog::on_format_help_btn_clicked()
{
QDesktopServices::openUrl(QUrl("https://github.com/Kolcha/DigitalClockNext/wiki/Supported-date-time-formats"));
QDesktopServices::openUrl(QUrl("https://github.com/Kolcha/DigitalClock5/wiki/Supported-date-time-formats"));
}

void SettingsDialog::on_format_apply_btn_clicked()
Expand All @@ -252,7 +252,7 @@ void SettingsDialog::on_layout_cfg_edit_textEdited(const QString& arg1)

void SettingsDialog::on_layout_cfg_help_btn_clicked()
{
QDesktopServices::openUrl(QUrl("https://github.com/Kolcha/DigitalClockNext/wiki/Multiple-lines"));
QDesktopServices::openUrl(QUrl("https://github.com/Kolcha/DigitalClock5/wiki/Multiple-lines"));
}

void SettingsDialog::on_use_custom_seps_clicked(bool checked)
Expand All @@ -269,7 +269,7 @@ void SettingsDialog::on_custom_seps_edit_textEdited(const QString& arg1)

void SettingsDialog::on_custom_seps_help_btn_clicked()
{
QDesktopServices::openUrl(QUrl("https://github.com/Kolcha/DigitalClockNext/wiki/Custom-separator-characters"));
QDesktopServices::openUrl(QUrl("https://github.com/Kolcha/DigitalClock5/wiki/Custom-separator-characters"));
}

void SettingsDialog::updateTimeFormat()
Expand Down
2 changes: 1 addition & 1 deletion plugin_core/impl/appearance_settings_widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ void AppearanceSettingsWidget::on_layout_cfg_edit_textEdited(const QString& arg1

void AppearanceSettingsWidget::on_layout_cfg_help_btn_clicked()
{
QDesktopServices::openUrl(QUrl("https://github.com/Kolcha/DigitalClockNext/wiki/Multiple-lines"));
QDesktopServices::openUrl(QUrl("https://github.com/Kolcha/DigitalClock5/wiki/Multiple-lines"));
}

void AppearanceSettingsWidget::on_font_rbtn_clicked()
Expand Down
2 changes: 1 addition & 1 deletion plugins/date/gui/settings_widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ void SettingsWidget::on_str_format_edit_editTextChanged(const QString& arg1)

void SettingsWidget::on_str_format_help_btn_clicked()
{
QDesktopServices::openUrl(QUrl("https://github.com/Kolcha/DigitalClockNext/wiki/Supported-date-time-formats"));
QDesktopServices::openUrl(QUrl("https://github.com/Kolcha/DigitalClock5/wiki/Supported-date-time-formats"));
}

0 comments on commit a14f0c7

Please sign in to comment.