Skip to content

Commit

Permalink
Update project urls
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcenx committed Aug 1, 2024
1 parent a9ba6b9 commit 83349ed
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions Wineskin Winery/Base.lproj/MainMenu.xib
Original file line number Diff line number Diff line change
Expand Up @@ -515,11 +515,11 @@ For more information see
</paragraphStyle>
</attributes>
</fragment>
<fragment content="https://github.com/Gcenx/WineskinServer">
<fragment content="https://github.com/The-Wineskin-Project/WineskinServer">
<attributes>
<color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
<font key="NSFont" size="12" name="Helvetica"/>
<url key="NSLink" string="https://github.com/Gcenx/WineskinServer/"/>
<url key="NSLink" string="https://github.com/The-Wineskin-Project/WineskinServer/"/>
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" allowsDefaultTighteningForTruncation="NO">
<tabStops>
<textTab alignment="left" location="36">
Expand Down Expand Up @@ -704,12 +704,12 @@ Help is available on the main website
</paragraphStyle>
</attributes>
</fragment>
<fragment content="https://github.com/Gcenx/WineskinServer">
<fragment content="https://github.com/The-Wineskin-Project/WineskinServer">
<attributes>
<color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
<font key="NSFont" size="12" name="Helvetica"/>
<url key="NSLink" string="https://github.com/Gcenx/WineskinServer/"/>
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" allowsDefaultTighteningForTruncation="NO">
<url key="NSLink" string="https://github.com/The-Wineskin-Project/WineskinServer/"/>
<paragraphStyle key="NSParagraphStyle" alignment="center" lineBreakMode="wordWrapping" baseWritingDirection="natural" tighteningFactorForTruncation="0.0">
<tabStops>
<textTab alignment="left" location="36">
<options/>
Expand Down
2 changes: 1 addition & 1 deletion Wineskin Winery/Wineskin_Winery_Prefix.pch
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#define BINARY_7ZA [NSString stringWithFormat:@"%@/Contents/Resources/7za",[[NSBundle mainBundle] bundlePath]]

// These are Wineskin website URLs, which are used to download the Master Wrapper and the Engines
#define WINESKIN_DOMAIN @"github.com/Gcenx/WineskinServer"
#define WINESKIN_DOMAIN @"github.com/The-Wineskin-Project/WineskinServer"
#define WINESKIN_WEBSITE [NSString stringWithFormat:@"https://%@/raw/master/",WINESKIN_DOMAIN]
#define WINESKIN_WEBSITE_WRAPPER_FOLDER [NSString stringWithFormat:@"%@Wrapper/",WINESKIN_WEBSITE]
#define WINESKIN_WEBSITE_WINERY_FOLDER [NSString stringWithFormat:@"%@Winery/",WINESKIN_WEBSITE]
Expand Down
6 changes: 3 additions & 3 deletions WineskinApp/Base.lproj/MainMenu.xib
Original file line number Diff line number Diff line change
Expand Up @@ -1879,7 +1879,7 @@ DQ
<textFieldCell key="cell" controlSize="mini" sendsActionOnEndEditing="YES" alignment="center" id="985">
<font key="font" metaFont="miniSystem"/>
<string key="title">These are what is available installed on your machine. To get more engines, install them with Unofficial Wineskin Winery, or manually download them from the Unofficial Wineskin website
(https://github.com/Gcenx/WineskinServer/)</string>
(https://github.com/The-Wineskin-Project/WineskinServer/)</string>
<color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
<color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
</textFieldCell>
Expand Down Expand Up @@ -2514,7 +2514,7 @@ Help is available on the main website
</paragraphStyle>
</attributes>
</fragment>
<fragment content="https://github.com/Gcenx/WineskinServer">
<fragment content="https://github.com/The-Wineskin-Project/WineskinServer">
<attributes>
<color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
<font key="NSFont" size="12" name="Helvetica"/>
Expand Down Expand Up @@ -2703,7 +2703,7 @@ For more information see
</paragraphStyle>
</attributes>
</fragment>
<fragment content="https://github.com/Gcenx/WineskinServer">
<fragment content="https://github.com/The-Wineskin-Project/WineskinServer">
<attributes>
<color key="NSColor" name="textColor" catalog="System" colorSpace="catalog"/>
<font key="NSFont" size="12" name="Helvetica"/>
Expand Down
6 changes: 3 additions & 3 deletions WineskinApp/WineskinAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ - (NSArray*)runnableSubpathsInWrapperCDrive

- (IBAction)wineskinWebsiteButtonPressed:(id)sender
{
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"https://github.com/Gcenx/WineskinServer/"]];
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"https://github.com/The-Wineskin-Project/WineskinServer/"]];
}

