diff --git a/README.md b/README.md index 8751b78..6ed8541 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,12 @@ We'd like to make sure this package lives on and is compatible with Umbraco v7+ Originally created by Dennis Milandt (http://it-future.dk/) for Umbraco v. 4-6, who generously shared the source code at the request of @HFloyd. https://our.umbraco.org/projects/backoffice-extensions/dictionary-dashboard +##Releases +Check the ['Releases' page on GitHub](https://github.com/hfloyd/DictionaryDashboardForUmbraco/releases). + ## Versions +### 1.1 +* Addition of search function to the "Edit" screen (thanks to Moshe Kariti for the contribution!) ### 1.0 * Fixed package install to support Umbraco 7 * Alphabetized the "Edit" screen drop-down diff --git a/Releases/DictionaryDashboard-1.1.zip b/Releases/DictionaryDashboard-1.1.zip new file mode 100644 index 0000000..45f679f Binary files /dev/null and b/Releases/DictionaryDashboard-1.1.zip differ diff --git a/src/DictionaryDashboard/Deployment/release.bat b/src/DictionaryDashboard/Deployment/release.bat index 2633cc5..b0d76f7 100644 --- a/src/DictionaryDashboard/Deployment/release.bat +++ b/src/DictionaryDashboard/Deployment/release.bat @@ -5,7 +5,7 @@ SET _projectDir=%_projectDir:###"=% SET _projectDir=%_projectDir:###=% :: Version number & Zip application -SET _versionNum="1.0" +SET _versionNum="1.1" SET _zipAppPath=7Zip :: DictionaryDashboard diff --git a/src/DictionaryDashboard/DictionaryDashboard.csproj b/src/DictionaryDashboard/DictionaryDashboard.csproj index 04eaca2..d02628c 100644 --- a/src/DictionaryDashboard/DictionaryDashboard.csproj +++ b/src/DictionaryDashboard/DictionaryDashboard.csproj @@ -275,7 +275,9 @@ IF $(ConfigurationName) == Release call "$(ProjectDir)Deployment\release.bat" "$(ProjectDir)" IF $(ConfigurationName) == Debug XCOPY "$(TargetDir)$(TargetName).*" "$(SolutionDir)..\..\build\" /Y -IF $(ConfigurationName) == Debug XCOPY "$(TargetDir)$(TargetName).*" "$(SolutionDir)..\..\..\Umb7TestSite\bin" /Y +IF $(ConfigurationName) == Debug XCOPY "$(ProjectDir)\Usercontrols\*.*" "$(SolutionDir)..\..\build\" /Y +IF $(ConfigurationName) == Debug XCOPY "$(TargetDir)$(TargetName).*" "$(SolutionDir)..\..\..\Umb7TestSite\bin" /Y +IF $(ConfigurationName) == Debug XCOPY "$(ProjectDir)\Usercontrols\*.ascx" "$(SolutionDir)..\..\..\Umb7TestSite\UserControls\DictionaryDashboard" /Y