Skip to content

Commit 28da7df

Browse files
committed
docs: 📝 add documents and update README
1 parent e9b8af5 commit 28da7df

File tree

2 files changed

+286
-0
lines changed

2 files changed

+286
-0
lines changed

.gitignore

Lines changed: 282 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,282 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,sublimetext,intellij,webstorm,windows,executable
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,sublimetext,intellij,webstorm,windows,executable
3+
4+
### Executable ###
5+
*.app
6+
*.bat
7+
*.cgi
8+
*.com
9+
*.exe
10+
*.gadget
11+
*.jar
12+
*.pif
13+
*.vb
14+
*.wsf
15+
16+
### Intellij ###
17+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
18+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
19+
20+
# User-specific stuff
21+
.idea/**/workspace.xml
22+
.idea/**/tasks.xml
23+
.idea/**/usage.statistics.xml
24+
.idea/**/dictionaries
25+
.idea/**/shelf
26+
27+
# AWS User-specific
28+
.idea/**/aws.xml
29+
30+
# Generated files
31+
.idea/**/contentModel.xml
32+
33+
# Sensitive or high-churn files
34+
.idea/**/dataSources/
35+
.idea/**/dataSources.ids
36+
.idea/**/dataSources.local.xml
37+
.idea/**/sqlDataSources.xml
38+
.idea/**/dynamic.xml
39+
.idea/**/uiDesigner.xml
40+
.idea/**/dbnavigator.xml
41+
42+
# Gradle
43+
.idea/**/gradle.xml
44+
.idea/**/libraries
45+
46+
# Gradle and Maven with auto-import
47+
# When using Gradle or Maven with auto-import, you should exclude module files,
48+
# since they will be recreated, and may cause churn. Uncomment if using
49+
# auto-import.
50+
# .idea/artifacts
51+
# .idea/compiler.xml
52+
# .idea/jarRepositories.xml
53+
# .idea/modules.xml
54+
# .idea/*.iml
55+
# .idea/modules
56+
# *.iml
57+
# *.ipr
58+
59+
# CMake
60+
cmake-build-*/
61+
62+
# Mongo Explorer plugin
63+
.idea/**/mongoSettings.xml
64+
65+
# File-based project format
66+
*.iws
67+
68+
# IntelliJ
69+
out/
70+
71+
# mpeltonen/sbt-idea plugin
72+
.idea_modules/
73+
74+
# JIRA plugin
75+
atlassian-ide-plugin.xml
76+
77+
# Cursive Clojure plugin
78+
.idea/replstate.xml
79+
80+
# SonarLint plugin
81+
.idea/sonarlint/
82+
83+
# Crashlytics plugin (for Android Studio and IntelliJ)
84+
com_crashlytics_export_strings.xml
85+
crashlytics.properties
86+
crashlytics-build.properties
87+
fabric.properties
88+
89+
# Editor-based Rest Client
90+
.idea/httpRequests
91+
92+
# Android studio 3.1+ serialized cache file
93+
.idea/caches/build_file_checksums.ser
94+
95+
### Intellij Patch ###
96+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
97+
98+
# *.iml
99+
# modules.xml
100+
# .idea/misc.xml
101+
# *.ipr
102+
103+
# Sonarlint plugin
104+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
105+
.idea/**/sonarlint/
106+
107+
# SonarQube Plugin
108+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
109+
.idea/**/sonarIssues.xml
110+
111+
# Markdown Navigator plugin
112+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
113+
.idea/**/markdown-navigator.xml
114+
.idea/**/markdown-navigator-enh.xml
115+
.idea/**/markdown-navigator/
116+
117+
# Cache file creation bug
118+
# See https://youtrack.jetbrains.com/issue/JBR-2257
119+
.idea/$CACHE_FILE$
120+
121+
# CodeStream plugin
122+
# https://plugins.jetbrains.com/plugin/12206-codestream
123+
.idea/codestream.xml
124+
125+
# Azure Toolkit for IntelliJ plugin
126+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
127+
.idea/**/azureSettings.xml
128+
129+
### SublimeText ###
130+
# Cache files for Sublime Text
131+
*.tmlanguage.cache
132+
*.tmPreferences.cache
133+
*.stTheme.cache
134+
135+
# Workspace files are user-specific
136+
*.sublime-workspace
137+
138+
# Project files should be checked into the repository, unless a significant
139+
# proportion of contributors will probably not be using Sublime Text
140+
# *.sublime-project
141+
142+
# SFTP configuration file
143+
sftp-config.json
144+
sftp-config-alt*.json
145+
146+
# Package control specific files
147+
Package Control.last-run
148+
Package Control.ca-list
149+
Package Control.ca-bundle
150+
Package Control.system-ca-bundle
151+
Package Control.cache/
152+
Package Control.ca-certs/
153+
Package Control.merged-ca-bundle
154+
Package Control.user-ca-bundle
155+
oscrypto-ca-bundle.crt
156+
bh_unicode_properties.cache
157+
158+
# Sublime-github package stores a github token in this file
159+
# https://packagecontrol.io/packages/sublime-github
160+
GitHub.sublime-settings
161+
162+
### VisualStudioCode ###
163+
.vscode/*
164+
!.vscode/settings.json
165+
!.vscode/tasks.json
166+
!.vscode/launch.json
167+
!.vscode/extensions.json
168+
!.vscode/*.code-snippets
169+
170+
# Local History for Visual Studio Code
171+
.history/
172+
173+
# Built Visual Studio Code Extensions
174+
*.vsix
175+
176+
### VisualStudioCode Patch ###
177+
# Ignore all local history of files
178+
.history
179+
.ionide
180+
181+
### WebStorm ###
182+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
183+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
184+
185+
# User-specific stuff
186+
187+
# AWS User-specific
188+
189+
# Generated files
190+
191+
# Sensitive or high-churn files
192+
193+
# Gradle
194+
195+
# Gradle and Maven with auto-import
196+
# When using Gradle or Maven with auto-import, you should exclude module files,
197+
# since they will be recreated, and may cause churn. Uncomment if using
198+
# auto-import.
199+
# .idea/artifacts
200+
# .idea/compiler.xml
201+
# .idea/jarRepositories.xml
202+
# .idea/modules.xml
203+
# .idea/*.iml
204+
# .idea/modules
205+
# *.iml
206+
# *.ipr
207+
208+
# CMake
209+
210+
# Mongo Explorer plugin
211+
212+
# File-based project format
213+
214+
# IntelliJ
215+
216+
# mpeltonen/sbt-idea plugin
217+
218+
# JIRA plugin
219+
220+
# Cursive Clojure plugin
221+
222+
# SonarLint plugin
223+
224+
# Crashlytics plugin (for Android Studio and IntelliJ)
225+
226+
# Editor-based Rest Client
227+
228+
# Android studio 3.1+ serialized cache file
229+
230+
### WebStorm Patch ###
231+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
232+
233+
# *.iml
234+
# modules.xml
235+
# .idea/misc.xml
236+
# *.ipr
237+
238+
# Sonarlint plugin
239+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
240+
241+
# SonarQube Plugin
242+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
243+
244+
# Markdown Navigator plugin
245+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
246+
247+
# Cache file creation bug
248+
# See https://youtrack.jetbrains.com/issue/JBR-2257
249+
250+
# CodeStream plugin
251+
# https://plugins.jetbrains.com/plugin/12206-codestream
252+
253+
# Azure Toolkit for IntelliJ plugin
254+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
255+
256+
### Windows ###
257+
# Windows thumbnail cache files
258+
Thumbs.db
259+
Thumbs.db:encryptable
260+
ehthumbs.db
261+
ehthumbs_vista.db
262+
263+
# Dump file
264+
*.stackdump
265+
266+
# Folder config file
267+
[Dd]esktop.ini
268+
269+
# Recycle Bin used on file shares
270+
$RECYCLE.BIN/
271+
272+
# Windows Installer files
273+
*.cab
274+
*.msi
275+
*.msix
276+
*.msm
277+
*.msp
278+
279+
# Windows shortcuts
280+
*.lnk
281+
282+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,sublimetext,intellij,webstorm,windows,executable

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Reset Windows Update Tool - Lite
22

3+
[![GitHub Release](https://img.shields.io/github/v/release/wureset-tools/script-wureset-lite)](https://github.com/wureset-tools/script-wureset-lite/releases/tag/v1.0.0)
4+
[![GitHub Release Date](https://img.shields.io/github/release-date/wureset-tools/script-wureset-lite)](https://github.com/wureset-tools/script-wureset-lite/releases/tag/v1.0.0)
5+
[![GitHub license](https://img.shields.io/github/license/wureset-tools/script-wureset-lite)](./LICENSE)
6+
37
## Description:
48

59
This script only restores the Windows Update components (lite version).

0 commit comments

Comments
 (0)