Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
nedex committed Feb 24, 2023
2 parents 7665c24 + 1e50800 commit a098c40
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
"type": "shell",
"command": "make clean",
"problemMatcher": ["$gcc"]
},
{
"label": "Docker make",
"type": "shell",
"command": "docker run --rm -v ${PWD}:/${workspaceFolderBasename} -w /${workspaceFolderBasename} devkitpro/devkita64 make clean && make"
}
]
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.2.7] - 2023-02-24

### Updated

- libtesla @ [b32acbc](https://github.com/WerWolv/libtesla/commit/b32acbca64c78bf37bc456bd386cd6b7148842c81)

## [1.2.6] - 2022-09-22

### Added
Expand Down Expand Up @@ -63,6 +69,7 @@ Thanks to [@DarkMatterCore](https://github.com/DarkMatterCore)!

- First release

[1.2.7]: https://github.com/nedex/QuickNTP/compare/1.2.6...1.2.7
[1.2.6]: https://github.com/nedex/QuickNTP/compare/1.2.5...1.2.6
[1.2.5]: https://github.com/nedex/QuickNTP/compare/1.2.1...1.2.5
[1.2.1]: https://github.com/nedex/QuickNTP/compare/1.2.0...1.2.1
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ include $(DEVKITPRO)/libnx/switch_rules
# NACP building is skipped as well.
#---------------------------------------------------------------------------------
APP_TITLE := QuickNTP
APP_VERSION := 1.2.6
APP_VERSION := 1.2.7

TARGET := $(notdir $(CURDIR))
BUILD := build
Expand Down
2 changes: 1 addition & 1 deletion libs/libtesla
Submodule libtesla updated 1 files
+5 −1 include/tesla.hpp
2 changes: 1 addition & 1 deletion source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class NtpGui : public tsl::Gui {
serverNames(vectorPairKeys(NTPSERVERS)) {}

virtual tsl::elm::Element* createUI() override {
auto frame = new tsl::elm::CustomOverlayFrame("QuickNTP", "by NedEX - v1.2.6");
auto frame = new tsl::elm::CustomOverlayFrame("QuickNTP", "by NedEX - v1.2.7");

auto list = new tsl::elm::List();

Expand Down

0 comments on commit a098c40

Please sign in to comment.