Skip to content

Commit

Permalink
final build (1.4.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
little-apps committed Apr 1, 2010
1 parent 0bcdf58 commit 80bfb00
Show file tree
Hide file tree
Showing 26 changed files with 148 additions and 2,240 deletions.
Binary file modified Little Registry Cleaner.suo
Binary file not shown.
5 changes: 4 additions & 1 deletion Little Registry Cleaner/ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -357,4 +357,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
- Scans HKCU\Software\Microsoft\Windows\ShellNoRoam\MUICache for invalid file references
- Programs using the Windows Installer can be uninstalled using the uninstall manager
- Uninstall manager is compatible with 64-bit systems
- Creates first system restore when LRC is install instead when its starts
- Creates first system restore when LRC is installed instead of when it first starts
- Updated assembly information

+ Version 1.4.1 Released
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Common Tools")]
[assembly: AssemblyCopyright("Copyright © 2008")]
[assembly: AssemblyCopyright("Copyright © 2008-2010")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
4 changes: 2 additions & 2 deletions Little Registry Cleaner/Little Registry Cleaner.sds
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<desktop scan="43" scanned="20100328215005" built="20100328215329" lang="lt" pane="TLogPane" viewmode="1" col="23" row="mainFirstTimeRestorePoint">
<desktop scan="46" scanned="20100329221359" built="20100330211221" lang="el" pane="TLogPane" workspace="2" viewmode="1" col="9" row="programNoCT">
<language id="en" autoime="0" autokeyboard="0"/>
<language id="fr" autoime="0" autokeyboard="0"/>
<language id="es" autoime="0" autokeyboard="0"/>
Expand All @@ -21,7 +21,7 @@
<language id="hu" autoime="0" autokeyboard="0"/>
<language id="lt" autoime="0" autokeyboard="0"/>
<triggers>
<item class="TValidateTrigger" position="5"/>
<item class="TValidateTrigger" position="2"/>
</triggers>
<sheet>
<columns>
Expand Down
99 changes: 47 additions & 52 deletions Little Registry Cleaner/Little Registry Cleaner.slp

Large diffs are not rendered by default.

98 changes: 63 additions & 35 deletions Little Registry Cleaner/Little Registry Cleaner.~slp

Large diffs are not rendered by default.

24 changes: 16 additions & 8 deletions Little Registry Cleaner/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,15 +246,14 @@ private void Main_Shown(object sender, EventArgs e)
// Increase number to program starts
Properties.Settings.Default.nProgramStarts += 1;

/***********************************************************************************/
/* CHANGING OR REMOVING THE CODE BELOW WILL VIOLATE THE GNU GENERAL PUBLIC LICENSE */
/***********************************************************************************************************/
/* THE CODE BELOW IS LICENSED UNDER THE CREATIVE COMMONS ATTRIBUTION NON-COMMERCIAL NO DERIVATIVES LICENSE */
if (Properties.Settings.Default.nProgramStarts == 1)
{
MessageBox.Show(this, Properties.Resources.mainFreeWareProgram, "Little Registry Cleaner", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
/* CHANGING OR REMOVING THE CODE ABOVE WILL VIOLATE THE GNU GENERAL PUBLIC LICENSE */
/***********************************************************************************/

/* THE CODE ABOVE IS LICENSED UNDER THE CREATIVE COMMONS ATTRIBUTION NON-COMMERCIAL NO DERIVATIVES LICENSE */
/***********************************************************************************************************/
}

private void treeView1_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
Expand Down Expand Up @@ -487,9 +486,6 @@ private void ViewInRegEdit(object sender, EventArgs e)
RegEditGo.GoTo(strSubKey, strValueName);
}
}




#endregion

Expand Down Expand Up @@ -725,6 +721,18 @@ private void SetCurrentLang()
lang = (ToolStripMenuItem)this.languageToolStripMenuItem.DropDownItems["vietnameseToolStripMenuItem"];
break;

case "hu":
lang = (ToolStripMenuItem)this.languageToolStripMenuItem.DropDownItems["hungarianToolStripMenuItem"];
break;

case "tr":
lang = (ToolStripMenuItem)this.languageToolStripMenuItem.DropDownItems["turkishToolStripMenuItem"];
break;

case "lt":
lang = (ToolStripMenuItem)this.languageToolStripMenuItem.DropDownItems["lithuaniaToolStripMenuItem"];
break;

case "zh":
{
if (ci.EnglishName == "Chinese (Simplified)")
Expand Down
4 changes: 2 additions & 2 deletions Little Registry Cleaner/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Little Registry Cleaner")]
[assembly: AssemblyDescription("Open source registry cleaner")]
[assembly: AssemblyDescription("Free and open source that is designed to cleanup Microsoft Windows Registry")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Little Apps (http://www.littleapps.co.cc)")]
[assembly: AssemblyProduct("Little Registry Cleaner")]
[assembly: AssemblyCopyright("Copyright © Little Apps 2008-2009")]
[assembly: AssemblyCopyright("Copyright © Little Apps 2008-2010")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
2 changes: 1 addition & 1 deletion Little Registry Cleaner/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Little Registry Cleaner/Properties/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<Value Profile="(Default)">True</Value>
</Setting>
<Setting Name="bPortableEdition" Type="System.Boolean" Scope="Application">
<Value Profile="(Default)">True</Value>
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="bOptionsAutoRepair" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
Expand Down
19 changes: 10 additions & 9 deletions Little Registry Cleaner/Release-TODO.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
2. Make sure version is set right
3. Build solution
4. Build resources and copy them to nsis directory
5. Copy executable and configuration to NSIS directory and PE directory
6. Update changes in changelog.txt and Little Registry Cleaner.chm
7. If files are added, make sure NSIS file is updated
8. Compile and test NSIS
9. Compress source code using zip (example: Little_Registry_Cleaner_mm_dd_yyyy.zip)
10. Remove output and bazaar directories from zip file
11. Add Files and commit build to bazaar vcs
12. Upload source code and compiled NSIS to sourceforge
13. Update update.xml on sourceforge site
5. Compile seperate builds for portable edition and NSIS
6. Copy executable and configuration to NSIS directory and PE directory
7. Update changes in changelog.txt, Little Registry Cleaner.chm and website
8. If files are added, make sure NSIS file is updated
9. Compile and test NSIS
10. Compress source code using zip (example: Little_Registry_Cleaner_Source_mm_dd_yyyy.zip)
11. Remove output and bazaar directories from zip file
12. Add Files and commit build to bazaar vcs
13. Upload source code and compiled NSIS to sourceforge
14. Update update.xml on sourceforge site
Binary file removed Little Registry Cleaner/Reports/BlueBall.gif
Binary file not shown.
Binary file removed Little Registry Cleaner/Reports/GreenBall.gif
Binary file not shown.
Loading

0 comments on commit 80bfb00

Please sign in to comment.