Skip to content

Commit fb8a19c

Browse files
committed
Release: v.0.10.0
1 parent 1945a90 commit fb8a19c

File tree

7 files changed

+24
-14
lines changed

7 files changed

+24
-14
lines changed

Changelog.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Screen Ruler Changelog
22

3+
### v.0.10 (2022-09)
4+
- **New:** Fine-grained calibration to display scaling using four scaling modes.
5+
- **New:** Monitor DPI awareness & automatic scaling.
6+
- **New:** Configuration of keyboard shortcuts.
7+
- **New:** Turkish translation.
8+
- **Fixed:** Placement of marker labels in flipped orientation.
9+
- **Fixed:** Intersecting mouse & offset labels.
10+
- **Fixed:** Various UI and usability issues & causes for app crashes
11+
- **Updated:** Spanish translation
12+
313
### v.0.9 (2021-08)
414
- **New:** Horizontal and vertical flipping of ruler scale
515
- **New:** Optionally show hypotenuse ("H") and angles in 2D ruler mode
@@ -64,12 +74,12 @@
6474
- **New:** Easily resize the ruler with the mouse wheel.
6575
- **New:** Add unlimited number of custom markers and delete them one by one.
6676

67-
#### v.0.1.2 (2018-04)
68-
- **New:** Saves the last ruler state for next startup.
69-
- **Fixed:** Resizing with keyboard in vertical mode.
77+
### v.0.1 (2017-06)
78+
- First released version
7079

7180
#### v.0.1.1 (2018-02)
7281
- **Fixed:** Bug with negative screen coordinates.
7382

74-
### v.0.1 (2017-06)
75-
- First released version
83+
#### v.0.1.2 (2018-04)
84+
- **New:** Saves the last ruler state for next startup.
85+
- **Fixed:** Resizing with keyboard in vertical mode.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Besides coming with a light and a dark theme, Screen Ruler also allows you to fu
4545

4646
#### Requirements
4747

48-
Screen Ruler requires Windows 7 or newer and .NET Framework 4.5 or higher.
48+
Screen Ruler requires Windows 7 or newer and .NET Framework 4.8 or higher.
4949

5050
#### Get Screen Ruler
5151

ScreenRuler/Controls/ShortcutActionsEdit.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private void editShortcut(ListViewItem selectedItem)
9696
DescriptionText = selectedItem.SubItems[0].Text,
9797
ModifiersRequired = false,
9898
};
99-
if (hotKeyInputForm.ShowDialog() == DialogResult.OK)
99+
if (hotKeyInputForm.ShowDialog(this.ParentForm) == DialogResult.OK)
100100
{
101101
Shortcut shortcut = new Shortcut(action, hotKeyInputForm.SelectedKeys);
102102
ShortcutActions.SetShortcuts(shortcut);

ScreenRuler/Forms/CalibrationForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ private void numUnitV_ValueChanged(object sender, EventArgs e)
285285

286286
private void lnkHelp_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
287287
{
288-
Process.Start("https://sourceforge.net/p/screenruler/discussion/howto/thread/22319514a3/");
288+
Process.Start("http://bluegrams.com/blog/2022/09/display-scaling-and-calibration-with-screenruler.html");
289289
}
290290

291291
private void butSubmit_Click(object sender, EventArgs e)

ScreenRuler/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[assembly: AssemblyConfiguration("")]
99
[assembly: AssemblyCompany("Bluegrams")]
1010
[assembly: AssemblyProduct("Screen Ruler")]
11-
[assembly: AssemblyCopyright("Copyright © 2017-2021 Bluegrams")]
11+
[assembly: AssemblyCopyright("Copyright © 2017-2022 Bluegrams")]
1212
[assembly: AssemblyTrademark("")]
1313
[assembly: AssemblyCulture("")]
1414

@@ -30,5 +30,5 @@
3030

3131
[assembly: NeutralResourcesLanguage("en")]
3232

33-
[assembly: AssemblyVersion("0.9.1")]
34-
[assembly: AssemblyFileVersion("0.9.1")]
33+
[assembly: AssemblyVersion("0.10.0")]
34+
[assembly: AssemblyFileVersion("0.10.0")]

ScreenRuler/Properties/app.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3-
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
3+
<assemblyIdentity version="0.10.0.0" name="ScreenRuler"/>
44

55
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
66
<application>

choco/screenruler.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<metadata>
55
<!-- == PACKAGE SPECIFIC SECTION == -->
66
<id>screenruler</id>
7-
<version>0.9.1</version>
7+
<version>0.10.0</version>
88
<owners>alxnull</owners>
99
<!-- ============================== -->
1010

@@ -13,7 +13,7 @@
1313
<authors>alxnull</authors>
1414
<projectUrl>https://screenruler.sourceforge.io/</projectUrl>
1515
<iconUrl>https://raw.githubusercontent.com/Bluegrams/ScreenRuler/master/img/icon.png</iconUrl>
16-
<copyright>© 2017-2021 Bluegrams</copyright>
16+
<copyright>© 2017-2022 Bluegrams</copyright>
1717
<licenseUrl>https://github.com/bluegrams/ScreenRuler/blob/master/LICENSE.txt</licenseUrl>
1818
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1919
<projectSourceUrl>https://github.com/bluegrams/ScreenRuler</projectSourceUrl>

0 commit comments

Comments
 (0)