Skip to content

Commit 5229e29

Browse files
committed
Initial commit for version 1.21.11
0 parents  commit 5229e29

30 files changed

Lines changed: 1053 additions & 0 deletions

β€Ž.github/workflows/build.ymlβ€Ž

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Automatically build the project and run any configured tests for every push
2+
# and submitted pull request. This can help catch issues that only occur on
3+
# certain platforms or Java versions, and provides a first line of defence
4+
# against bad commits.
5+
6+
name: build
7+
on: [ pull_request, push ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-24.04
12+
steps:
13+
- name: checkout repository
14+
uses: actions/checkout@v4
15+
- name: validate gradle wrapper
16+
uses: gradle/actions/wrapper-validation@v4
17+
- name: setup jdk
18+
uses: actions/setup-java@v4
19+
with:
20+
java-version: '24'
21+
distribution: 'zulu'
22+
java-package: 'jdk'
23+
- name: make gradle wrapper executable
24+
run: chmod +x ./gradlew
25+
- name: build
26+
run: ./gradlew build
27+
- name: capture build artifacts
28+
uses: actions/upload-artifact@v4
29+
with:
30+
name: Artifacts
31+
path: build/libs/

β€Ž.gitignoreβ€Ž

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# gradle
2+
3+
.gradle/
4+
build/
5+
out/
6+
classes/
7+
8+
# eclipse
9+
10+
*.launch
11+
12+
# idea
13+
14+
.idea/
15+
*.iml
16+
*.ipr
17+
*.iws
18+
19+
# vscode
20+
21+
.settings/
22+
.vscode/
23+
bin/
24+
.classpath
25+
.project
26+
27+
# macos
28+
29+
*.DS_Store
30+
31+
# fabric
32+
33+
run/
34+
35+
# java
36+
37+
hs_err_*.log
38+
replay_*.log
39+
*.hprof
40+
*.jfr

β€ŽLICENSEβ€Ž

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2024 I-No-oNe
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

β€ŽREADME.mdβ€Ž

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# View Model Mod By I-No-oNe
2+
-----------------
3+
4+
> [!NOTE]
5+
> From now releases will be available **ONLY** on [**Modrinth**](https://modrinth.com/mod/no-ones-view-model), [**Github Releases**](https://github.com/I-No-oNe/View-Model/releases) won't get any updates, if you curious why, read about it [**here**](assets/github_explanation.png).
6+
7+
-----------------
8+
```yml
9+
How to use:
10+
# Install the latest version and install Midnight Config Lib.
11+
# Press the keybind V on your keyboard to open the GUI.
12+
# Set the sizes as you want with the sliders.
13+
# Turn on/off the settings as you want.
14+
```
15+
--------------------
16+
17+
## Showcase:
18+
19+
### GUI:
20+
21+
| **Transforms** | **Swing Settings** |
22+
|:-----------------------------------------------:|:------------------------------------------------:|
23+
| <img src="assets/first_screen.png" width="400"> | <img src="assets/second_screen.png" width="400"> |
24+
| **Consumables** | **Misc** |
25+
| <img src="assets/third_screen.png" width="400"> | <img src="assets/fourth_screen.png" width="400"> |
26+
27+
### Setting The Keybind:
28+
![Screenshot showcasing the View Model Keybind Open Menu set to V](assets/keybind.png)
29+
--------------------
30+
### Mod Menu Integration:
31+
![Mod Menu Integration](assets/accesses_via_modmenu.png)
32+
33+
-----------------
34+
35+
> [!WARNING]
36+
> **BE AWARE THAT YOU MUST DOWNLOAD [**MIDNIGHT LIB**](https://modrinth.com/mod/midnightlib) IN ORDER TO
37+
USE THE MOD!**
38+
39+
------------------
40+
**thank you for using the mod** πŸ™
41+
1.98 MB
Loading

β€Žassets/example.pngβ€Ž

745 KB
Loading

β€Žassets/first_screen.pngβ€Ž

1.95 MB
Loading

β€Žassets/fourth_screen.pngβ€Ž

2.08 MB
Loading
37.7 KB
Loading

β€Žassets/keybind.pngβ€Ž

1.54 MB
Loading

0 commit comments

Comments
Β (0)