- (IBAction)installWindowsSoftwareButtonPressed:(id)sender
Expand Down Expand Up @@ -533,7 +533,7 @@ - (void)runACommandLineTestRun
// Check for winetricks, if missing download
if (![fm fileExistsAtPath:[NSString stringWithFormat:@"%@/Contents/Resources/winetricks",[[NSBundle mainBundle] bundlePath]]]) {
//Get the URL where winetricks is located
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://raw.githubusercontent.com/Gcenx/WineskinServer/master/WineskinWinetricks/Location.txt?%@",[[NSNumber numberWithLong:rand()] stringValue]]];
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://raw.githubusercontent.com/The-Wineskin-Project/WineskinServer/main/WineskinWinetricks/Location.txt?%@",[[NSNumber numberWithLong:rand()] stringValue]]];
NSString *urlWhereWinetricksIs = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding timeoutInterval:5];
urlWhereWinetricksIs = [urlWhereWinetricksIs stringByReplacingOccurrencesOfString:@"\n" withString:@""]; //remove \n

Expand Down Expand Up @@ -1140,7 +1140,7 @@ - (IBAction)winetricksRefreshButtonPressed:(id)sender
- (IBAction)winetricksUpdateButtonPressed:(id)sender
{
//Get the URL where winetricks is located
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://raw.githubusercontent.com/Gcenx/WineskinServer/master/WineskinWinetricks/Location.txt?%@",[[NSNumber numberWithLong:rand()] stringValue]]];
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://raw.githubusercontent.com/The-Wineskin-Project/WineskinServer/main/WineskinWinetricks/Location.txt?%@",[[NSNumber numberWithLong:rand()] stringValue]]];
NSString *urlWhereWinetricksIs = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding timeoutInterval:5];

urlWhereWinetricksIs = [urlWhereWinetricksIs stringByReplacingOccurrencesOfString:@"\n" withString:@""]; //remove \n
Expand Down
4 changes: 2 additions & 2 deletions WineskinApp/Wineskin_Prefix.pch
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@
#define WINESKIN_WRAPPER_PLIST_VALUE_SCREEN_OPTIONS_NO_VIRTUAL_DESKTOP @"novd"

// These are Wineskin website URLs, which are used to download the Master Wrapper and the Engines
#define WINESKIN_DOMAIN "github.com/Gcenx/WineskinServer"
#define WINESKIN_WEBSITE @"https://github.com/Gcenx/WineskinServer/"
#define WINESKIN_DOMAIN "github.com/The-Wineskin-Project/WineskinServer"
#define WINESKIN_WEBSITE @"https://github.com/The-Wineskin-Project/WineskinServer/"
#define WINESKIN_WEBSITE_WRAPPER_FOLDER [NSString stringWithFormat:@"%@Wrapper/",WINESKIN_WEBSITE]
#define WINESKIN_WEBSITE_ENGINES_FOLDER [NSString stringWithFormat:@"%@Engines/",WINESKIN_WEBSITE]
#define WINESKIN_WEBSITE_ENGINE_BASE_FOLDER [NSString stringWithFormat:@"%@EngineBase/",WINESKIN_WEBSITE]
Expand Down

0 comments on commit 83349ed

Please sign in to comment.