Skip to content

Commit

Permalink
Bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrondeau committed Aug 16, 2015
1 parent 5a155c1 commit 9788a0c
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 64 deletions.
6 changes: 3 additions & 3 deletions GoToWindow.Shared/Properties/AssemblyInfo.Shared.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("0.3.0")]
[assembly: AssemblyFileVersion("0.3.0")]
[assembly: AssemblyInformationalVersion("0.3.0")]
[assembly: AssemblyVersion("0.4.0")]
[assembly: AssemblyFileVersion("0.4.0")]
[assembly: AssemblyInformationalVersion("0.4.0")]
2 changes: 1 addition & 1 deletion GoToWindow.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>GoToWindow</id>
<version>0.3.0</version>
<version>0.4.0</version>
<title>GoToWindow</title>
<authors>Christian Rondeau</authors>
<owners>Christian Rondeau</owners>
Expand Down
113 changes: 58 additions & 55 deletions GoToWindow/Resources/Help.html
Original file line number Diff line number Diff line change
@@ -1,62 +1,65 @@
<!DOCTYPE html>
<html>
<head>
<style>
* {
font-family: 'Segoe UI';
font-size: 12px;
}
</style>
<style>
* {
font-family: 'Segoe UI';
font-size: 12px;
}
</style>
</head>
<body>
<h2>Usage</h2>
<p>Launch <code>GoToWindow.exe</code>. You can also place it in in the Windows Startup menu to launch it automatically with Windows.</p>
<ul>
<li>
<p>Press <code>Win</code> + <code>Tab</code> + <code>Tab</code> to open the windows list. All windows are shown, with the most recently accessed first.</p>
</li>
<li>
<p>Press the <code>Up</code> and <code>Down</code> arrows to navigate in the list, and press <code>Enter</code> to switch to the application.</p>
</li>
<li>
<p>Start typing keywords to filter the list. Note that only windows that contain all words in either the window title <em>or</em> the process name will be shown.</p>
</li>
<li>
<p>If no opened window is found for your query, press <code>Enter</code> to search directly in the Windows Search charm.</p>
</li>
<li>
<p>Press <code>Ctrl</code> + <code>Number (1 - 9)</code> to directly open the application at the selected index from the list.</p>
</li>
<li>
<p>Press <code>Escape</code> to close the window.</p>
</li>
</ul>
<h2>Tips and gotchas</h2>
<ul>
<li>
<p>To use GoToWindow within an application that runs with elevated privileges (Run as Administrator), GoToWindow must also run with elevated privileges, otherwise the native <code>Win</code> + <code>Tab</code> will show up.</p>
</li>
<li>
<p>By default, GoToWindow expands web browser's tabs. This slows down display a little bit. You can disable it in the Settings, under the Plugins tab.</p>
</li>
</ul>
<h2>Bugs</h2>
<p>If for some reason Go To Window crashes, create an <a href='https://github.com/christianrondeau/GoToWindow/issues' target='_blank'>issue</a> (check if one already exists before).</p>
<p>Please include:</p>
<ul>
<li>Log (<code>GoToWindow.log</code> in the installation directory).<br/><em>Only include the last ~20 lines.</em></li>
<li>Version of Windows</li>
<li>Version of Go To Window</li>
</ul>
<h2>Plugins</h2>
<p>GoToWindow is extensible. Even the core functionality is a plug-in, that can be replaced if you wish. You can also write your own!</p>
<h3>Built-in Plugins</h3>
<ul>
<li><code>GoToWindow.Plugins.Core</code>: Loads the core windows list, as shown by the native <code>Win</code> + <code>Tab</code> screen. Also allows launching the Windows Search if no window fit.</li>
<li><code>GoToWindow.Plugins.ExpandBrowsersTabs</code>: Expands browser windows and shows all tabs as separate windows.</li>
<li><code>GoToWindow.Plugins.ExplorerExtensions</code>: Show the full path of explorer windows instead of just the folder name. If a valid path is written, you can also open Windows Explorer with it.</li>
</ul>
<h3>Installing Additional Plug-ins</h3>
<p>Simply drop the plug-in files under <code>GoToWindow\Plugins</code> directory, and restart Go To Window.</p>
<h2>Usage</h2>
<p>Launch <code>GoToWindow.exe</code>. You can also place it in in the Windows Startup menu to launch it automatically with Windows.</p>
<ul>
<li>
<p>Press <code>Win</code> + <code>Tab</code> + <code>Tab</code> to open the windows list. All windows are shown, with the most recently accessed first.</p>
</li>
<li>
<p>Press the <code>Up</code> and <code>Down</code> arrows to navigate in the list, and press <code>Enter</code> to switch to the application.</p>
</li>
<li>
<p>Start typing keywords to filter the list. Note that only windows that contain all words in either the window title <em>or</em> the process name will be shown.</p>
</li>
<li>
<p>If no opened window is found for your query, press <code>Enter</code> to search directly in the Windows Search charm.</p>
</li>
<li>
<p>Press <code>Ctrl</code> + <code>Number (1 - 9)</code> to directly open the application at the selected index from the list.</p>
</li>
<li>
<p>Press <code>Escape</code> to close the window.</p>
</li>
</ul>
<h2>Tips and gotchas</h2>
<ul>
<li>
<p>To use GoToWindow within an application that runs with elevated privileges (Run as Administrator), GoToWindow must also run with elevated privileges, otherwise the native <code>Win</code> + <code>Tab</code> will show up.</p>
</li>
<li>
<p>By default, GoToWindow expands web browser's tabs. This slows down display a little bit. You can disable it in the Settings, under the Plugins tab.</p>
</li>
<li>
<p>Windows 10 is supported, but there's a few glitches (icons and process name not showing up, some closed apps still showing up...)</p>
</li>
</ul>
<h2>Bugs</h2>
<p>If for some reason Go To Window crashes, create an <a href='https://github.com/christianrondeau/GoToWindow/issues' target='_blank'>issue</a> (check if one already exists before).</p>
<p>Please include:</p>
<ul>
<li>Log (<code>GoToWindow.log</code> in the installation directory).<br /><em>Only include the last ~20 lines.</em></li>
<li>Version of Windows</li>
<li>Version of Go To Window</li>
</ul>
<h2>Plugins</h2>
<p>GoToWindow is extensible. Even the core functionality is a plug-in, that can be replaced if you wish. You can also write your own!</p>
<h3>Built-in Plugins</h3>
<ul>
<li><code>GoToWindow.Plugins.Core</code>: Loads the core windows list, as shown by the native <code>Win</code> + <code>Tab</code> screen. Also allows launching the Windows Search if no window fit.</li>
<li><code>GoToWindow.Plugins.ExpandBrowsersTabs</code>: Expands browser windows and shows all tabs as separate windows.</li>
<li><code>GoToWindow.Plugins.ExplorerExtensions</code>: Show the full path of explorer windows instead of just the folder name. If a valid path is written, you can also open Windows Explorer with it.</li>
</ul>
<h3>Installing Additional Plug-ins</h3>
<p>Simply drop the plug-in files under <code>GoToWindow\Plugins</code> directory, and restart Go To Window.</p>
</body>
</html>
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Go To Window
# GoToWindow

