-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathREADME.html
More file actions
237 lines (226 loc) · 7.25 KB
/
README.html
File metadata and controls
237 lines (226 loc) · 7.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>DEV-tools Scoop Bucket</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin,cyrillic');
/* Base reset & midnight palette */
html {
background: #0a0c10;
}
body {
margin: 0;
padding: 0;
background: #0a0c10;
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.6;
color: #ddd;
}
a {
color: #ffcc66;
text-decoration: none;
}
a:hover, a:focus {
text-decoration: underline;
color: #ffeb99;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.2em;
margin-bottom: 0.6em;
font-weight: 700;
line-height: 1.2;
color: #f0f0f0;
letter-spacing: -0.02em;
}
h1 { font-size: 2.2rem; border-bottom: 1px solid #2a2e36; padding-bottom: 0.2em; }
h2 { font-size: 1.8rem; border-bottom: 1px solid #2a2e36; padding-bottom: 0.2em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; color: #bbb; }
p, blockquote, ul, ol, dl, table, pre {
margin: 0 0 1.2em 0;
}
hr {
border: 0;
height: 1px;
background: #2a2e36;
margin: 2em 0;
}
blockquote {
border-left: 4px solid #ffcc66;
padding: 0.5em 1em;
background: rgba(255,204,102,0.05);
color: #ccc;
font-style: normal;
margin-left: 0;
margin-right: 0;
}
code, pre {
font-family: 'Menlo', 'Consolas', 'Monaco', 'Courier New', monospace;
background: #15171c;
border-radius: 6px;
font-size: 0.9rem;
}
code {
padding: 0.2em 0.4em;
background: #1e2128;
color: #ffd966;
white-space: nowrap;
}
pre {
padding: 1rem;
overflow-x: auto;
line-height: 1.45;
background: #0d0f12;
border: 1px solid #2a2e36;
border-radius: 8px;
margin: 1.2em 0;
}
pre code {
background: transparent;
padding: 0;
color: #e6e6e6;
white-space: pre;
word-break: normal;
word-wrap: normal;
}
/* tables */
table {
border-collapse: collapse;
width: 100%;
display: block;
overflow-x: auto;
}
th, td {
border: 1px solid #2f3540;
padding: 0.6em 1em;
text-align: left;
}
th {
background: #1a1d24;
font-weight: 700;
color: #ffdd99;
}
tr:nth-child(even) {
background-color: #0f1117;
}
/* lists */
ul, ol {
padding-left: 1.8em;
}
li {
margin: 0.3em 0;
}
/* images */
img {
max-width: 100%;
height: auto;
border-radius: 8px;
background: #1e2128;
display: inline-block;
vertical-align: middle;
}
/* badge & inline markdown fidelity */
.badge-container {
margin: 0.5em 0;
}
/* keep everything exactly as provided, no character lost */
.markdown-body {
max-width: 1000px;
margin: 0 auto;
padding: 2rem 1.5rem 3rem;
background: #0a0c10;
}
/* preserve all spacing, line breaks from source */
.preserve-markdown {
white-space: normal;
word-wrap: break-word;
}
/* custom inline styling for blockquote, note, etc */
.note-warning {
border-left-color: #ffaa33;
}
hr {
background: #333a44;
}
/* Better code scroll */
pre::-webkit-scrollbar {
height: 8px;
background: #1e2128;
}
pre::-webkit-scrollbar-thumb {
background: #4a5262;
border-radius: 6px;
}
/* footer / credits optional, but theme vibe */
.author {
margin-top: 4rem;
font-size: 0.75rem;
text-align: center;
color: #5c6575;
border-top: 1px solid #23272f;
padding-top: 1.5rem;
}
@media (max-width: 700px) {
.markdown-body {
padding: 1.2rem 1rem;
}
h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
}
</style>
</head>
<body>
<div class="markdown-body">
<div class="preserve-markdown">
<p><a href="https://github.com/anderlli0053/DEV-tools/actions/workflows/smart-updater.yml"><img src="https://github.com/anderlli0053/DEV-tools/actions/workflows/smart-updater.yml/badge.svg" alt="Smart Updater" /></a></p>
<h1>📦 DEV-tools Scoop Bucket</h1>
<p><img src="https://user-images.githubusercontent.com/22171451/210179607-af7ce307-de94-40cd-8975-b3f18d0cfdda.png" alt="Wooden Box Banner" /></p>
<blockquote>
<p><strong>Note:</strong> This repository has evolved from development tools into a "sanctuary" for various applications - apps, games, and more!</p>
</blockquote>
<h2>🚀 Quick Start</h2>
<p>Add this bucket to your Scoop installation:</p>
<pre><code>scoop bucket add anderlli0053_DEV-tools https://github.com/anderlli0053/DEV-tools.git
</code></pre>
<p>Pro Tip: Quick install everything at once:</p>
<pre><code>scoop bucket add anderlli0053_DEV-tools https://github.com/anderlli0053/DEV-tools.git && scoop update && scoop install <app-name>
</code></pre>
<p>📥 Installation Example</p>
<pre><code>scoop install gdevelop
</code></pre>
<p>Or simply:</p>
<pre><code>scoop install <any-app-name-in-bucket>
</code></pre>
<h2>🔄 Maintenance</h2>
<ul>
<li>Update the bucket: <code>scoop update</code></li>
<li>View all Scoop commands: Just type <code>scoop</code> and press Enter</li>
</ul>
<h2>📋 Requirements</h2>
<ul>
<li>Scoop installed and in your system PATH</li>
<li>Any command-line interface (CMD, PowerShell, etc.)</li>
</ul>
<h2>🏗️ CI/CD Status</h2>
<p>This bucket is automatically maintained using GitHub's CI/CD pipeline:</p>
<h2>ℹ️ About</h2>
<p>What started as a personal collection of manifests for development tools has grown into a comprehensive container for all kinds of software. From utilities to games, if you can name it, it might be here!</p>
<h2>🔗 Resources</h2>
<ul>
<li><a href="https://scoop.sh/">Scoop search engine</a></li>
<li><a href="https://github.com/ScoopInstaller/Scoop/">Official Scoop repository</a></li>
</ul>
<p>📦</p>
<p><em>Brought to you by Andrew Poženel</em></p>
</div>
<div class="author">
<span>Brought to you by Andrew Poženel</span>
</div>
</div>
</body>
</html>