File tree Expand file tree Collapse file tree
.vs/FreshTools/v15/Server/sqlite3 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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" ) ]
Original file line number Diff line number Diff 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" ) ;
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 11## Fresh Tools
22### Description
3- v.0.7.5
3+ v.0.7.6
44
55This is a collection of tools and code archives for doing usefull stuff that can be controlled via notification icon.
66
You can’t perform that action at this time.
0 commit comments