Skip to content

Commit

Permalink
Added app icon
Browse files Browse the repository at this point in the history
  • Loading branch information
codeAbinash committed Mar 21, 2023
1 parent 52d76c9 commit 94d4587
Show file tree
Hide file tree
Showing 8 changed files with 62 additions and 7 deletions.
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# specific to CodeBlocks IDE
*.layout
*.depend
# generated directories
bin/
obj/
index.js
**/test.**
bin
obj
.vscode
*.exe
test/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Mini - The CSS Minifier
A simple tool for minifying CSS files.

![Version](https://img.shields.io/github/v/release/codeabinash/mini?color=limegreen)
![Release Date](https://img.shields.io/github/release-date/codeabinash/mini?color=limegreen)
![Tag](https://img.shields.io/github/tag/codeabinash/mini?color=limegreen)

<img width='100%' src='https://codeAbinash.github.io/mini/images/logo.jpg'></img>


## Installation
- Download it for 64bit windows x64 from [here](https://github.com/codeAbinash/mini/releases/download/v1.0.0/mini_x64_64.exe).
- Download it for 64bit windows x64 from [here](https://github.com/codeAbinash/mini/releases/download/v1.0.0/mini.exe).

- Or compile it yourself for your platform from source code.
```bash
Expand Down
2 changes: 1 addition & 1 deletion define/define.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef mini_defined
#define mini_defined
#define APP_VERSION "1.0.0"
#define APP_VERSION "1.0.1"
#define APP_AUTHOR "codeAbinash"
#define GITHUB "https://github.com/codeAbinash/mini"
#endif
3 changes: 3 additions & 0 deletions mini.cbp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
<Add option="-fexceptions" />
</Compiler>
<Unit filename="main.cpp" />
<Unit filename="resources.rc">
<Option compilerVar="WINDRES" />
</Unit>
<Extensions />
</Project>
</CodeBlocks_project_file>
49 changes: 48 additions & 1 deletion mini.depend
Original file line number Diff line number Diff line change
@@ -1,4 +1,51 @@
# depslib dependency file v1.0
1584205420 source:d:\programming\git\mini\main.cpp
1679387232 source:d:\programming\git\mini\main.cpp
<cstring>
<iostream>
"./commands/commands.hpp"
"./main/minify.hpp"

1679385014 d:\programming\git\mini\commands\commands.hpp
"stdio.h"
"iostream"
"../define/define.hpp"
"../lib/colors.hpp"
"unordered_map"

1679076211 d:\programming\git\mini\define\define.hpp

1679308931 d:\programming\git\mini\lib\colors.hpp
<iostream>
<Windows.h>

1679392376 d:\programming\git\mini\main\minify.hpp
<iostream>
<vector>
"../lib/colors.hpp"
"./tokenizer.hpp"
"./tokenTypes.hpp"

1679391526 d:\programming\git\mini\main\tokenizer.hpp
<iostream>
<vector>
"./tokenTypes.hpp"
"../lib/colors.hpp"
"./minifySelector.hpp"
"./minifyProperty.hpp"
"./minifyValue.hpp"

1679312095 d:\programming\git\mini\main\tokentypes.hpp
"iostream"

1679378007 d:\programming\git\mini\main\minifyselector.hpp
"../lib/methods.hpp"

1679329678 d:\programming\git\mini\lib\methods.hpp

1679332115 d:\programming\git\mini\main\minifyproperty.hpp
"../lib/methods.hpp"

1679391062 d:\programming\git\mini\main\minifyvalue.hpp

1679393904 source:d:\programming\git\mini\resources.rc

2 changes: 1 addition & 1 deletion mini.layout
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<ActiveTarget name="Release" />
<File name="main.cpp" open="1" top="1" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
<Cursor>
<Cursor1 position="0" topLine="0" />
<Cursor1 position="222" topLine="0" />
</Cursor>
</File>
</CodeBlocks_layout_file>
1 change: 1 addition & 0 deletions resources.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
MAIN ICON "./resources/favicon.ico"
Binary file added resources/favicon.ico
Binary file not shown.

0 comments on commit 94d4587

Please sign in to comment.