Skip to content

Commit

Permalink
Add readme, license
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanslikesocool committed May 26, 2023
1 parent a6aeffc commit b706b89
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 9 deletions.
4 changes: 2 additions & 2 deletions AppLibrary.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@
CODE_SIGN_ENTITLEMENTS = AppLibrary/AppLibrary.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 393;
CURRENT_PROJECT_VERSION = 395;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = 838RGQ32CA;
ENABLE_HARDENED_RUNTIME = YES;
Expand Down Expand Up @@ -480,7 +480,7 @@
CODE_SIGN_ENTITLEMENTS = AppLibrary/AppLibrary.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 393;
CURRENT_PROJECT_VERSION = 395;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = 838RGQ32CA;
ENABLE_HARDENED_RUNTIME = YES;
Expand Down
14 changes: 7 additions & 7 deletions AppLibrary/Views/Settings/AppsSettingsPane.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ struct AppsSettingsPane: View {
}
.contextMenu(forSelectionType: String.self) { selections in
if !selections.isEmpty {
Button("Open") { }
.disabled(true)

Divider()

Button("Show in Finder") { }
.disabled(true)
// Button("Open") { }
// .disabled(true)
//
// Divider()
//
// Button("Show in Finder") { }
// .disabled(true)

Button("Reveal in Library") { showApps(selections) }
}
Expand Down
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 Ryan Boyer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# App Library
An app library for macOS.

![App Library Screenshots](~images/header.jpg)

Launchpad hasn't recieved any significant updates (or love) from Apple since it was released with Mac OS X Lion in 2011. App Library aims to fix that oversight.

## Features
- [x] Launch apps
- [x] Search installed apps
- [x] Hide and show apps in the library with a (right) click
- [x] Add and remove search scopes to look for installed apps
- [ ] Grid view
- [ ] Group by app category

## Known Issues
- App Library cannot be sandboxed due to the way it uses accessibility features to locate the dock icon.
- App Library currently only works with the dock on the bottom of the screen.

## Installation
App Library requires macOS 13.0 to run.\
Download and unzip the latest `App Library.app.zip` [release](https://github.com/ryanslikesocool/AppLibrary/releases/latest).\
Move the app to your Applications folder, and your dock!

## Acknowledgements
[Settings](https://github.com/sindresorhus/Settings) - Settings pane\
[Mouse Finder](https://github.com/neilsardesai/Mouse-Finder) - Dock icon location code
Binary file added ~images/header.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.

0 comments on commit b706b89

Please sign in to comment.