Skip to content

Commit

Permalink
Merge pull request #14 from JAAdrian/develop
Browse files Browse the repository at this point in the history
Release v3.4.1
  • Loading branch information
JAAdrian authored Dec 16, 2024
2 parents 60ac26b + 68d9a19 commit 0e4acf5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and
this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.4.1] - 2024-12-16
### Fixed
- Fixed a bug which lead to an error when trying to change the command line font
on Windows. Thanks @SeanZhang99!

## [3.4.0] - 2023-09-03
### Added
- Support for nested loops where the inner one is a parallel `parfor` loop. Thanks
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause

Copyright (c) 2023, Jens-Alrik Adrian
Copyright (c) 2024, Jens-Alrik Adrian
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
4 changes: 2 additions & 2 deletions ProgressBar.m
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
properties (Constant)
% Tag every timer with this to find it properly
TIMER_TAG_NAME = 'ProgressBar';
VERSION = '3.4.0';
VERSION = '3.4.1';
end

properties (Nontunable)
Expand Down Expand Up @@ -251,7 +251,7 @@
obj.CurrentFont = s.matlab.fonts.codefont.Name.ActiveValue;

% change to Courier New which is shipped by every Windows distro since Windows 3.1
s.matlab.fonts.codefont.Name.TemporaryValue = ob.OVERRIDE_FONT_NAME;
s.matlab.fonts.codefont.Name.TemporaryValue = obj.OVERRIDE_FONT_NAME;
end

% add a new timer object with the standard tag name and hide it
Expand Down

0 comments on commit 0e4acf5

Please sign in to comment.