Skip to content

Commit

Permalink
github action
Browse files Browse the repository at this point in the history
  • Loading branch information
nimueller committed Jun 30, 2024
1 parent 23827ec commit 515d330
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: temurin
- name: Build
run: ./gradlew build

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Borderless Window [![Build Status](https://app.travis-ci.com/Nekeras/borderless.svg?branch=master)](https://travis-ci.com/Nekeras/borderless) [![](http://cf.way2muchnoise.eu/versions/borderless.svg)](https://www.curseforge.com/minecraft/mc-mods/borderless)
# Borderless Window [![Build Status](https://github.com/Nekeras/borderless/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/Nekeras/borderless) [![](http://cf.way2muchnoise.eu/versions/borderless.svg)](https://www.curseforge.com/minecraft/mc-mods/borderless)
This mod replaces the standard Minecraft fullscreen mode with a custom borderless windowed fullscreen. This is especially useful in a multi-monitor scenario to easily switch to a program on a different monitor. The default behavior of the Minecraft fullscreen would minimize the game, once it loses focus. With this mod, the window will not minimize when switching to another program. Furthermore, other windows can be placed on top of the Minecraft window.

This mod works great with Forge and OptiFine.
Expand Down

0 comments on commit 515d330

Please sign in to comment.