Skip to content

Commit

Permalink
Updating project details and .bat file
Browse files Browse the repository at this point in the history
Reverting to an improved (and fixed) version of "Portable with 7zip.bat". Added information to AssemblyInfo.cs and changes to Config.cs and both READMEs.
  • Loading branch information
genesistoxical committed May 20, 2023
1 parent b6f0b2f commit 98324ef
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README-es.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Para elegir que Drop Icons esté encima de todas las ventanas (Topmost) o no, da
## Instalador
Para compilar el instalador es necesario [Inno Setup](https://jrsoftware.org/isinfo.php), los archivos se encuentran en la carpeta [installer src](/installer%20src). Solo debes abrir el proyecto (Installer.iss) y compilarlo, a menos que desees hacer una modificación. Al finalizar, en la misma ubicación dejará una carpeta llamada Output.

**Portable.bat** permite comprimir en .zip rápidamente la versión portable y elimina archivos innecesarios. Solo funciona en Windows 11 y 10.
**Portable with 7zip.bat** permite comprimir en .zip rápidamente la versión portable y elimina archivos innecesarios. Únicamente funciona con [7zip](https://www.7-zip.org/).

Ambos .iss y .bat obtienen los archivos que son necesarios dentro de su carpeta y/o la carpeta Release (debido a las rutas relativas).

Expand Down Expand Up @@ -111,9 +111,9 @@ Drop Icons está basado en [Iconizer](https://github.com/willnode/Iconizer) bajo

`Versión 2.0.0` está desarrollada con Windows Presentation Foundation (WPF) para mejorar la interfaz e incluir esquinas redondeadas adaptables, según la versión del sistema operativo.

En este segundo lanzamiento se ha mejorado la ventana "Acerca de", el archivo Config.ini se ha modificado para usar solo el color del tema en HEX y no en RGB, además que se ha reemplazado el selector de color (para el tema) por uno mucho más moderno.
En este segundo lanzamiento se ha mejorado la ventana **Acerca de**, el archivo **Config.ini** se ha modificado para usar solo el color del tema HEX y no RGB, además que se ha reemplazado el selector de color (para el tema) por uno mucho más moderno.

Debido a este último cambio, se eliminó Colors.dat ya que no existe botón para guardar los personalizados, en su lugar hay una paleta de colores.
Debido a este último cambio, se eliminó **Colors.dat** ya que no existe botón para guardar los personalizados, en su lugar hay una paleta de colores.

## Licencia
**MIT License**
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ To choose whether Drop Icons is on top of all windows (Topmost) or not, right-cl
## Installer
To compile the installer you need [Inno Setup](https://jrsoftware.org/isinfo.php), the files are located in the [installer src](/installer%20src) folder. You just need to open the project (Installer.iss) and compile it, unless you want to make a change. When finished, it will leave a folder called Output in the same location.

**Portable.bat** allows you to quickly zip the portable version and remove unnecessary files. It only works on Windows 11 and 10.
**Portable with 7zip.bat** allows you to quickly zip the portable version and remove unnecessary files. It only works with [7zip](https://www.7-zip.org/).

Both .iss and .bat get the files that are needed within their folder and/or the Release folder (because of relative paths).

Expand Down Expand Up @@ -111,9 +111,9 @@ Drop Icons is based on [Iconizer](https://github.com/willnode/Iconizer) under [M

`Version 2.0.0` is developed with Windows Presentation Foundation (WPF) to improve the interface and include adaptive rounded corners, depending on the OS version.

In this second release the "About" window has been improved, the Config.ini file has been modified to use only the theme color in HEX and not in RGB, also the color picker (for the theme) has been replaced for a much more modern one.
In this second release the **About** window has been improved, the **Config.ini** file has been modified to use only theme color HEX and not RGB, also the color picker (for theme) has been replaced for a much more modern one.

Due to this last change, Colors.dat was removed since there is no button to save the custom ones, instead there is a color palette.
Due to this last change, **Colors.dat** was removed since there is no button to save the custom ones, instead there is a color palette.

## License
**MIT License**
Expand Down
2 changes: 1 addition & 1 deletion installer src/Installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
AppId={{A072B914-4E3D-4DAD-9F9B-D1D38965482E}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
VersionInfoVersion={#MyAppVersion}
VersionInfoVersion=2.0.0.0
AppPublisher={#MyAppPublisher}
AppCopyright={#MyAppPublisher} © 2022 - 2023
AppPublisherURL={#MyAppURL}
Expand Down
4 changes: 4 additions & 0 deletions installer src/Portable with 7zip.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
cd "..\src\DropIcons\bin\"
ren "Release" "Drop Icons"
"C:\Program Files\7-Zip\7z.exe" a "..\..\..\installer src\Output\Drop-Icons.zip" "Drop Icons\" -r -x!*.config -x!*.pdb -x!*.xml
ren "Drop Icons" "Release"
4 changes: 0 additions & 4 deletions installer src/Portable.bat

This file was deleted.

1 change: 0 additions & 1 deletion src/DropIcons/Classes/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System;
using System.Globalization;
using System.IO;
using System.Text.RegularExpressions;
using System.Threading;
using System.Windows;
using System.Windows.Controls;
Expand Down
4 changes: 2 additions & 2 deletions src/DropIcons/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;

Expand All @@ -10,7 +9,7 @@
[assembly: AssemblyTitle("Drop Icons")]
[assembly: AssemblyDescription("Utility to convert images to icons (.ico)")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCompany("Génesis Toxical")]
[assembly: AssemblyProduct("Drop Icons")]
[assembly: AssemblyCopyright("Génesis Toxical © 2022 - 2023")]
[assembly: AssemblyTrademark("")]
Expand Down Expand Up @@ -54,3 +53,4 @@
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
[assembly: NeutralResourcesLanguage("")]
[assembly: Guid("CE5E07BD-C4F7-4DF2-A1A2-C2D8686784B7")]

0 comments on commit 98324ef

Please sign in to comment.