Compare commits

..

No commits in common. "ec0b9ddfb59bd616f39920ab887b5e2d5dfd3427" and "6985ae58b9d6601d0d4a6be251ba1ee31f8f0e19" have entirely different histories.

12 changed files with 8 additions and 78 deletions

View file

@ -1,53 +0,0 @@
name: Automatic Desktop Release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew desktop:dist
- name: Define env vars
id: vars
run: |
echo ::set-output name=jar_file::\
$(echo ./desktop/build/libs/*.jar)
echo ::set-output name=version::\
$(echo ./desktop/build/libs/*.jar | sed 's/.*-\([0-9.]\+\)\.jar/\1/')
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false
- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ steps.vars.outputs.jar_file }}
asset_name: Klooni-${{ steps.vars.outputs.version }}.jar
asset_content_type: application/java-archive

View file

@ -4,8 +4,6 @@ Play 1010! for free! Add your own themes! Contribute! Make the game yours!
[<img src="https://f-droid.org/badge/get-it-on.png" alt="Get it on F-Droid" height="80">](https://f-droid.org/app/dev.lonami.klooni)
(Desktop builds are available on the [releases page](https://github.com/LonamiWebs/Klooni1010/releases).)
This project is licensed under [GPLv3+](LICENSE).
**Table of contents**:

View file

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="dev.lonami.klooni"
android:installLocation="auto">
package="dev.lonami.klooni" >
<application
android:allowBackup="true"

View file

@ -21,8 +21,8 @@ android {
//noinspection MinSdkTooLow
minSdkVersion 8
targetSdkVersion 29
versionCode 860
versionName "0.8.6"
versionCode 840
versionName "0.8.4"
}
buildTypes {
release {

View file

@ -17,31 +17,15 @@
*/
package dev.lonami.klooni;
import android.os.Build;
import android.os.Bundle;
import android.os.StrictMode;
import com.badlogic.gdx.backends.android.AndroidApplication;
import com.badlogic.gdx.backends.android.AndroidApplicationConfiguration;
import java.lang.reflect.Method;
public class AndroidLauncher extends AndroidApplication {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// FIXME: Hack to allow us use the old way to share files
// https://stackoverflow.com/a/42437379/
if (Build.VERSION.SDK_INT >= 24) {
try {
Method m = StrictMode.class.getMethod("disableDeathOnFileUriExposure");
m.invoke(null);
} catch (Exception e) {
e.printStackTrace();
}
}
final AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();
final AndroidShareChallenge shareChallenge = new AndroidShareChallenge(this);
initialize(new Klooni(shareChallenge), config);

View file

@ -18,7 +18,7 @@ buildscript {
allprojects {
apply plugin: "eclipse"
version = '0.8.6'
version = '0.8.4'
ext {
appName = "1010! Klooni"
gdxVersion = '1.9.10'

View file

@ -323,7 +323,7 @@ class GameScreen implements Screen, InputProcessor, BinSerializable {
}
}
private static void deleteSave() {
private void deleteSave() {
final FileHandle handle = Gdx.files.local(SAVE_DAT_FILENAME);
if (handle.exists())
handle.delete();

View file

@ -26,6 +26,7 @@ import com.badlogic.gdx.scenes.scene2d.InputListener;
import com.badlogic.gdx.scenes.scene2d.Stage;
import com.badlogic.gdx.scenes.scene2d.ui.Table;
import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener;
import com.badlogic.gdx.utils.viewport.FitViewport;
import dev.lonami.klooni.Klooni;
import dev.lonami.klooni.actors.SoftButton;
@ -57,6 +58,7 @@ public class MainMenuScreen extends InputListener implements Screen {
Table table = new Table();
table.setFillParent(true);
stage.addActor(table);
stage.setViewport(new FitViewport(Klooni.GAME_WIDTH, Klooni.GAME_HEIGHT));
// Play button
final SoftButton playButton = new SoftButton(

View file

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View file

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View file

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB