-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from martinsmith1968/feature/startup-options
Feature/startup options
- Loading branch information
Showing
11 changed files
with
136 additions
and
11 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Release Notes | ||
|
||
## v1.5.0 - 2020-01-01 | ||
|
||
- Added options for Restore Window Positions on Startup and Restore Desktop Icons on Startup | ||
- Restructured Docs | ||
|
||
## v1.4.2 - 2019-12-07 | ||
|
||
- Major Refactoring into classes and consistent functionality | ||
- Fixed Window spanning | ||
- Introduced Window Position and Desktop Icon functionality | ||
- Added Configuration dialog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# To Do | ||
|
||
- Move Window Positions Menu to Context Menu (Option?) | ||
- Move Saved Desktop Icon Positions Menu to Context Menu (Option?) | ||
- History list of Saved Window Positions | ||
- History list of Saved Desktop Icon Positions | ||
- Add icons to other context menu items | ||
- Support other config value types as required |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,58 @@ | ||
# WindowMenu | ||
AutoHotKey Window Menu for fine grained control of positioning | ||
# Window Extensions | ||
|
||
AutoHotKey Window Menu and Extensions for fine grained control of positioning | ||
|
||
## Basic Usage: | ||
|
||
To invoke: | ||
|
||
- Right click the right half of any Window Caption bar | ||
- Press `Win-W` | ||
|
||
Brings up the main menu. | ||
|
||
Selecting any of the entries applies to the target window, shown at the top of the menu. | ||
|
||
> Except: `Save / Restore Window Positions` and `Save / Restore Desktop Icons` | ||
![Main Menu](Docs/MainMenu.png) | ||
|
||
A Configuration dialog, available from the tray icon, allows controlling some aspects of the functionality. | ||
|
||
![Configuration Dialog](Docs/ConfigurationDialog.png) | ||
|
||
## Features | ||
|
||
### Optimum Positioning | ||
|
||
Window Extensions has menu options dedicated to Optimum positioning. | ||
|
||
There are 5 or so menu items that position windows with increasing indentation. (Configurable) | ||
|
||
### Window Control | ||
|
||
There are other options for controlling window positioning, eg: | ||
|
||
- Dedicated positions (Corners, columns, etc.) | ||
- Centring | ||
- Controlling transparency | ||
- Rolling up to just a title bar | ||
- Spanning multiple monitors if more than 1 monitor is available | ||
|
||
### Window Positions | ||
|
||
Window Extensions has the ability to save window positions and restore them on demand. | ||
|
||
This was originally intended as a remedy to the widely known Multi-Monitor bug in Windows that doesn't restore window positions when unlocking or activating / deactivating monitors. | ||
|
||
Window positions are saved to a file in the Users data folder (E.g. %APPDATA%\Roaming\WindowExtensions) | ||
|
||
### Desktop Icons | ||
|
||
Window Extensions has the ability to save desktop icon positions and restore them on demand. | ||
|
||
There are other tools available which are dedicated to this task, with perhaps more functionality. This feature was added to Window Extensions due to restrictions in being able to use these tools on some sites that I visit. | ||
|
||
Desktop Icon positions are saved to a file in the Users data folder (E.g. %APPDATA%\Roaming\WindowExtensions) | ||
|
||
## [To Do](Docs/todo.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters