Skip to content

Commit 3939221

Browse files
Merge pull request #70 from freshprogrammer/dev
Dev
2 parents 92372c3 + 06c11f3 commit 3939221

7 files changed

Lines changed: 92 additions & 69 deletions

File tree

12 KB
Binary file not shown.
0 Bytes
Binary file not shown.
16.1 KB
Binary file not shown.

FreshTools/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.7.5.0")]
36-
[assembly: AssemblyFileVersion("0.7.5.0")]
35+
[assembly: AssemblyVersion("0.7.6.0")]
36+
[assembly: AssemblyFileVersion("0.7.6.0")]

FreshTools/code/FreshTools.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public FreshTools()
2525
{
2626
Thread.CurrentThread.Name = "FreshTools Thread";
2727
Log.Init();
28-
Log.LogFileLogLevel = LogLevel.Verbose;
28+
Log.LogFileLogLevel = LogLevel.Verbose; // maybe be a setting in the script file
2929
Log.ConsoleLogLevel = LogLevel.Verbose;
3030
LoadConfig();
3131
UpdateRegistryForStartup();
@@ -55,6 +55,7 @@ public void InitializeNotificationIcon()
5555
freshToolsIcon = new Icon(Assembly.GetExecutingAssembly().GetManifestResourceStream("FreshTools.HDD_Idle.ico"));
5656
freshToolsNotifyIcon.Icon = freshToolsIcon;
5757
freshToolsNotifyIcon.DoubleClick += new EventHandler(this.IconDoubleClicked);
58+
//freshToolsNotifyIcon.MouseClick += new MouseEventHandler(this.IconDoubleClicked);
5859

5960
// Create all context menu items and add them to notification tray icon
6061
MenuItem windowManagerMenu = new MenuItem("Window Manager");
@@ -177,6 +178,7 @@ private void SaveConfig()
177178
settingsFile.variables.SetValue("MiscWindowHotKeysEnabled", "" + WindowManager.MiscHotKeysEnabled);
178179

179180
WindowManager.SaveSnapSizes(settingsFile);
181+
WindowManager.SaveTitleLists(settingsFile);
180182
settingsFile.SaveAs(configFilePath);
181183

182184
Log.I("Finisihed updating config");

FreshTools/code/Systems/WindowManager.cs

Lines changed: 86 additions & 65 deletions
Large diffs are not rendered by default.

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Fresh Tools
22
### Description
3-
v.0.7.5
3+
v.0.7.6
44

55
This is a collection of tools and code archives for doing usefull stuff that can be controlled via notification icon.
66

0 commit comments

Comments
 (0)