Skip to content

Commit

Permalink
Merge pull request #78 from Athlon007/dev
Browse files Browse the repository at this point in the history
Update 0.4
  • Loading branch information
Athlon007 committed Jul 29, 2023
2 parents ecbb60f + be49991 commit 0bf7c08
Show file tree
Hide file tree
Showing 40 changed files with 1,306 additions and 300 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## 0.4 (2023-07-29)

## Added

- Mod Tools:
- Remove posts
- Lock posts
- Distinguish comment
- Remove comments
- Remove community
- Edit community
- Post-locked indicator
- Distinguished comment indicator
- Instance icons on the login screen
- Search for instance on the login screen
- Search profiles
- Separate followed communities by first letter of the name (disabled by default)
- Prefered display name for communities and users: you can either choose to display handles, or display names
- Search followed communities

### Bug Fixes

- Fixed opening post, if you opened a community from another post
- Fixed login to some instances caused to faulty decoding of site metadata
- Fixed displaying videos, if they are added in "URL" part of the post
- Fixed duplicate posts in communities
- Fixed sorting of followed communities

## 0.3 (2023-07-27)

### Added
Expand Down
38 changes: 35 additions & 3 deletions Leomard.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@
B091F87C2A5AA56C00F0DA32 /* SavePost.swift in Sources */ = {isa = PBXBuildFile; fileRef = B091F87B2A5AA56C00F0DA32 /* SavePost.swift */; };
B091F87E2A5AA84F00F0DA32 /* SaveComment.swift in Sources */ = {isa = PBXBuildFile; fileRef = B091F87D2A5AA84F00F0DA32 /* SaveComment.swift */; };
B091F8802A5AE3A300F0DA32 /* LemmyInstance.swift in Sources */ = {isa = PBXBuildFile; fileRef = B091F87F2A5AE3A300F0DA32 /* LemmyInstance.swift */; };
B0A910B72A72870500959A1D /* RemovePost.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0A910B62A72870500959A1D /* RemovePost.swift */; };
B0A910B92A728AE500959A1D /* LockPost.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0A910B82A728AE400959A1D /* LockPost.swift */; };
B0A910BB2A72E41400959A1D /* DistinguishComment.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0A910BA2A72E41400959A1D /* DistinguishComment.swift */; };
B0A910BD2A72E6C000959A1D /* RemoveComment.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0A910BC2A72E6C000959A1D /* RemoveComment.swift */; };
B0A910BF2A72F50400959A1D /* RemoveCommunity.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0A910BE2A72F50400959A1D /* RemoveCommunity.swift */; };
B0A910C12A72FC7A00959A1D /* EditCommunity.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0A910C02A72FC7A00959A1D /* EditCommunity.swift */; };
B0CBC65C2A6A8E8B006E3A43 /* ImageService.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0CBC65B2A6A8E8B006E3A43 /* ImageService.swift */; };
B0CEBE3C2A5197AC00982D4D /* NavbarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0CEBE3B2A5197AC00982D4D /* NavbarView.swift */; };
B0CEBE3F2A51982E00982D4D /* Option.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0CEBE3E2A51982E00982D4D /* Option.swift */; };
Expand Down Expand Up @@ -305,6 +311,12 @@
B091F87B2A5AA56C00F0DA32 /* SavePost.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SavePost.swift; sourceTree = "<group>"; };
B091F87D2A5AA84F00F0DA32 /* SaveComment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SaveComment.swift; sourceTree = "<group>"; };
B091F87F2A5AE3A300F0DA32 /* LemmyInstance.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LemmyInstance.swift; sourceTree = "<group>"; };
B0A910B62A72870500959A1D /* RemovePost.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemovePost.swift; sourceTree = "<group>"; };
B0A910B82A728AE400959A1D /* LockPost.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LockPost.swift; sourceTree = "<group>"; };
B0A910BA2A72E41400959A1D /* DistinguishComment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DistinguishComment.swift; sourceTree = "<group>"; };
B0A910BC2A72E6C000959A1D /* RemoveComment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoveComment.swift; sourceTree = "<group>"; };
B0A910BE2A72F50400959A1D /* RemoveCommunity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoveCommunity.swift; sourceTree = "<group>"; };
B0A910C02A72FC7A00959A1D /* EditCommunity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditCommunity.swift; sourceTree = "<group>"; };
B0CBC65B2A6A8E8B006E3A43 /* ImageService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageService.swift; sourceTree = "<group>"; };
B0CBC65D2A6A9089006E3A43 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
B0CEBE3B2A5197AC00982D4D /* NavbarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavbarView.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -559,6 +571,20 @@
path = AppStorage;
sourceTree = "<group>";
};
B0A910B52A7286F100959A1D /* ModTools */ = {
isa = PBXGroup;
children = (
B017A3C42A6FEC91001949A8 /* FeaturePost.swift */,
B0A910B62A72870500959A1D /* RemovePost.swift */,
B0A910B82A728AE400959A1D /* LockPost.swift */,
B0A910BA2A72E41400959A1D /* DistinguishComment.swift */,
B0A910BC2A72E6C000959A1D /* RemoveComment.swift */,
B0A910BE2A72F50400959A1D /* RemoveCommunity.swift */,
B0A910C02A72FC7A00959A1D /* EditCommunity.swift */,
);
path = ModTools;
sourceTree = "<group>";
};
B0CEBE392A51977B00982D4D /* Views */ = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -658,6 +684,7 @@
B0CEBE4A2A519F2700982D4D /* Forms */ = {
isa = PBXGroup;
children = (
B0A910B52A7286F100959A1D /* ModTools */,
B0CEBE4B2A519F3300982D4D /* Login.swift */,
B091F83F2A547A7E00F0DA32 /* CreatePostLike.swift */,
B091F8452A54816000F0DA32 /* CreateCommentLike.swift */,
Expand All @@ -677,7 +704,6 @@
B059981F2A67F9F100267636 /* BlockCommunity.swift */,
B017A3B22A6C34CA001949A8 /* CreatePostReport.swift */,
B017A3BA2A6C4F86001949A8 /* CreateCommentReport.swift */,
B017A3C42A6FEC91001949A8 /* FeaturePost.swift */,
B017A3C62A700663001949A8 /* MarkPostAsRead.swift */,
B009ACF12A707E09008A10C7 /* SaveUserSettings.swift */,
);
Expand Down Expand Up @@ -1003,6 +1029,7 @@
B0CEBE672A52C7EC00982D4D /* CustomEmojiKeyword.swift in Sources */,
B0CEBE802A52D03400982D4D /* SiteAggregates.swift in Sources */,
B0CEBE6B2A52C88E00982D4D /* CommunityBlockView.swift in Sources */,
B0A910C12A72FC7A00959A1D /* EditCommunity.swift in Sources */,
B091F8762A59998500F0DA32 /* UserSearchUIView.swift in Sources */,
B017A3B72A6C3537001949A8 /* PostReportView.swift in Sources */,
B0D7A16B2A53929200FE2852 /* ElapsedTime.swift in Sources */,
Expand Down Expand Up @@ -1076,12 +1103,17 @@
B0CEBE692A52C81A00982D4D /* CustomEmojiView.swift in Sources */,
B091F8652A56DDBD00F0DA32 /* CommunitySidebarUIView.swift in Sources */,
B091F8482A54874700F0DA32 /* PersonDisplay.swift in Sources */,
B0A910B72A72870500959A1D /* RemovePost.swift in Sources */,
B00695D32A50C3DB00206C77 /* Person.swift in Sources */,
B0CEBE522A51CC2700982D4D /* Service.swift in Sources */,
B091F83E2A5476E000F0DA32 /* PostResponse.swift in Sources */,
B0A910B92A728AE500959A1D /* LockPost.swift in Sources */,
B017A3C52A6FEC91001949A8 /* FeaturePost.swift in Sources */,
B091F8382A5432A900F0DA32 /* PostContextMenu.swift in Sources */,
B0A910BD2A72E6C000959A1D /* RemoveComment.swift in Sources */,
B05B211E2A5D939B00BA8FB2 /* DeletePost.swift in Sources */,
B0A910BF2A72F50400959A1D /* RemoveCommunity.swift in Sources */,
B0A910BB2A72E41400959A1D /* DistinguishComment.swift in Sources */,
B0CEBE8D2A52D37F00982D4D /* Tagline.swift in Sources */,
B0D948742A6AA6E20039D0D6 /* ImgurImage.swift in Sources */,
B017A3B52A6C3511001949A8 /* PostReportResponse.swift in Sources */,
Expand Down Expand Up @@ -1269,7 +1301,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 13.0;
MARKETING_VERSION = 0.3;
MARKETING_VERSION = 0.4;
PRODUCT_BUNDLE_IDENTIFIER = com.Athlon.Leomard;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down Expand Up @@ -1300,7 +1332,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 13.0;
MARKETING_VERSION = 0.3;
MARKETING_VERSION = 0.4;
PRODUCT_BUNDLE_IDENTIFIER = com.Athlon.Leomard;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down
Loading

0 comments on commit 0bf7c08

Please sign in to comment.