Skip to content

Commit

Permalink
Update to v0.6.2 (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-tejada authored Dec 8, 2023
1 parent 20ba96f commit 36853f6
Show file tree
Hide file tree
Showing 6 changed files with 227 additions and 94 deletions.
285 changes: 199 additions & 86 deletions CHANGELOG.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Rango/Rango for Safari.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@
buildSettings = {
CODE_SIGN_ENTITLEMENTS = "macOS (Extension)/Rango.entitlements";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 9;
CURRENT_PROJECT_VERSION = 10;
DEAD_CODE_STRIPPING = YES;
ENABLE_HARDENED_RUNTIME = YES;
GENERATE_INFOPLIST_FILE = YES;
Expand Down Expand Up @@ -549,7 +549,7 @@
CODE_SIGN_ENTITLEMENTS = "macOS (Extension)/Rango.entitlements";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 9;
CURRENT_PROJECT_VERSION = 10;
DEAD_CODE_STRIPPING = YES;
ENABLE_HARDENED_RUNTIME = YES;
GENERATE_INFOPLIST_FILE = YES;
Expand Down Expand Up @@ -583,7 +583,7 @@
CODE_SIGN_ENTITLEMENTS = "macOS (App)/Rango.entitlements";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 9;
CURRENT_PROJECT_VERSION = 10;
DEAD_CODE_STRIPPING = YES;
ENABLE_HARDENED_RUNTIME = YES;
GENERATE_INFOPLIST_FILE = YES;
Expand Down Expand Up @@ -619,7 +619,7 @@
CODE_SIGN_ENTITLEMENTS = "macOS (App)/Rango.entitlements";
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 9;
CURRENT_PROJECT_VERSION = 10;
DEAD_CODE_STRIPPING = YES;
ENABLE_HARDENED_RUNTIME = YES;
GENERATE_INFOPLIST_FILE = YES;
Expand Down
2 changes: 1 addition & 1 deletion src/mv2-safari/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Rango",
"version": "0.6.1",
"version": "0.6.2",
"description": "Extension that allows you to interact with webpages using only your keyboard or your voice and talon",
"homepage_url": "https://github.com/david-tejada/rango",
"manifest_version": 2,
Expand Down
2 changes: 1 addition & 1 deletion src/mv2/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Rango",
"version": "0.6.1",
"version": "0.6.2",
"description": "Extension that allows you to interact with webpages and the browser using your voice and talon or your keyboard",
"homepage_url": "https://github.com/david-tejada/rango",
"manifest_version": 2,
Expand Down
2 changes: 1 addition & 1 deletion src/mv3/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Rango",
"version": "0.6.1",
"version": "0.6.2",
"description": "Extension that allows you to interact with webpages and the browser using your voice and talon or your keyboard",
"homepage_url": "https://github.com/david-tejada/rango",
"manifest_version": 3,
Expand Down
22 changes: 21 additions & 1 deletion src/pages/whatsNew/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</head>
<body>
<div class="container">
<h1>Rango has been updated to version 0.6.0</h1>
<h1>Rango has been updated to version 0.6.2</h1>
<section>
<h2>What's new?</h2>
<p>
Expand Down Expand Up @@ -91,6 +91,26 @@ <h2>Become a sponsor</h2>
>
</section>

<section>
<h2>Changelog for v0.6.2</h2>

<h3>Added</h3>
<ul>
<li>Add setting to hide tab markers when the hints global toggle is off (#253)</li>
</ul>

<h3>Fixed</h3>
<ul>
<li>Fix includeTabMarkers being altered by clicking the browser action button</li>
<li>Fix buggy behavior when changing the title of a bookmark manually (#254)</li>
<li>Handle focus change and update shouldBeHinted for all hintables. Fixes some instances of hints not displaying on menus that open when certain element is focused. (#256)</li>
<li>Fix hints not being shown with new color spaces in CSS Colors v4 (#257)</li>
<li>Improve include or exclude custom hints highlighting for better accessibility (#258)</li>
<li>Fix focus not being called for all HTMLElements (#255)</li>
</ul>
</section>


<section>
<h2>Changelog for v0.6.0</h2>

Expand Down

0 comments on commit 36853f6

Please sign in to comment.