Skip to content

Commit 6344ca0

Browse files
committed
fix default.toml pointing to old website
1 parent cb9c5dc commit 6344ca0

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

EligereApp.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@
307307
CODE_SIGN_IDENTITY = "Apple Development";
308308
CODE_SIGN_STYLE = Automatic;
309309
COMBINE_HIDPI_IMAGES = YES;
310-
CURRENT_PROJECT_VERSION = 31;
310+
CURRENT_PROJECT_VERSION = 32;
311311
DEVELOPMENT_TEAM = QAW83JAP7C;
312312
ENABLE_HARDENED_RUNTIME = YES;
313313
ENABLE_PREVIEWS = YES;
@@ -322,7 +322,7 @@
322322
"@executable_path/../Frameworks",
323323
);
324324
MACOSX_DEPLOYMENT_TARGET = 15.4;
325-
MARKETING_VERSION = 2.0.0;
325+
MARKETING_VERSION = 2.0.1;
326326
PRODUCT_BUNDLE_IDENTIFIER = dev.eligere.agent;
327327
PRODUCT_NAME = "$(TARGET_NAME)";
328328
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -342,7 +342,7 @@
342342
CODE_SIGN_IDENTITY = "Developer ID Application: Roman Volkov (QAW83JAP7C)";
343343
CODE_SIGN_STYLE = Manual;
344344
COMBINE_HIDPI_IMAGES = YES;
345-
CURRENT_PROJECT_VERSION = 31;
345+
CURRENT_PROJECT_VERSION = 32;
346346
DEVELOPMENT_TEAM = "";
347347
"DEVELOPMENT_TEAM[sdk=macosx*]" = QAW83JAP7C;
348348
ENABLE_HARDENED_RUNTIME = YES;
@@ -358,7 +358,7 @@
358358
"@executable_path/../Frameworks",
359359
);
360360
MACOSX_DEPLOYMENT_TARGET = 15.4;
361-
MARKETING_VERSION = 2.0.0;
361+
MARKETING_VERSION = 2.0.1;
362362
PRODUCT_BUNDLE_IDENTIFIER = dev.eligere.agent;
363363
PRODUCT_NAME = "$(TARGET_NAME)";
364364
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -501,7 +501,7 @@
501501
CODE_SIGN_IDENTITY = "Apple Development";
502502
CODE_SIGN_STYLE = Automatic;
503503
COMBINE_HIDPI_IMAGES = YES;
504-
CURRENT_PROJECT_VERSION = 31;
504+
CURRENT_PROJECT_VERSION = 32;
505505
DEAD_CODE_STRIPPING = YES;
506506
DEVELOPMENT_ASSET_PATHS = "\"EligereApp/Preview Content\"";
507507
DEVELOPMENT_TEAM = QAW83JAP7C;
@@ -515,7 +515,7 @@
515515
"@executable_path/../Frameworks",
516516
);
517517
MACOSX_DEPLOYMENT_TARGET = 15.0;
518-
MARKETING_VERSION = 2.0.0;
518+
MARKETING_VERSION = 2.0.1;
519519
PRODUCT_BUNDLE_IDENTIFIER = "dev.eligere.eligere-app";
520520
PRODUCT_NAME = "$(TARGET_NAME)";
521521
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -534,7 +534,7 @@
534534
CODE_SIGN_IDENTITY = "Developer ID Application: Roman Volkov (QAW83JAP7C)";
535535
CODE_SIGN_STYLE = Manual;
536536
COMBINE_HIDPI_IMAGES = YES;
537-
CURRENT_PROJECT_VERSION = 31;
537+
CURRENT_PROJECT_VERSION = 32;
538538
DEAD_CODE_STRIPPING = YES;
539539
DEVELOPMENT_ASSET_PATHS = "\"EligereApp/Preview Content\"";
540540
DEVELOPMENT_TEAM = QAW83JAP7C;
@@ -549,7 +549,7 @@
549549
"@executable_path/../Frameworks",
550550
);
551551
MACOSX_DEPLOYMENT_TARGET = 15.0;
552-
MARKETING_VERSION = 2.0.0;
552+
MARKETING_VERSION = 2.0.1;
553553
PRODUCT_BUNDLE_IDENTIFIER = "dev.eligere.eligere-app";
554554
PRODUCT_NAME = "$(TARGET_NAME)";
555555
PROVISIONING_PROFILE_SPECIFIER = "";

EligereApp/Resources/default.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
# Filter the list of presented browser by the fact if a browser is already opened
2-
# More information: https://eligere.dev/docs/config/configuration/#useonlyrunningbrowsers
2+
# More information: https://github.com/RomanVolkov/eligere_app/tree/main/docs/config.md#useonlyrunningbrowsers
33
useOnlyRunningBrowsers = false
44

55
# Removing some tracking attributes from URLs
6-
# More information: https://eligere.dev/docs/config/configuration/#striptrackingattributes
6+
# More information: https://github.com/RomanVolkov/eligere_app/tree/main/docs/config.md#striptrackingattributes
77
stripTrackingAttributes = true
88

99
# Resolves the final URL that is hidden under shorten URL
10-
# More information and how to combine with other features: https://eligere.dev/docs/config/configuration/#expandShortenURLs
10+
# More information and how to combine with other features: https://github.com/RomanVolkov/eligere_app/tree/main/docs/config.md#expandShortenURLs
1111
expandShortenURLs = true
1212

1313
# Number of seconds to make a browser the default one temporary
14-
# Mope information: https://eligere.dev/docs/config/configuration/#pinningseconds
14+
# Mope information: https://github.com/RomanVolkov/eligere_app/tree/main/docs/config.md#pinningseconds
1515
pinningSeconds = 30
1616

1717
# Level of verbosity for .eligere.log for troubleshooting
18-
# More information: https://eligere.dev/docs/config/configuration/#loglevel
18+
# More information: https://github.com/RomanVolkov/eligere_app/tree/main/docs/config.md#loglevel
1919
logLevel = "warning"
2020

2121
[[browsers]]
2222
# Name of a browser from "/Applications" folder. Required property.
2323
# If set incorrectly - browser configuration will be ignored.
24-
# More information: https://eligere.dev/docs/config/configuration/#name
24+
# More information: https://github.com/RomanVolkov/eligere_app/tree/main/docs/config.md#name
2525
name = "Safari"
2626

2727
# Keyboard shortcut to open this browser.
28-
# More information: https://eligere.dev/docs/config/configuration/#shortcut
28+
# More information: https://github.com/RomanVolkov/eligere_app/tree/main/docs/config.md#shortcut
2929
shortcut = "s"
3030

3131
# Eligere can map all links for "apps" applications to this browser configuration.
32-
# Mor information: https://eligere.dev/docs/config/configuration/#apps---optional
32+
# Mor information: https://github.com/RomanVolkov/eligere_app/tree/main/docs/config.md#apps---optional
3333
apps = ["Messages"]
3434

3535
# Eligere can map specific links to this browser configuration.
36-
# More information: https://eligere.dev/docs/config/configuration/#domains
36+
# More information: https://github.com/RomanVolkov/eligere_app/tree/main/docs/config.md#domains
3737
domains = ["apple.com"]
3838

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Eligere app
22

3-
<!-- <img src="./docs/images/eligere.png" width="20%" align="center"> -->
3+
<img src="./docs/images/open_link_example.png" width="20%" align="top">
44

55
a Lightweight, **easy-to-use** and **easy-to-configure** macOS app. Eligere routes every link to the right browser via simple **TOML** configuration
66

0 commit comments

Comments
 (0)