Skip to content

Commit

Permalink
Update to v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lhaeger committed Mar 13, 2021
1 parent 1014f8f commit 88db5c1
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 7 deletions.
Binary file modified AutoRaise
Binary file not shown.
25 changes: 23 additions & 2 deletions AutoRaise.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
isa = PBXNativeTarget;
buildConfigurationList = C557DD571B988ED300E59BC9 /* Build configuration list for PBXNativeTarget "AutoRaise" */;
buildPhases = (
C5543C5325CFF41A0093A39E /* ShellScript */,
C557DD391B988ED300E59BC9 /* Sources */,
C557DD3A1B988ED300E59BC9 /* Frameworks */,
C557DD3B1B988ED300E59BC9 /* Resources */,
Expand Down Expand Up @@ -142,6 +143,26 @@
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
C5543C5325CFF41A0093A39E /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
);
outputFileListPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "g++ -O2 -Wall -fobjc-arc -o AutoRaise AutoRaise.mm -framework AppKit\n";
};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
C557DD391B988ED300E59BC9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
Expand Down Expand Up @@ -288,7 +309,7 @@
INFOPLIST_FILE = Launcher/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.10;
MARKETING_VERSION = 0.0.1;
MARKETING_VERSION = 1.2;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.brummelhook.AutoRaise;
PRODUCT_NAME = AutoRaise;
Expand All @@ -311,7 +332,7 @@
INFOPLIST_FILE = Launcher/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.10;
MARKETING_VERSION = 0.0.1;
MARKETING_VERSION = 1.2;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.brummelhook.AutoRaise;
PRODUCT_NAME = AutoRaise;
Expand Down
Binary file not shown.
8 changes: 5 additions & 3 deletions Launcher/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,13 @@ class AppDelegate: NSObject, NSApplicationDelegate {
// About
@IBOutlet weak var aboutText: NSTextField!
@IBOutlet weak var homePage: NSButton!


let appVersionString: String = Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as! String
let buildNumber: String = Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as! String

let appAbout = "AutoRaise\n" +
"Version 1.0, 2020-12-13\n\n" +
"©2020 Stefan Post, Lothar Haeger\n" +
"Version 1.2, 2021-02-07\n\n" +
"©2021 Stefan Post, Lothar Haeger\n" +
"Icons made by https://www.flaticon.com/authors/fr"

let homePageUrl = "https://github.com/sbmpost/AutoRaise"
Expand Down
4 changes: 2 additions & 2 deletions Launcher/Base.lproj/MainMenu.xib
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="17506" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="17701" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="17506"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="17701"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
Expand Down

0 comments on commit 88db5c1

Please sign in to comment.