diff options
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | android/app/build.gradle | 8 | ||||
| -rw-r--r-- | android/app/src/main/java/dev/ediblemonad/daftlauncher/MainActivity.kt (renamed from android/app/src/main/java/dev/ediblemonad/owynlauncher/MainActivity.kt) | 4 | ||||
| -rw-r--r-- | android/app/src/main/java/dev/ediblemonad/daftlauncher/MainApplication.kt (renamed from android/app/src/main/java/dev/ediblemonad/owynlauncher/MainApplication.kt) | 2 | ||||
| -rw-r--r-- | android/app/src/main/res/values/strings.xml | 2 | ||||
| -rw-r--r-- | android/settings.gradle | 2 | ||||
| -rw-r--r-- | app.json | 4 | ||||
| -rw-r--r-- | ios/OwynLauncherRewrite/Info.plist | 2 | ||||
| -rw-r--r-- | ios/OwynLauncherRewrite/LaunchScreen.storyboard | 2 | ||||
| -rw-r--r-- | ios/Podfile | 4 | ||||
| -rw-r--r-- | justfile | 8 | ||||
| -rw-r--r-- | package.json | 2 |
12 files changed, 24 insertions, 22 deletions
@@ -1,5 +1,5 @@ -# Owyn launcher -Owyn (_Only What You Need_) launcher is a minimal launcher for android. +# Daft launcher +Daft (_dumb as fuck tech_) launcher is a minimal launcher for android. ## What I need from my launcher... @@ -17,5 +17,5 @@ Owyn (_Only What You Need_) launcher is a minimal launcher for android. ## Install Not available on play store and never will be. -Grab an apk from the [releases section](https://github.com/phenax/owyn-launcher/releases) and install it. +Grab an apk from the [releases section](https://github.com/makedaft/daft-launcher/releases) and install it. diff --git a/android/app/build.gradle b/android/app/build.gradle index 7ade26d..00024de 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -80,9 +80,9 @@ android { buildToolsVersion rootProject.ext.buildToolsVersion compileSdk rootProject.ext.compileSdkVersion - namespace "dev.ediblemonad.owynlauncher" + namespace "dev.ediblemonad.daftlauncher" defaultConfig { - applicationId "dev.ediblemonad.owynlauncher" + applicationId "dev.ediblemonad.daftlauncher" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 @@ -97,9 +97,9 @@ android { } release { storeFile file("release.keystore") - storePassword localProperties.getProperty('OWYN_STORE_PASS') + storePassword localProperties.getProperty('DAFT_STORE_PASS') keyAlias 'releasekey' - keyPassword localProperties.getProperty('OWYN_KEY_PASS') + keyPassword localProperties.getProperty('DAFT_KEY_PASS') } } diff --git a/android/app/src/main/java/dev/ediblemonad/owynlauncher/MainActivity.kt b/android/app/src/main/java/dev/ediblemonad/daftlauncher/MainActivity.kt index c72d8ee..859da1e 100644 --- a/android/app/src/main/java/dev/ediblemonad/owynlauncher/MainActivity.kt +++ b/android/app/src/main/java/dev/ediblemonad/daftlauncher/MainActivity.kt @@ -1,4 +1,4 @@ -package dev.ediblemonad.owynlauncher +package dev.ediblemonad.daftlauncher import com.facebook.react.ReactActivity import com.facebook.react.ReactActivityDelegate @@ -11,7 +11,7 @@ class MainActivity : ReactActivity() { * Returns the name of the main component registered from JavaScript. This is used to schedule * rendering of the component. */ - override fun getMainComponentName(): String = "OwynLauncherRewrite" + override fun getMainComponentName(): String = "DaftLauncherRewrite" /** * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate] diff --git a/android/app/src/main/java/dev/ediblemonad/owynlauncher/MainApplication.kt b/android/app/src/main/java/dev/ediblemonad/daftlauncher/MainApplication.kt index 34763cb..a527750 100644 --- a/android/app/src/main/java/dev/ediblemonad/owynlauncher/MainApplication.kt +++ b/android/app/src/main/java/dev/ediblemonad/daftlauncher/MainApplication.kt @@ -1,4 +1,4 @@ -package dev.ediblemonad.owynlauncher +package dev.ediblemonad.daftlauncher import android.app.Application import com.facebook.react.PackageList diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml index 4890b05..c42b001 100644 --- a/android/app/src/main/res/values/strings.xml +++ b/android/app/src/main/res/values/strings.xml @@ -1,3 +1,3 @@ <resources> - <string name="app_name">Owyn Launcher</string> + <string name="app_name">Daft Launcher</string> </resources> diff --git a/android/settings.gradle b/android/settings.gradle index 61dfb87..b411c7d 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,4 +1,4 @@ -rootProject.name = 'OwynLauncherRewrite' +rootProject.name = 'DaftLauncherRewrite' apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) include ':app' includeBuild('../node_modules/@react-native/gradle-plugin') @@ -1,4 +1,4 @@ { - "name": "OwynLauncherRewrite", - "displayName": "Owyn Launcher" + "name": "DaftLauncherRewrite", + "displayName": "Daft Launcher" } diff --git a/ios/OwynLauncherRewrite/Info.plist b/ios/OwynLauncherRewrite/Info.plist index bbb92c1..acc26b6 100644 --- a/ios/OwynLauncherRewrite/Info.plist +++ b/ios/OwynLauncherRewrite/Info.plist @@ -5,7 +5,7 @@ <key>CFBundleDevelopmentRegion</key> <string>en</string> <key>CFBundleDisplayName</key> - <string>OwynLauncherRewrite</string> + <string>DaftLauncherRewrite</string> <key>CFBundleExecutable</key> <string>$(EXECUTABLE_NAME)</string> <key>CFBundleIdentifier</key> diff --git a/ios/OwynLauncherRewrite/LaunchScreen.storyboard b/ios/OwynLauncherRewrite/LaunchScreen.storyboard index 77ee3a4..b1af712 100644 --- a/ios/OwynLauncherRewrite/LaunchScreen.storyboard +++ b/ios/OwynLauncherRewrite/LaunchScreen.storyboard @@ -16,7 +16,7 @@ <rect key="frame" x="0.0" y="0.0" width="375" height="667"/> <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> <subviews> - <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="OwynLauncherRewrite" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb"> + <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="DaftLauncherRewrite" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb"> <rect key="frame" x="0.0" y="202" width="375" height="43"/> <fontDescription key="fontDescription" type="boldSystem" pointSize="36"/> <nil key="highlightedColor"/> diff --git a/ios/Podfile b/ios/Podfile index 214978d..3a29426 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -14,7 +14,7 @@ if linkage != nil use_frameworks! :linkage => linkage.to_sym end -target 'OwynLauncherRewrite' do +target 'DaftLauncherRewrite' do config = use_native_modules! use_react_native!( @@ -23,7 +23,7 @@ target 'OwynLauncherRewrite' do :app_path => "#{Pod::Config.instance.installation_root}/.." ) - target 'OwynLauncherRewriteTests' do + target 'DaftLauncherRewriteTests' do inherit! :complete # Pods for testing end @@ -1,5 +1,7 @@ set positional-arguments +default: dev + dev: bun start @@ -22,12 +24,12 @@ install: fi; open: - adb shell am start -a android.intent.action.MAIN -n dev.ediblemonad.owynlauncher/.MainActivity; + adb shell am start -a android.intent.action.MAIN -n dev.ediblemonad.daftlauncher/.MainActivity; android-setup: sdkmanager "$MY_ANDROID_AVD_PKG" && \ - avdmanager create avd -n owyn -k "$MY_ANDROID_AVD_PKG" --device 26 --force; + avdmanager create avd -n daft -k "$MY_ANDROID_AVD_PKG" --device 26 --force; emu: - emulator -gpu swiftshader_indirect @owyn + emulator -gpu swiftshader_indirect @daft diff --git a/package.json b/package.json index b7280fc..bf6bb32 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "OwynLauncherRewrite", + "name": "DaftLauncherRewrite", "version": "0.0.1", "private": true, "scripts": { |