[![Join the chat at https://gitter.im/christianrondeau/GoToWindow](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/christianrondeau/GoToWindow?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Expand Down Expand Up @@ -34,15 +34,17 @@ Launch `GoToWindow.exe`. You can also place it in in the Windows Startup menu to

* By default, GoToWindow expands web browser's tabs. This slows down display a little bit. You can disable it in the Settings, under the Plugins tab.

* Windows 10 is supported, but there's a few glitches (icons and process name not showing up, some closed apps still showing up...)

## Bugs

If for some reason Go To Window crashes, create an [issue](https://github.com/christianrondeau/GoToWindow/issues) (check if one already exists before).
If for some reason GoToWindow crashes, create an [issue](https://github.com/christianrondeau/GoToWindow/issues) (check if one already exists before).

Please include:

* Log (`GoToWindow.log` in the installation directory).<br />_Only include the last ~20 lines._
* Log (`GoToWindow.log` in the installation directory).<br />_Only include the last ~50 lines._
* Version of Windows
* Version of Go To Window
* Version of GoToWindow

## Plugins

Expand All @@ -56,7 +58,7 @@ GoToWindow is extensible. Even the core functionality is a plug-in, that can be

### Installing Additional Plug-ins

Simply drop the plug-in files under `GoToWindow\Plugins` directory, and restart Go To Window.
Simply drop the plug-in files under `GoToWindow\Plugins` directory, and restart GoToWindow.

### Writing your own Plug-ins

Expand Down

0 comments on commit 9788a0c

Please sign in to comment.